diff --git a/DS_Server/DS_Server.csproj b/DS_Server/DS_Server.csproj index 8f8113a..22a0fe2 100644 --- a/DS_Server/DS_Server.csproj +++ b/DS_Server/DS_Server.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 enable enable Exe @@ -10,8 +10,8 @@ - - + + diff --git a/JsonRequester/Auth.cs b/JsonRequester/Auth.cs new file mode 100644 index 0000000..1c66351 --- /dev/null +++ b/JsonRequester/Auth.cs @@ -0,0 +1,51 @@ +using RestSharp; +using SaveGetter; +using Steamworks; + +namespace JsonRequester +{ + public static class Auth + { + public static LoginToken LoginToken; + public static void AddDefault(this RestClient client) + { + client.AddDefaultHeader("Authorization", "Bearer " + LoginToken.AccessToken); + client.AddDefaultHeader("Cookie", $"access_token={LoginToken.AccessToken};refresh_token={LoginToken.RefreshToken}"); + client.AddDefaultHeader("Namespace", LoginToken.Namespace); + client.AddDefaultHeader("Accept-Encoding", "deflate, gzip"); + client.AddDefaultHeader("Content-Type", "application/json"); + client.AddDefaultHeader("Accept", "application/json"); + client.AddDefaultHeader("Game-Client-Version", "1.0.0.0"); + client.AddDefaultHeader("AccelByte-SDK-Version", "24.7.2"); + client.AddDefaultHeader("AccelByte-OSS-Version", "0.12.1-2"); + client.AddDefaultHeader("User-Agent", "PAYDAY3/++UE4+Release-4.27-CL-0 Windows/10.0.19045.1.256.64bit"); + } + + public static void Init() + { + + if (!SteamAPI.Init()) + { + Console.WriteLine("Steam not running, make sure it is running in the background!"); + Environment.Exit(0); + } + byte[] buffer = new byte[1024]; + _ = SteamUser.GetAuthSessionTicket(buffer, 1024, out uint tikcet); + var Token = BitConverter.ToString(buffer[..(int)tikcet]).Replace("-", string.Empty); + LoginToken = DoAuth(Token); + } + + + public static LoginToken? DoAuth(string Token) + { + var client = new RestClient(Consts.URL + "/iam/v3/oauth/platforms/steam/token"); + client.AddDefaultHeader("Authorization", "Basic MGIzYmZkZjVhMjVmNDUyZmJkMzNhMzYxMzNhMmRlYWI6"); + client.AddDefaultHeader("Namespace", "pd3"); + client.AddDefaultHeader("Content-Type", "application/x-www-form-urlencoded"); + var request = new RestRequest(); + request.AddBody($"platform_token={Token}"); + return Rest.Post(client, request); + } + + } +} diff --git a/JsonRequester/Consts.cs b/JsonRequester/Consts.cs new file mode 100644 index 0000000..594a32a --- /dev/null +++ b/JsonRequester/Consts.cs @@ -0,0 +1,9 @@ +namespace JsonRequester; + +public static class Consts +{ + + public static string NameSpace = "pd3"; + public static string AuthB64 = "MGIzYmZkZjVhMjVmNDUyZmJkMzNhMzYxMzNhMmRlYWI6"; + public static string URL = "https://nebula.starbreeze.com"; +} diff --git a/JsonRequester/JsonRequester.csproj b/JsonRequester/JsonRequester.csproj new file mode 100644 index 0000000..b4d34cd --- /dev/null +++ b/JsonRequester/JsonRequester.csproj @@ -0,0 +1,24 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + + + + + Always + + + Always + + + diff --git a/JsonRequester/LoginTokenJson.cs b/JsonRequester/LoginTokenJson.cs new file mode 100644 index 0000000..db47e3f --- /dev/null +++ b/JsonRequester/LoginTokenJson.cs @@ -0,0 +1,66 @@ +using Newtonsoft.Json; + +namespace SaveGetter +{ + public class LoginToken + { + [JsonProperty("access_token")] + public string AccessToken { get; set; } + + [JsonProperty("bans")] + public List Bans { get; set; } + + [JsonProperty("display_name")] + public string DisplayName { get; set; } + + [JsonProperty("expires_in")] + public long ExpiresIn { get; set; } + + [JsonProperty("is_comply")] + public bool IsComply { get; set; } + + [JsonProperty("jflgs")] + public long Jflgs { get; set; } + + [JsonProperty("namespace")] + public string Namespace { get; set; } + + [JsonProperty("namespace_roles")] + public List NamespaceRoles { get; set; } + + [JsonProperty("permissions")] + public List Permissions { get; set; } + + [JsonProperty("platform_id")] + public string PlatformId { get; set; } + + [JsonProperty("platform_user_id")] + public string PlatformUserId { get; set; } + + [JsonProperty("refresh_expires_in")] + public long RefreshExpiresIn { get; set; } + + [JsonProperty("refresh_token")] + public string RefreshToken { get; set; } + + [JsonProperty("roles")] + public List Roles { get; set; } + + [JsonProperty("scope")] + public string Scope { get; set; } + + [JsonProperty("token_type")] + public string TokenType { get; set; } + + [JsonProperty("user_id")] + public string UserId { get; set; } + } + public partial class NamespaceRole + { + [JsonProperty("roleId")] + public string RoleId { get; set; } + + [JsonProperty("namespace")] + public string Namespace { get; set; } + } +} diff --git a/JsonRequester/Program.cs b/JsonRequester/Program.cs new file mode 100644 index 0000000..a247832 --- /dev/null +++ b/JsonRequester/Program.cs @@ -0,0 +1,161 @@ +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using System.Security.Cryptography; + +namespace JsonRequester +{ + internal class Program + { + static void Main(string[] args) + { + Directory.CreateDirectory("rsp"); + Console.WriteLine("Hello, World!"); + Auth.Init(); + //_ = JsonConvert.SerializeObject(Auth.LoginToken); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/feature-toggle", "FeatureToggle"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/matchmaking", "Matchmaking"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/edgegap_beacons", "EdgeGapBeacons"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/title-data", "TitleData"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/infamy-translation-table", "InfamyTranslationTable"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/meta-events", "MetaEvents"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/time-based-player-content", "TimeBasedPlayerContent"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/dlc-entitlements", "DLC_Entitlements"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/client-configuration", "ClientConfiguration", false); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/challenge-recommendations", "ChallengeRecommendations", false); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/challenge-dailies", "ChallengeDailies"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/security-firm-rotation", "SecurityFirmRotation"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/reward-reduction", "rewardreduction"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/level-reward-diamonddistrict", "levelreward_diamonddistrict"); + SaveToFileResponse("/cloudsave/v1/namespaces/pd3/records/level-reward-branchbank", "levelreward_branchbank"); + /* + foreach (var item in bulk_items) + { + SaveToFileResponse(Requests.GetBulkRecords(item), $"Bulk_{item}"); + }*/ + + SaveToFileResponse("/platform/public/namespaces/pd3/items/byCriteria?limit=2147483647&includeSubCategoryItem=false", "Items_NoSub"); + SaveToFileResponse("/platform/public/namespaces/pd3/items/byCriteria?limit=2147483647&includeSubCategoryItem=true", "Items_WithSub"); + SaveToFileResponse($"/platform/public/namespaces/pd3/users/{Auth.LoginToken.UserId}/entitlements?limit=2147483647", "Entitlements", false); + SaveToFileResponse($"/social/v1/public/namespaces/pd3/users/{Auth.LoginToken.UserId}/statitems?limit=100000", "Statitems"); + SaveToFileResponse($"/cloudsave/v1/namespaces/pd3/records/challenges?limit=2147483647", "ChallengeRecords"); + SaveToFileResponse($"/cloudsave/v1/namespaces/pd3/users/{Auth.LoginToken.UserId}/records/challenges", "CloudSave_Challenges", false); + + Console.ReadLine(); + List mainstat = JsonConvert.DeserializeObject>(File.ReadAllText("StatItems_pd3.json")); + + + List secondary = JsonConvert.DeserializeObject>(File.ReadAllText("Statitems.json")); + + var missing = secondary.Where(x=> !mainstat.Any(y=> y.StatCode == x.StatCode)).ToList(); + File.WriteAllText("missing_stats.json", JsonConvert.SerializeObject(missing)); + var time = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ"); + foreach (var item in missing) + { + item.Value = 0; + item.UpdatedAt = time; + item.UserId = "UserId"; + item.Tags = null; + mainstat.Add(item); + } + File.WriteAllText("StatItems_pd3.json", JsonConvert.SerializeObject(mainstat, Formatting.Indented)); + Console.WriteLine("Done"); + Console.ReadLine(); + } + + + static void SaveToFileResponse(string url_end, string filename, bool clean = true) + { + var rsp = Requests.GetResponse(url_end); + if (rsp == null) + { + Console.WriteLine("Response doesnt seem to be right: " + url_end); + return; + } + if (clean) + rsp = RemoveUserIdAndTimeClean(rsp); + File.WriteAllText("rsp/" + filename + ".json", JsonConvert.SerializeObject(rsp, Formatting.Indented)); + } + + static void SaveToFileResponse(JObject? jobject, string filename) + { + if (jobject == null) + { + Console.WriteLine("Response doesnt seem to be right: " + filename); + return; + } + jobject = RemoveUserIdAndTimeClean(jobject); + File.WriteAllText("rsp/" + filename + ".json", JsonConvert.SerializeObject(jobject, Formatting.Indented)); + } + + static JObject RemoveUserIdAndTimeClean(JObject obj) + { + if (obj.ContainsKey("userId")) + { + obj["userId"] = "REPLACEME"; + } + if (obj.ContainsKey("updatedAt")) + { + obj["updatedAt"] = "updatedattomakegitdiffseasiertoread"; + } + if (obj.ContainsKey("updated_at")) + { + obj["updated_at"] = "updatedattomakegitdiffseasiertoread"; + } + foreach (var item in obj) + { + if (item.Value != null) + checktoken(item.Value); + + } + return obj; + } + + static JToken checktoken(JToken token) + { + if (token.Type == JTokenType.Object) + { + token = RemoveUserIdAndTimeClean((JObject)token); + } + if (token.Type == JTokenType.Array) + { + var array = ((JArray)token).ToArray(); + for (int j = 0; j < array.Length; j++) + { + array[j] = checktoken(array[j]); + } + } + return token; + } + + static List bulk_items = [ + "weapon-translation-table-assaultrifle-car4", + "weapon-translation-table-shotgun-r880", + "weapon-translation-table-marksman-r900s", + "weapon-translation-table-smg-compact7", + "weapon-translation-table-assaultrifle-ku59", + "weapon-translation-table-smg-commando", + "weapon-translation-table-marksman-a114", + "weapon-translation-table-smg-pc9", + "weapon-translation-table-assaultrifle-nwb9", + "weapon-translation-table-shotgun-mosconi12c", + "weapon-translation-table-assaultrifle-vf7s", + "weapon-translation-table-shotgun-fsa12", + "weapon-translation-table-smg-war45", + "weapon-translation-table-marksman-fik22", + "weapon-translation-table-assaultrifle-rg5", + "weapon-translation-table-smg-atk7", + "weapon-translation-table-lmg-mx63", + "weapon-translation-table-assaultrifle-chs3", + "weapon-translation-table-shotgun-m7p", + "weapon-translation-table-pistol-s40", + "weapon-translation-table-revolver-castigo44", + "weapon-translation-table-pistol-stryk7", + "weapon-translation-table-pistol-spm11", + "weapon-translation-table-pistol-s403", + "weapon-translation-table-revolver-bison", + "weapon-translation-table-revolver-bullkick500", + "weapon-translation-table-pistol-t32", + "weapon-translation-table-pistol-pd5" + ]; + } +} diff --git a/JsonRequester/Requests.cs b/JsonRequester/Requests.cs new file mode 100644 index 0000000..bc9276e --- /dev/null +++ b/JsonRequester/Requests.cs @@ -0,0 +1,36 @@ +using Newtonsoft.Json.Linq; +using RestSharp; + +namespace JsonRequester +{ + internal class Requests + { + + public static JObject? GetResponse(string url_end) + { + var client = new RestClient(Consts.URL + url_end); + client.AddDefault(); + return Rest.Get(client, new RestRequest()); + } + + + public static JObject? PostResponse(string url_end, string json) + { + var client = new RestClient(Consts.URL + url_end); + client.AddDefault(); + var req = new RestRequest(); + req.AddBody(json); + return Rest.Post(client, req); + } + + + public static JObject? GetBulkRecords(string data) + { + var client = new RestClient(Consts.URL + "/cloudsave/v1/namespaces/pd3/records/bulk"); + client.AddDefault(); + var req = new RestRequest(); + req.AddBody("{\"keys\":[\"" + data + "\"]}"); + return Rest.Post(client, req); + } + } +} diff --git a/JsonRequester/StatItems.cs b/JsonRequester/StatItems.cs new file mode 100644 index 0000000..98c2991 --- /dev/null +++ b/JsonRequester/StatItems.cs @@ -0,0 +1,30 @@ +using Newtonsoft.Json; + +namespace JsonRequester; + +public class UserStatItemsData +{ + [JsonProperty("createdAt")] + public string CreatedAt { get; set; } + + [JsonProperty("namespace")] + public string Namespace { get; set; } + + [JsonProperty("statCode")] + public string StatCode { get; set; } + + [JsonProperty("statName")] + public string StatName { get; set; } + + [JsonProperty("updatedAt")] + public string UpdatedAt { get; set; } + + [JsonProperty("userId")] + public string UserId { get; set; } + + [JsonProperty("value")] + public float Value { get; set; } + + [JsonProperty("tags", NullValueHandling = NullValueHandling.Ignore)] + public List Tags { get; set; } +} diff --git a/JsonRequester/rest.cs b/JsonRequester/rest.cs new file mode 100644 index 0000000..7396155 --- /dev/null +++ b/JsonRequester/rest.cs @@ -0,0 +1,148 @@ +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using RestSharp; +using System.Net; + +namespace JsonRequester; + +internal class Rest +{ + #region JObject + public static JObject? Put(RestClient client, RestRequest request) + { + try + { + RestResponse response = client.PutAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JObject.Parse(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + + public static JObject? Post(RestClient client, RestRequest request) + { + try + { + RestResponse response = client.PostAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JObject.Parse(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + + public static JObject? Get(RestClient client, RestRequest request) + { + try + { + RestResponse response = client.GetAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JObject.Parse(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + #endregion + #region T Class + public static T? Put(RestClient client, RestRequest request) where T : class + { + try + { + RestResponse response = client.PutAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JsonConvert.DeserializeObject(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + + public static T? Post(RestClient client, RestRequest request) where T : class + { + try + { + RestResponse response = client.PostAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JsonConvert.DeserializeObject(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error " + ex); + + return null; + } + } + + public static T? Get(RestClient client, RestRequest request) where T : class + { + try + { + RestResponse response = client.GetAsync(request).Result; + if (response.Content != null) + { + Console.WriteLine(response.StatusCode); + return JsonConvert.DeserializeObject(response.Content); + } + return null; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + #endregion + #region StatusCode + public static HttpStatusCode? Delete(RestClient client, RestRequest request) + { + try + { + RestResponse response = client.DeleteAsync(request).Result; + return response.StatusCode; + } + catch (Exception ex) + { + Console.WriteLine("Error"); + + return null; + } + } + #endregion +} diff --git a/JsonRequester/steam_api64.dll b/JsonRequester/steam_api64.dll new file mode 100644 index 0000000..2b42812 Binary files /dev/null and b/JsonRequester/steam_api64.dll differ diff --git a/JsonRequester/steam_appid.txt b/JsonRequester/steam_appid.txt new file mode 100644 index 0000000..be591c4 --- /dev/null +++ b/JsonRequester/steam_appid.txt @@ -0,0 +1 @@ +1272080 \ No newline at end of file diff --git a/PayCheck3.sln b/PayCheck3.sln index 36a3a9d..375ba4e 100644 --- a/PayCheck3.sln +++ b/PayCheck3.sln @@ -14,7 +14,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DS_Server", "DS_Server\DS_Server.csproj", "{ECDB0271-5226-4381-9460-2D550F4B4D4B}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SaveGetter", "SaveGetter\SaveGetter.csproj", "{A40D3EF0-D4B0-468A-85C6-6A92719E0497}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SaveGetter", "SaveGetter\SaveGetter.csproj", "{A40D3EF0-D4B0-468A-85C6-6A92719E0497}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonRequester", "JsonRequester\JsonRequester.csproj", "{E8855C58-D508-487E-8A98-1D9BC57F4FD9}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -38,6 +40,10 @@ Global {A40D3EF0-D4B0-468A-85C6-6A92719E0497}.Debug|Any CPU.Build.0 = Debug|Any CPU {A40D3EF0-D4B0-468A-85C6-6A92719E0497}.Release|Any CPU.ActiveCfg = Release|Any CPU {A40D3EF0-D4B0-468A-85C6-6A92719E0497}.Release|Any CPU.Build.0 = Release|Any CPU + {E8855C58-D508-487E-8A98-1D9BC57F4FD9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E8855C58-D508-487E-8A98-1D9BC57F4FD9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E8855C58-D508-487E-8A98-1D9BC57F4FD9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E8855C58-D508-487E-8A98-1D9BC57F4FD9}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/PayCheck3ServerApp/PayCheck3ServerApp.csproj b/PayCheck3ServerApp/PayCheck3ServerApp.csproj index 75efbeb..09ce347 100644 --- a/PayCheck3ServerApp/PayCheck3ServerApp.csproj +++ b/PayCheck3ServerApp/PayCheck3ServerApp.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 enable enable diff --git a/PayCheck3ServerApp/Program.cs b/PayCheck3ServerApp/Program.cs index 56218c9..95a8f04 100644 --- a/PayCheck3ServerApp/Program.cs +++ b/PayCheck3ServerApp/Program.cs @@ -30,7 +30,7 @@ private static void ServerManager_UpdateFinished(object? sender, bool e) string stop = ""; while (stop != "q") { - stop = Console.ReadLine(); + stop = Console.ReadLine()!; }; ServerManager.Stop(); } diff --git a/PayCheckServerLib/Files/BackendProxyConfig.json b/PayCheckServerLib/Files/BackendProxyConfig.json new file mode 100644 index 0000000..b2f49b1 --- /dev/null +++ b/PayCheckServerLib/Files/BackendProxyConfig.json @@ -0,0 +1,17 @@ +{ + "namespace": "pd3", + "key": "backend-proxy-config", + "set_by": "SERVER", + "value": { + "base_url": "https://127.0.0.1:80/", + "retry_limit_count": 3, + "retry_response_codes": [ + 429, + 503, + 504 + ], + "retry_timeout_seconds": 25 + }, + "created_at": "2024-06-27T07:59:23.206Z", + "updated_at": "2024-06-27T07:59:23.206Z" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/BasicInfamyTable.json b/PayCheckServerLib/Files/BasicInfamyTable.json index 1904da9..07f3910 100644 --- a/PayCheckServerLib/Files/BasicInfamyTable.json +++ b/PayCheckServerLib/Files/BasicInfamyTable.json @@ -5,7 +5,7 @@ "Infamy Rewards": [ { "Content Given Type": "Skill Point", - "Content Given Value": 1 + "Content Given Value": 2 } ] }, @@ -252,7 +252,12 @@ { "Infamy Level": 40, "Infamy Points": 10400, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 41, @@ -342,7 +347,12 @@ { "Infamy Level": 55, "Infamy Points": 17800, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 56, @@ -377,7 +387,12 @@ { "Infamy Level": 61, "Infamy Points": 21400, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 62, @@ -392,12 +407,7 @@ { "Infamy Level": 64, "Infamy Points": 23200, - "Infamy Rewards": [ - { - "Content Given Type": "Skill Point", - "Content Given Value": 1 - } - ] + "Infamy Rewards": [] }, { "Infamy Level": 65, @@ -407,7 +417,12 @@ { "Infamy Level": 66, "Infamy Points": 24400, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 67, @@ -522,7 +537,12 @@ { "Infamy Level": 86, "Infamy Points": 38900, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 87, @@ -562,7 +582,12 @@ { "Infamy Level": 93, "Infamy Points": 44500, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 94, @@ -577,7 +602,12 @@ { "Infamy Level": 96, "Infamy Points": 46900, - "Infamy Rewards": [] + "Infamy Rewards": [ + { + "Content Given Type": "Skill Point", + "Content Given Value": 1 + } + ] }, { "Infamy Level": 97, diff --git a/PayCheckServerLib/Files/BasicWeaponsTable.json b/PayCheckServerLib/Files/BasicWeaponsTable.json index 37231cd..436ecab 100644 --- a/PayCheckServerLib/Files/BasicWeaponsTable.json +++ b/PayCheckServerLib/Files/BasicWeaponsTable.json @@ -30,5 +30,89 @@ { "Weapon Level": 8, "Weapon Points": 5500 + }, + { + "Weapon Level": 9, + "Weapon Points": 6500 + }, + { + "Weapon Level": 10, + "Weapon Points": 7500 + }, + { + "Weapon Level": 11, + "Weapon Points": 9000 + }, + { + "Weapon Level": 12, + "Weapon Points": 10500 + }, + { + "Weapon Level": 13, + "Weapon Points": 12000 + }, + { + "Weapon Level": 14, + "Weapon Points": 13500 + }, + { + "Weapon Level": 15, + "Weapon Points": 15000 + }, + { + "Weapon Level": 16, + "Weapon Points": 17000 + }, + { + "Weapon Level": 17, + "Weapon Points": 19000 + }, + { + "Weapon Level": 18, + "Weapon Points": 21000 + }, + { + "Weapon Level": 19, + "Weapon Points": 23000 + }, + { + "Weapon Level": 20, + "Weapon Points": 25000 + }, + { + "Weapon Level": 21, + "Weapon Points": 27000 + }, + { + "Weapon Level": 22, + "Weapon Points": 29000 + }, + { + "Weapon Level": 23, + "Weapon Points": 31000 + }, + { + "Weapon Level": 24, + "Weapon Points": 33000 + }, + { + "Weapon Level": 25, + "Weapon Points": 35000 + }, + { + "Weapon Level": 26, + "Weapon Points": 37000 + }, + { + "Weapon Level": 27, + "Weapon Points": 39000 + }, + { + "Weapon Level": 28, + "Weapon Points": 41000 + }, + { + "Weapon Level": 29, + "Weapon Points": 44000 } ] \ No newline at end of file diff --git a/PayCheckServerLib/Files/ChallengeDailies.json b/PayCheckServerLib/Files/ChallengeDailies.json new file mode 100644 index 0000000..a849c16 --- /dev/null +++ b/PayCheckServerLib/Files/ChallengeDailies.json @@ -0,0 +1,22 @@ +{ + "namespace": "pd3", + "key": "challenge-dailies", + "set_by": "SERVER", + "value": { + "BlockArray": { + "SlotArray": [ + { + "ChallengeDailyCompletionTimeType": "Medium" + }, + { + "ChallengeDailyCompletionTimeType": "Medium" + }, + { + "ChallengeDailyCompletionTimeType": "Long" + } + ] + } + }, + "created_at": "2024-08-19T08:58:30.118Z", + "updated_at": "updatedattomakegitdiffseasiertoread" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/ChallengeRecommendations.json b/PayCheckServerLib/Files/ChallengeRecommendations.json index 8d6f7c0..9f4344b 100644 --- a/PayCheckServerLib/Files/ChallengeRecommendations.json +++ b/PayCheckServerLib/Files/ChallengeRecommendations.json @@ -303,9 +303,37 @@ "challengeRecommandationsPriorityType": "LowProgress" } ] + }, + { + "ScreenName": "datacenter", + "SlotArray": [ + { + "CheckInfamyLevel": true, + "MandatoryTags": [ + "Data", + "Center" + ], + "challengeRecommandationsPriorityType": "CloseToCompletion" + }, + { + "CheckInfamyLevel": true, + "MandatoryTags": [ + "Data", + "Center" + ], + "challengeRecommandationsPriorityType": "AnyProgress" + }, + { + "CheckInfamyLevel": true, + "MandatoryTags": [ + "Combat" + ], + "challengeRecommandationsPriorityType": "LowProgress" + } + ] } ] }, "created_at": "2023-10-19T05:57:01.306Z", - "updated_at": "2023-11-30T11:08:44.171Z" + "updated_at": "2023-12-12T10:44:04.717Z" } \ No newline at end of file diff --git a/PayCheckServerLib/Files/ChallengeRecords.json b/PayCheckServerLib/Files/ChallengeRecords.json index 4185c8e..0b367c9 100644 --- a/PayCheckServerLib/Files/ChallengeRecords.json +++ b/PayCheckServerLib/Files/ChallengeRecords.json @@ -1,99393 +1,43310 @@ { - "paging": { - "first": "", - "last": "", - "next": "", - "previous": "" - }, - "data": [ - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a30c7f0dd5f341fd1633", - "namespace": "pd3", - "name": "A114 Armored Headshot I", - "description": "Defeat 10 armored enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2a30c0c06b20001e778ec", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Armor", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 2147483902, - "createdAt": "2023-01-26T15:58:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a3537f0dd5f341fd1959", - "namespace": "pd3", - "name": "A114 Armored Headshot II", - "description": "Defeat 50 armored enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a30c7f0dd5f341fd1633" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d2a3530c06b20001e77951", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Armor", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 2147483903, - "createdAt": "2023-01-26T15:59:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a30c7f0dd5f341fd1633", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a3937f0dd5f341fd195a", - "namespace": "pd3", - "name": "A114 Armored Headshot III", - "description": "Defeat 100 armored enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a3537f0dd5f341fd1959" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d2a3930c06b20001e77956", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Armor", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 2147483904, - "createdAt": "2023-01-26T16:00:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a3537f0dd5f341fd1959", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a3f87f0dd5f341fd1c82", - "namespace": "pd3", - "name": "A114 Armored Headshot IV", - "description": "Defeat 200 armored enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a3937f0dd5f341fd195a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d2a3f80c06b20001e779bb", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Armor", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 2147483905, - "createdAt": "2023-01-26T16:02:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a3937f0dd5f341fd195a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a4457f0dd5f341fd1c83", - "namespace": "pd3", - "name": "A114 Armored Headshot V", - "description": "Defeat 400 armored enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a3f87f0dd5f341fd1c82" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d2a4450c06b20001e779bc", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Armor", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 2147483906, - "createdAt": "2023-01-26T16:03:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a3f87f0dd5f341fd1c82", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-armored-headshot-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c459a628fe1154bf4be122", - "namespace": "pd3", - "name": "A114 I", - "description": "Defeat 50 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c459a607a95c0001904983", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 96, - "createdAt": "2022-07-05T15:32:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45a2728fe1154bf4be123", - "namespace": "pd3", - "name": "A114 II", - "description": "Defeat 100 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c459a628fe1154bf4be122" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c45a2707a95c0001904984", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 97, - "createdAt": "2022-07-05T15:35:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c459a628fe1154bf4be122", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45d2828fe1154bf4be124", - "namespace": "pd3", - "name": "A114 III", - "description": "Defeat 200 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c45a2728fe1154bf4be123" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c45d2807a95c000190498c", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 98, - "createdAt": "2022-07-05T15:47:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c45a2728fe1154bf4be123", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45d8f28fe1154bf4be125", - "namespace": "pd3", - "name": "A114 IV", - "description": "Defeat 350 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c45d2828fe1154bf4be124" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "62c45d8f07a95c000190498d", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 99, - "createdAt": "2022-07-05T15:49:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c45d2828fe1154bf4be124", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50cba7f4d322dc61d66e2", - "namespace": "pd3", - "name": "A114 Master", - "description": "Complete a heist with all base mods unlocked for the A114 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50cbaae93c90001c98fdf", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "A114", - "IL15", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484275, - "createdAt": "2023-02-09T15:09:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b3907f4d322dc6199c9e", - "namespace": "pd3", - "name": "A114 Rookie", - "description": "Complete a heist using the A114 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b390ae93c90001c97363", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "A114", - "IL15", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484237, - "createdAt": "2023-02-08T14:37:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45dfb28fe1154bf4be126", - "namespace": "pd3", - "name": "A114 V", - "description": "Defeat 500 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c45d8f28fe1154bf4be125" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c45dfb07a95c0001904992", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 100, - "createdAt": "2022-07-05T15:51:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c45d8f28fe1154bf4be125", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f02c7f4d322dc61ca621", - "namespace": "pd3", - "name": "A114 Veteran", - "description": "Complete a heist with four mod slots filled on the A114 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f02cae93c90001c98a6c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "A114", - "IL15", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484254, - "createdAt": "2023-02-09T13:07:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d1e483c1792981dc9950", - "namespace": "pd3", - "name": "A114 VI", - "description": "Defeat 750 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c45dfb28fe1154bf4be126" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411d1e4e2027d0001c0f67d", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 2147484352, - "createdAt": "2023-03-15T14:10:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c45dfb28fe1154bf4be126", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d22183c1792981dc9c6c", - "namespace": "pd3", - "name": "A114 VII", - "description": "Defeat 1000 enemies with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d1e483c1792981dc9950" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411d221e2027d0001c0f67f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "IL15", - "Kill" - ], - "orderNo": 2147484353, - "createdAt": "2023-03-15T14:11:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411d1e483c1792981dc9950", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f89d3b071322ce47d807", - "namespace": "pd3", - "name": "Achievement Epic Armored Transport Civilians Gone", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f89d2b2e410001ca21c7", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484372, - "createdAt": "2023-09-05T09:45:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f8e548e197b222a28a95", - "namespace": "pd3", - "name": "Achievement Epic Armored Transport Truck No Stop", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f8e593ff8f0001dff446", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484373, - "createdAt": "2023-09-05T09:46:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f91a48e197b222a28a97", - "namespace": "pd3", - "name": "Achievement Epic Art Gallery Exhibition Bags Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f91a4c95880001c6cff9", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484374, - "createdAt": "2023-09-05T09:47:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f9776fdb0caaceb02f1c", - "namespace": "pd3", - "name": "Achievement Epic Art Gallery Shanda Panting Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f977929143000160c369", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484375, - "createdAt": "2023-09-05T09:48:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f9a83b071322ce47d809", - "namespace": "pd3", - "name": "Achievement Epic Branch Bank No Dye Packs Exploded", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f9a873a78d000181c6e0", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484376, - "createdAt": "2023-09-05T09:49:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6f9ded61a8976cfe2163b", - "namespace": "pd3", - "name": "Achievement Epic Branch Bank Open Deposit Boxes", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6f9de14fba50001cf00b9", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484377, - "createdAt": "2023-09-05T09:50:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fa0e133c6c9a404745ce", - "namespace": "pd3", - "name": "Achievement Epic Cargo Dock Max Hi Tech Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fa0e8c4bf30001d585e7", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484378, - "createdAt": "2023-09-05T09:51:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fa471ddf5682221f6a05", - "namespace": "pd3", - "name": "Achievement Epic Cargo Dock Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fa4773a78d000181c6e1", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484379, - "createdAt": "2023-09-05T09:52:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fa890cdc45e2bd5421a1", - "namespace": "pd3", - "name": "Achievement Epic Core Buffs Active", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fa89dff95f000198c13d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484380, - "createdAt": "2023-09-05T09:53:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fab6fd88507a30f1bfb6", - "namespace": "pd3", - "name": "Achievement Epic Customize Mask", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fab6d1a3f700010b5e90", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484381, - "createdAt": "2023-09-05T09:53:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6faee56adc170aceb1b18", - "namespace": "pd3", - "name": "Achievement Epic Heist Kill Sentry Turret", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6faeedff95f000198c13e", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484382, - "createdAt": "2023-09-05T09:54:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fb388f9db4d98f2607bc", - "namespace": "pd3", - "name": "Achievement Epic Jewelry Store Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fb38d1a3f700010b5e91", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484383, - "createdAt": "2023-09-05T09:56:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fb720ddf61788f6ccca2", - "namespace": "pd3", - "name": "Achievement Epic Jewelry Store Speed Run", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fb729063790001edb098", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484384, - "createdAt": "2023-09-05T09:57:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fba8f3a4619b911dfefa", - "namespace": "pd3", - "name": "Achievement Epic Mask On", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fba8d1a3f700010b5e92", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484385, - "createdAt": "2023-09-05T09:58:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fbd25f127fa76f62cc33", - "namespace": "pd3", - "name": "Achievement Epic Night Club No ID VIP Area", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fbd2ff3d520001b0b20d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484386, - "createdAt": "2023-09-05T09:58:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fbfe8f9db4d98f2607be", - "namespace": "pd3", - "name": "Achievement Epic Night Club Survived Assaults", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fbfedff95f000198c162", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484387, - "createdAt": "2023-09-05T09:59:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fc39d61a8976cfe2163d", - "namespace": "pd3", - "name": "Achievement Epic Penthouse Human Shield Extract", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fc393781460001e91679", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484388, - "createdAt": "2023-09-05T10:00:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fc7309d815cc7bf949fd", - "namespace": "pd3", - "name": "Achievement Epic Penthouse No Guard Kills", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fc7314fba50001cf00c1", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484389, - "createdAt": "2023-09-05T10:01:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fcc76fdb0caaceb02f1e", - "namespace": "pd3", - "name": "Achievement Epic Primary Full Mod Unlock", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fcc756d5d20001ae3432", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484390, - "createdAt": "2023-09-05T10:02:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fcfb729a86a108ed5dac", - "namespace": "pd3", - "name": "Achievement Epic Sharke Bank Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fcfb9063790001edb09a", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484391, - "createdAt": "2023-09-05T10:03:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fd255f127fa76f62cc35", - "namespace": "pd3", - "name": "Achievement Epic Sharke Bank No HR Computer", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fd2543c78200014962ff", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484392, - "createdAt": "2023-09-05T10:04:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f6fd5a0cdc45e2bd5421a3", - "namespace": "pd3", - "name": "Achievement Epic Taser Battery Enemy Stuns", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-epic", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f6fd5ae1b1920001d98c6a", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484393, - "createdAt": "2023-09-05T10:05:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-epic", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7038c729a86a108ed5dae", - "namespace": "pd3", - "name": "Achievement PlayStation Armored Transport Civilians Gone", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7038c14fba50001cf00cc", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484394, - "createdAt": "2023-09-05T10:31:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f703afa0e94603d22c20fa", - "namespace": "pd3", - "name": "Achievement PlayStation Armored Transport Truck No Stop", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f703af9f24e900015ca91a", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484395, - "createdAt": "2023-09-05T10:32:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f703e16fdb0caaceb02f22", - "namespace": "pd3", - "name": "Achievement PlayStation Art Gallery Exhibition Bags Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f703e1d71d88000158f7ba", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484396, - "createdAt": "2023-09-05T10:33:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7040e6fdb0caaceb02f24", - "namespace": "pd3", - "name": "Achievement PlayStation Art Gallery Shanda Panting Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7040ed71d88000158f7bb", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484397, - "createdAt": "2023-09-05T10:33:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f704359c04624da48019bd", - "namespace": "pd3", - "name": "Achievement PlayStation Branch Bank No Dye Packs Exploded", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f704352b2e410001ca21cf", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484398, - "createdAt": "2023-09-05T10:34:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70467fd88507a30f1bfb8", - "namespace": "pd3", - "name": "Achievement PlayStation Branch Bank Open Deposit Boxes", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70467d71d88000158f7bc", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484399, - "createdAt": "2023-09-05T10:35:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7049a8f9db4d98f2607c0", - "namespace": "pd3", - "name": "Achievement PlayStation Cargo Dock Max Hi Tech Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7049a9063790001edb0b5", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484400, - "createdAt": "2023-09-05T10:36:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f704c76b8899dc8e6f9304", - "namespace": "pd3", - "name": "Achievement PlayStation Cargo Dock Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f704c734b4a10001295fa3", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484401, - "createdAt": "2023-09-05T10:36:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f704f35124f20dcb88d592", - "namespace": "pd3", - "name": "Achievement PlayStation Core Buffs Active", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f704f39063790001edb0b6", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484402, - "createdAt": "2023-09-05T10:37:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7052094b460a000736174", - "namespace": "pd3", - "name": "Achievement PlayStation Customize Mask", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7052047fc89000109e2ef", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484403, - "createdAt": "2023-09-05T10:38:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7054cadfe871b09f639d4", - "namespace": "pd3", - "name": "Achievement PlayStation Heist Kill Sentry Turret", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7054c8c4bf30001d5860c", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484404, - "createdAt": "2023-09-05T10:39:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7057e3a8fa7f2df0e3a89", - "namespace": "pd3", - "name": "Achievement PlayStation Jewelry Store Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7057e929143000160c3a6", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484405, - "createdAt": "2023-09-05T10:39:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f707b35f127fa76f62cc37", - "namespace": "pd3", - "name": "Achievement PlayStation Jewelry Store Speed Run", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f707b39f24e900015ca954", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484415, - "createdAt": "2023-09-05T10:49:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f705b20ddf61788f6ccca6", - "namespace": "pd3", - "name": "Achievement PlayStation Mask On", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f705b2d1a3f700010b5ed6", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484406, - "createdAt": "2023-09-05T10:40:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f705da58844e097c9e1f17", - "namespace": "pd3", - "name": "Achievement PlayStation Night Club No ID VIP Area", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f705dad71d88000158f7bd", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484407, - "createdAt": "2023-09-05T10:41:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f706118f9db4d98f2607c2", - "namespace": "pd3", - "name": "Achievement PlayStation Night Club Survived Assaults", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f706112b2e410001ca21d0", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484408, - "createdAt": "2023-09-05T10:42:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70644133c6c9a404745d0", - "namespace": "pd3", - "name": "Achievement PlayStation Penthouse Human Shield Extract", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7064447fc89000109e2f0", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484409, - "createdAt": "2023-09-05T10:43:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70674fd88507a30f1bfba", - "namespace": "pd3", - "name": "Achievement PlayStation Penthouse No Guard Kills", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70674d1a3f700010b5ef3", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484410, - "createdAt": "2023-09-05T10:44:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f706b05124f20dcb88d594", - "namespace": "pd3", - "name": "Achievement PlayStation Primary Full Mod Unlock", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f706b047fc89000109e2f1", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484411, - "createdAt": "2023-09-05T10:45:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f706eaa0e94603d22c20fc", - "namespace": "pd3", - "name": "Achievement PlayStation Sharke Bank Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f706ea929143000160c3a7", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484412, - "createdAt": "2023-09-05T10:46:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f707115124f20dcb88d596", - "namespace": "pd3", - "name": "Achievement PlayStation Sharke Bank No HR Computer", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f707119f24e900015ca94b", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484413, - "createdAt": "2023-09-05T10:46:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f707403b071322ce47d80d", - "namespace": "pd3", - "name": "Achievement PlayStation Taser Battery Enemy Stuns", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-playstation", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70740929143000160c3a8", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484414, - "createdAt": "2023-09-05T10:47:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-playstation", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70a5909d815cc7bf94a01", - "namespace": "pd3", - "name": "Achievement Steam Armored Transport Civilians Gone", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70a5934b4a10001296006", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484416, - "createdAt": "2023-09-05T11:00:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70a810ddf61788f6ccca8", - "namespace": "pd3", - "name": "Achievement Steam Armored Transport Truck No Stop", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70a819063790001edb0ce", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484417, - "createdAt": "2023-09-05T11:01:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70ab858844e097c9e1f19", - "namespace": "pd3", - "name": "Achievement Steam Art Gallery Exhibition Bags Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70ab810e29800010d7c86", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484418, - "createdAt": "2023-09-05T11:02:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70ae1133c6c9a404745d2", - "namespace": "pd3", - "name": "Achievement Steam Art Gallery Shanda Panting Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70ae147fc89000109e316", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484419, - "createdAt": "2023-09-05T11:02:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70b108f82eadeccc303fb", - "namespace": "pd3", - "name": "Achievement Steam Branch Bank No Dye Packs Exploded", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70b109063790001edb0cf", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484420, - "createdAt": "2023-09-05T11:03:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70b4758844e097c9e1f1b", - "namespace": "pd3", - "name": "Achievement Steam Branch Bank Open Deposit Boxes", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70b47d1a3f700010b5ef9", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484421, - "createdAt": "2023-09-05T11:04:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70b71729a86a108ed5db0", - "namespace": "pd3", - "name": "Achievement Steam Cargo Dock Max Hi Tech Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70b719063790001edb0d2", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484422, - "createdAt": "2023-09-05T11:05:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70b9ffd88507a30f1bfbc", - "namespace": "pd3", - "name": "Achievement Steam Cargo Dock Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70b9f43c7820001496321", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484423, - "createdAt": "2023-09-05T11:06:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70bc7c39b508f11fe275c", - "namespace": "pd3", - "name": "Achievement Steam Core Buffs Active", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70bc784869c00017cce77", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484424, - "createdAt": "2023-09-05T11:06:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70beed61a8976cfe2163f", - "namespace": "pd3", - "name": "Achievement Steam Customize Mask", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70bee929143000160c3e7", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484425, - "createdAt": "2023-09-05T11:07:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70c168f9db4d98f2607c4", - "namespace": "pd3", - "name": "Achievement Steam Heist Kill Sentry Turret", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70c168c4bf30001d5863d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484426, - "createdAt": "2023-09-05T11:08:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70c558f9db4d98f2607c6", - "namespace": "pd3", - "name": "Achievement Steam Jewelry Store Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70c55bd3ec900012fbd46", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484427, - "createdAt": "2023-09-05T11:09:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70c7b0cdc45e2bd5421a5", - "namespace": "pd3", - "name": "Achievement Steam Jewelry Store Speed Run", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70c7b84869c00017cce78", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484428, - "createdAt": "2023-09-05T11:09:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70ca1f3a4619b911dfefc", - "namespace": "pd3", - "name": "Achievement Steam Mask On", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70ca1d71d88000158f7c4", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484429, - "createdAt": "2023-09-05T11:10:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70cca9c04624da48019bf", - "namespace": "pd3", - "name": "Achievement Steam Night Club No ID VIP Area", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70cca84869c00017cce79", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484430, - "createdAt": "2023-09-05T11:11:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70d010ddf61788f6cccaa", - "namespace": "pd3", - "name": "Achievement Steam Night Club Survived Assaults", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70d01e1b1920001d98c7d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484431, - "createdAt": "2023-09-05T11:12:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70d2d5f127fa76f62cc39", - "namespace": "pd3", - "name": "Achievement Steam Penthouse Human Shield Extract", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70d2d84869c00017cce82", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484432, - "createdAt": "2023-09-05T11:12:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70d57f3a4619b911dfefe", - "namespace": "pd3", - "name": "Achievement Steam Penthouse No Guard Kills", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70d57929143000160c3ea", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484433, - "createdAt": "2023-09-05T11:13:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70d80a0e94603d22c20fe", - "namespace": "pd3", - "name": "Achievement Steam Primary Full Mod Unlock", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70d8043c7820001496326", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484434, - "createdAt": "2023-09-05T11:14:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70daf0ddf61788f6cccac", - "namespace": "pd3", - "name": "Achievement Steam Sharke Bank Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70daf10e29800010d7c8e", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484435, - "createdAt": "2023-09-05T11:14:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70dde6b8899dc8e6f9306", - "namespace": "pd3", - "name": "Achievement Steam Sharke Bank No HR Computer", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70dde93ff8f0001dff4f2", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484436, - "createdAt": "2023-09-05T11:15:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70e0e6b8899dc8e6f9308", - "namespace": "pd3", - "name": "Achievement Steam Taser Battery Enemy Stuns", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-steam", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70e0e56d5d20001ae3488", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484437, - "createdAt": "2023-09-05T11:16:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-steam", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70ef2adfe871b09f639da", - "namespace": "pd3", - "name": "Achievement XBox Armored Transport Civilians Gone", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70ef22b2e410001ca2209", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484438, - "createdAt": "2023-09-05T11:20:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-civilians-gone-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70f25133c6c9a404745d4", - "namespace": "pd3", - "name": "Achievement XBox Armored Transport Truck No Stop", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70f25e1b1920001d98c7e", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484439, - "createdAt": "2023-09-05T11:21:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-truck-no-stop-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70f4ec39b508f11fe275e", - "namespace": "pd3", - "name": "Achievement XBox Art Gallery Exhibition Bags Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70f4e73a78d000181c759", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484440, - "createdAt": "2023-09-05T11:21:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-exhibition-bags-secured-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70f72fd88507a30f1bfbe", - "namespace": "pd3", - "name": "Achievement XBox Art Gallery Shanda Panting Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70f724877c300019eac6d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484441, - "createdAt": "2023-09-05T11:22:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-shanda-painting-secured-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70f99adfe871b09f639dc", - "namespace": "pd3", - "name": "Achievement XBox Branch Bank No Dye Packs Exploded", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70f9956d5d20001ae348b", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484442, - "createdAt": "2023-09-05T11:23:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-dye-packs-exploded-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70fc509d815cc7bf94a03", - "namespace": "pd3", - "name": "Achievement XBox Branch Bank Open Deposit Boxes", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70fc556d5d20001ae348c", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484443, - "createdAt": "2023-09-05T11:23:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-open-deposit-boxes-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f70ff69c04624da48019c3", - "namespace": "pd3", - "name": "Achievement XBox Cargo Dock Max Hi Tech Secured", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f70ff6ff3d520001b0b26f", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484444, - "createdAt": "2023-09-05T11:24:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-hi-tech-secured-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7101e0cdc45e2bd5421a7", - "namespace": "pd3", - "name": "Achievement XBox Cargo Dock Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7101e9f24e900015caa0f", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484445, - "createdAt": "2023-09-05T11:25:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout-achievement-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7104c58844e097c9e1f1d", - "namespace": "pd3", - "name": "Achievement XBox Core Buffs Active", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7104c9063790001edb0fb", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484446, - "createdAt": "2023-09-05T11:26:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "core-buffs-active-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f710765124f20dcb88d598", - "namespace": "pd3", - "name": "Achievement XBox Customize Mask", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7107673a78d000181c766", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484447, - "createdAt": "2023-09-05T11:26:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "customize-mask-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f710a4729a86a108ed5db2", - "namespace": "pd3", - "name": "Achievement XBox Heist Kill Sentry Turret", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f710a4d043f100016c73fa", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484448, - "createdAt": "2023-09-05T11:27:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "heist-sentry-turret-kills-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f710cd5f127fa76f62cc3b", - "namespace": "pd3", - "name": "Achievement XBox Jewelry Store Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f710cd93ff8f0001dff51d", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484449, - "createdAt": "2023-09-05T11:28:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout-achievement-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f710f4133c6c9a404745d8", - "namespace": "pd3", - "name": "Achievement XBox Jewelry Store Speed Run", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f710f4ff3d520001b0b275", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484450, - "createdAt": "2023-09-05T11:28:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-speed-run-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f71122f3a4619b911dff00", - "namespace": "pd3", - "name": "Achievement XBox Mask On", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f711229f24e900015caa35", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484451, - "createdAt": "2023-09-05T11:29:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mask-on-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f711438f82eadeccc303fd", - "namespace": "pd3", - "name": "Achievement XBox Night Club No ID VIP Area", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f71143d1a3f700010b5eff", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484452, - "createdAt": "2023-09-05T11:30:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-id-vip-area-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f711703a8fa7f2df0e3a8b", - "namespace": "pd3", - "name": "Achievement XBox Night Club Survived Assaults", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f71170dff95f000198c221", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484453, - "createdAt": "2023-09-05T11:30:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-survived-assaults-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f711978f9db4d98f2607c8", - "namespace": "pd3", - "name": "Achievement XBox Penthouse Human Shield Extract", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f711979f24e900015caa42", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484454, - "createdAt": "2023-09-05T11:31:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-human-shield-extract-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f711bf5124f20dcb88d59a", - "namespace": "pd3", - "name": "Achievement XBox Penthouse No Guard Kills", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f711bfff3d520001b0b27a", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484455, - "createdAt": "2023-09-05T11:32:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-guard-kills-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f711e40cdc45e2bd5421a9", - "namespace": "pd3", - "name": "Achievement XBox Primary Full Mod Unlock", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f711e447fc89000109e31a", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484456, - "createdAt": "2023-09-05T11:32:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "primary-full-mod-unlock-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7120d48e197b222a28aa1", - "namespace": "pd3", - "name": "Achievement XBox Sharke Bank Max Payout", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7120d10e29800010d7c9b", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484457, - "createdAt": "2023-09-05T11:33:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout-achievement-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7122e6b8899dc8e6f930a", - "namespace": "pd3", - "name": "Achievement XBox Sharke Bank No HR Computer", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7122edff95f000198c222", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484458, - "createdAt": "2023-09-05T11:34:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-hr-computer-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "64f7125b48e197b222a28aa3", - "namespace": "pd3", - "name": "Achievement XBox Taser Battery Enemy Stuns", - "description": "", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-xbox", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "64f7125bdff95f000198c223", - "stats": [ - { - "statCode": "achievements-rewarded", - "value": 1 - } - ], - "items": [] - }, - "tags": [ - "Achievement" - ], - "orderNo": 2147484459, - "createdAt": "2023-09-05T11:34:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-battery-enemy-stuns-xbox", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63762f0b29040c967e3e39d8", - "namespace": "pd3", - "name": "Armored Transport Loud I", - "description": "Beat Armored Transport on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63762f0be23efe0001fd21e6", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 375, - "createdAt": "2022-11-17T12:54:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637b71ed66148eeffe0e97e4", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender I", - "description": "Beat Armored Transport 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63762f0b29040c967e3e39d8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "637b71ede23efe0001fd42ac", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 405, - "createdAt": "2022-11-21T12:41:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63762f0b29040c967e3e39d8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637b9f9a66148eeffe0ed005", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender II", - "description": "Beat Armored Transport 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637b71ed66148eeffe0e97e4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "637b9f9ae23efe0001fd4577", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 406, - "createdAt": "2022-11-21T15:56:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637b71ed66148eeffe0e97e4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637ba02966148eeffe0ed035", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender III", - "description": "Beat Armored Transport 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637b9f9a66148eeffe0ed005" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "637ba029e23efe0001fd4578", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Normal", - "Transport" - ], - "orderNo": 407, - "createdAt": "2022-11-21T15:58:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637b9f9a66148eeffe0ed005", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637ba0b266148eeffe0ed0f6", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender IV", - "description": "Beat Armored Transport 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637ba02966148eeffe0ed035" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "637ba0b2e23efe0001fd4579", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Normal", - "Transport" - ], - "orderNo": 408, - "createdAt": "2022-11-21T16:00:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637ba02966148eeffe0ed035", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfaaa77f0dd5f341f37010", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender V", - "description": "Beat Armored Transport 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637ba0b266148eeffe0ed0f6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63cfaaa7c9460a0001ef6632", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 2147483726, - "createdAt": "2023-01-24T09:53:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637ba0b266148eeffe0ed0f6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd4487f0dd5f341f3a3bd", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender VI", - "description": "Beat Armored Transport 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfaaa77f0dd5f341f37010" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfd448c9460a0001ef6a51", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 2147483750, - "createdAt": "2023-01-24T12:51:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfaaa77f0dd5f341f37010", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdaf67f0dd5f341f3aba8", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender VII", - "description": "Beat Armored Transport 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfd4487f0dd5f341f3a3bd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63cfdaf6c9460a0001ef6abe", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 2147483759, - "createdAt": "2023-01-24T13:19:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfd4487f0dd5f341f3a3bd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdbbc7f0dd5f341f3aeb0", - "namespace": "pd3", - "name": "Armored Transport Loud I: Repeat Offender VIII", - "description": "Beat Armored Transport 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdaf67f0dd5f341f3aba8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63cfdbbcc9460a0001ef6abf", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Armored", - "Transport" - ], - "orderNo": 2147483760, - "createdAt": "2023-01-24T13:23:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdaf67f0dd5f341f3aba8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63762fd029040c967e3e3a05", - "namespace": "pd3", - "name": "Armored Transport Loud II", - "description": "Beat Armored Transport on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63762fd0e23efe0001fd21e7", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport" - ], - "orderNo": 376, - "createdAt": "2022-11-17T12:57:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637bbe0666148eeffe0ee9e5", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender I", - "description": "Beat Armored Transport 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63762fd029040c967e3e3a05" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "637bbe06e23efe0001fd4654", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 409, - "createdAt": "2022-11-21T18:05:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63762fd029040c967e3e3a05", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637bbe8666148eeffe0ee9e6", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender II", - "description": "Beat Armored Transport 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637bbe0666148eeffe0ee9e5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "637bbe86e23efe0001fd4655", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 410, - "createdAt": "2022-11-21T18:08:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637bbe0666148eeffe0ee9e5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637bbee766148eeffe0ee9e7", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender III", - "description": "Beat Armored Transport 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637bbe8666148eeffe0ee9e6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "637bbee7e23efe0001fd4656", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport" - ], - "orderNo": 411, - "createdAt": "2022-11-21T18:09:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637bbe8666148eeffe0ee9e6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637bbf7566148eeffe0ee9e8", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender IV", - "description": "Beat Armored Transport 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637bbee766148eeffe0ee9e7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "637bbf75e23efe0001fd4657", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport" - ], - "orderNo": 412, - "createdAt": "2022-11-21T18:12:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637bbee766148eeffe0ee9e7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7804921282a2b1cef6368", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender V", - "description": "Beat Armored Transport 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637bbf7566148eeffe0ee9e8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d780499e43fb0001909972", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483992, - "createdAt": "2023-01-30T08:31:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637bbf7566148eeffe0ee9e8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7811521282a2b1cef64ac", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender VI", - "description": "Beat Armored Transport 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7804921282a2b1cef6368" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d781159e43fb000190997f", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483993, - "createdAt": "2023-01-30T08:34:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7804921282a2b1cef6368", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7816621282a2b1cef6660", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender VII", - "description": "Beat Armored Transport 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7811521282a2b1cef64ac" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d781669e43fb0001909980", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport" - ], - "orderNo": 2147483994, - "createdAt": "2023-01-30T08:35:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7811521282a2b1cef64ac", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 240 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d781a921282a2b1cef6661", - "namespace": "pd3", - "name": "Armored Transport Loud II: Repeat Offender VIII", - "description": "Beat Armored Transport 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7816621282a2b1cef6660" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d781a99e43fb0001909981", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483995, - "createdAt": "2023-01-30T08:36:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7816621282a2b1cef6660", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63763a5b29040c967e3e4a1e", - "namespace": "pd3", - "name": "Armored Transport Loud III", - "description": "Beat Armored Transport on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63763a5be23efe0001fd22f6", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport", - "Very" - ], - "orderNo": 377, - "createdAt": "2022-11-17T13:42:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cc3022bae6007875cd0b1", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender I", - "description": "Beat Armored Transport 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63763a5b29040c967e3e4a1e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "637cc302e23efe0001fd4d10", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 413, - "createdAt": "2022-11-22T12:39:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63763a5b29040c967e3e4a1e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cc3cc2bae6007875cd0b2", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender II", - "description": "Beat Armored Transport 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cc3022bae6007875cd0b1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "637cc3cce23efe0001fd4d11", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport", - "Very" - ], - "orderNo": 414, - "createdAt": "2022-11-22T12:42:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cc3022bae6007875cd0b1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cc7f52bae6007875cdc9d", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender III", - "description": "Beat Armored Transport 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cc3cc2bae6007875cd0b2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "637cc7f5e23efe0001fd4d3d", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport", - "Very" - ], - "orderNo": 415, - "createdAt": "2022-11-22T13:00:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cc3cc2bae6007875cd0b2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cd2b32bae6007875cf6fd", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender IV", - "description": "Beat Armored Transport 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cc7f52bae6007875cdc9d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "637cd2b3e23efe0001fd4dee", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Hard", - "Heist", - "Loud", - "Map", - "Transport", - "Very" - ], - "orderNo": 416, - "createdAt": "2022-11-22T13:46:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cc7f52bae6007875cdc9d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d787a621282a2b1cefac89", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender V", - "description": "Beat Armored Transport 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cd2b32bae6007875cf6fd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d787a69e43fb0001909e71", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483996, - "createdAt": "2023-01-30T09:02:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cd2b32bae6007875cf6fd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d787ee21282a2b1cefad62", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender VI", - "description": "Beat Armored Transport 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d787a621282a2b1cefac89" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d787ee9e43fb0001909e72", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483997, - "createdAt": "2023-01-30T09:03:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d787a621282a2b1cefac89", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7883421282a2b1cefad63", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender VII", - "description": "Beat Armored Transport 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d787ee21282a2b1cefad62" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d788349e43fb0001909e73", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Armored", - "Transport" - ], - "orderNo": 2147483998, - "createdAt": "2023-01-30T09:04:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d787ee21282a2b1cefad62", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7887c21282a2b1cefaf8d", - "namespace": "pd3", - "name": "Armored Transport Loud III: Repeat Offender VIII", - "description": "Beat Armored Transport 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7883421282a2b1cefad63" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d7887c9e43fb0001909e74", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Armored", - "Transport", - "Very", - "Hard" - ], - "orderNo": 2147483999, - "createdAt": "2023-01-30T09:06:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7883421282a2b1cefad63", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63763afe29040c967e3e4acf", - "namespace": "pd3", - "name": "Armored Transport Loud IV", - "description": "Beat Armored Transport on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63763afee23efe0001fd22f7", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 378, - "createdAt": "2022-11-17T13:45:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cd4182bae6007875cf9f4", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender I", - "description": "Beat Armored Transport 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63763afe29040c967e3e4acf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "637cd418e23efe0001fd4def", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 417, - "createdAt": "2022-11-22T13:52:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63763afe29040c967e3e4acf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cd6d02bae6007875d0341", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender II", - "description": "Beat Armored Transport 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cd4182bae6007875cf9f4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "637cd6d0e23efe0001fd4e1b", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 418, - "createdAt": "2022-11-22T14:04:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cd4182bae6007875cf9f4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cd8dd2bae6007875d0992", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender III", - "description": "Beat Armored Transport 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cd6d02bae6007875d0341" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "637cd8dde23efe0001fd4e1c", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 419, - "createdAt": "2022-11-22T14:12:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cd6d02bae6007875d0341", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cd9882bae6007875d0a7e", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender IV", - "description": "Beat Armored Transport 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cd8dd2bae6007875d0992" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "637cd988e23efe0001fd4e1d", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 420, - "createdAt": "2022-11-22T14:15:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cd8dd2bae6007875d0992", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7895221282a2b1cefb392", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender V", - "description": "Beat Armored Transport 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cd9882bae6007875d0a7e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d789529e43fb0001909ec2", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Armored", - "Transport" - ], - "orderNo": 2147484000, - "createdAt": "2023-01-30T09:09:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cd9882bae6007875d0a7e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d789af21282a2b1cefb3ff", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender VI", - "description": "Beat Armored Transport 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7895221282a2b1cefb392" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d789af9e43fb0001909ec3", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Armored", - "Transport" - ], - "orderNo": 2147484001, - "createdAt": "2023-01-30T09:11:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7895221282a2b1cefb392", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78a1621282a2b1cefc382", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender VII", - "description": "Beat Armored Transport 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d789af21282a2b1cefb3ff" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d78a169e43fb000190a054", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Armored", - "Transport" - ], - "orderNo": 2147484002, - "createdAt": "2023-01-30T09:12:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d789af21282a2b1cefb3ff", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78a7521282a2b1cefc5ae", - "namespace": "pd3", - "name": "Armored Transport Loud IV: Repeat Offender VIII", - "description": "Beat Armored Transport 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78a1621282a2b1cefc382" - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d78a759e43fb000190a055", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Armored", - "Heist", - "Loud", - "Map", - "Overkill", - "Transport" - ], - "orderNo": 2147484003, - "createdAt": "2023-01-30T09:14:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78a1621282a2b1cefc382", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 280 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee1a9e8f18e8f291865084", - "namespace": "pd3", - "name": "Armored Transport Optional Objective I - Smooth Sailing", - "description": "Do not let the Armored Transport come to a halt during escort.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee1a9ee2027d0001bf3530", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Armored", - "Transport", - "Optional" - ], - "orderNo": 2147484283, - "createdAt": "2023-02-16T11:59:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63763da629040c967e3e4e9e", - "namespace": "pd3", - "name": "Armored Transport: Full Payout", - "description": "Escape with the maximum amount of bags", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63763da6e23efe0001fd233e", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Armored", - "Transport", - "Max" - ], - "orderNo": 379, - "createdAt": "2022-11-17T13:56:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63763e4e29040c967e3e51c7", - "namespace": "pd3", - "name": "Armored Transport: On Your Feet", - "description": "Escape without being downed", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63763e4ee23efe0001fd234f", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Armored", - "Transport", - "No", - "Down" - ], - "orderNo": 380, - "createdAt": "2022-11-17T13:59:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e858228fe1154bf4b6fa4", - "namespace": "pd3", - "name": "Art Gallery Loud I", - "description": "Beat Art Gallery on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e858230e7810001865454", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 10, - "createdAt": "2022-04-19T09:48:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8e003a74ddca83bcf3fa8", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender I", - "description": "Beat Art Gallery 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e858228fe1154bf4b6fa4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62e8e00307a95c000190ac22", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 207, - "createdAt": "2022-08-02T08:27:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e858228fe1154bf4b6fa4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8e1afa74ddca83bcf3fad", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender II", - "description": "Beat Art Gallery 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8e003a74ddca83bcf3fa8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62e8e1af07a95c000190ac7f", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 208, - "createdAt": "2022-08-02T08:34:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8e003a74ddca83bcf3fa8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8eaeca74ddca83bcf3fb7", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender III", - "description": "Beat Art Gallery 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8e1afa74ddca83bcf3fad" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62e8eaec07a95c000190acb3", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 209, - "createdAt": "2022-08-02T09:14:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8e1afa74ddca83bcf3fad", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8ec64a74ddca83bcf3fb9", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender IV", - "description": "Beat Art Gallery 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8eaeca74ddca83bcf3fb7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62e8ec6407a95c000190acb8", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 210, - "createdAt": "2022-08-02T09:20:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8eaeca74ddca83bcf3fb7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e6b821282a2b1cf99d72", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender V", - "description": "Beat Art Gallery 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8ec64a74ddca83bcf3fb9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d8e6b89e43fb0001915b80", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484068, - "createdAt": "2023-01-31T10:00:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8ec64a74ddca83bcf3fb9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e89621282a2b1cf9b37b", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender VI", - "description": "Beat Art Gallery 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e6b821282a2b1cf99d72" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d8e8969e43fb0001915d29", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484069, - "createdAt": "2023-01-31T10:08:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e6b821282a2b1cf99d72", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e95121282a2b1cf9b7a2", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender VII", - "description": "Beat Art Gallery 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e89621282a2b1cf9b37b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d8e9519e43fb0001915d2a", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484070, - "createdAt": "2023-01-31T10:11:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e89621282a2b1cf9b37b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e9a721282a2b1cf9b7a3", - "namespace": "pd3", - "name": "Art Gallery Loud I: Repeat Offender VIII", - "description": "Beat Art Gallery 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e95121282a2b1cf9b7a2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d8e9a79e43fb0001915d2b", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484071, - "createdAt": "2023-01-31T10:12:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e95121282a2b1cf9b7a2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e865e28fe1154bf4b6fb7", - "namespace": "pd3", - "name": "Art Gallery Loud II", - "description": "Beat Art Gallery on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e865e30e7810001865456", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 11, - "createdAt": "2022-04-19T09:52:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8ecfaa74ddca83bcf3fbb", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender I", - "description": "Beat Art Gallery 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e865e28fe1154bf4b6fb7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62e8ecfa07a95c000190acba", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 211, - "createdAt": "2022-08-02T09:23:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e865e28fe1154bf4b6fb7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8ee0ea74ddca83bcf3fc1", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender II", - "description": "Beat Art Gallery 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8ecfaa74ddca83bcf3fbb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62e8ee0e07a95c000190acbd", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 212, - "createdAt": "2022-08-02T09:27:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8ecfaa74ddca83bcf3fbb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8f07ca74ddca83bcf3fcd", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender III", - "description": "Beat Art Gallery 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8ee0ea74ddca83bcf3fc1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62e8f07c07a95c000190acc3", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 213, - "createdAt": "2022-08-02T09:38:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8ee0ea74ddca83bcf3fc1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8f11ba74ddca83bcf3fce", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender IV", - "description": "Beat Art Gallery 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8f07ca74ddca83bcf3fcd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62e8f11b07a95c000190acc6", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 214, - "createdAt": "2022-08-02T09:40:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8f07ca74ddca83bcf3fcd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8eab621282a2b1cf9be97", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender V", - "description": "Beat Art Gallery 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8f11ba74ddca83bcf3fce" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d8eab69e43fb0001915d32", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484072, - "createdAt": "2023-01-31T10:17:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8f11ba74ddca83bcf3fce", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8eb0b21282a2b1cf9be98", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender VI", - "description": "Beat Art Gallery 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8eab621282a2b1cf9be97" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d8eb0b9e43fb0001915d33", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484073, - "createdAt": "2023-01-31T10:18:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8eab621282a2b1cf9be97", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8eb6721282a2b1cf9c230", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender VII", - "description": "Beat Art Gallery 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8eb0b21282a2b1cf9be98" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d8eb679e43fb0001915d34", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484074, - "createdAt": "2023-01-31T10:20:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8eb0b21282a2b1cf9be98", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8ebb121282a2b1cf9c458", - "namespace": "pd3", - "name": "Art Gallery Loud II: Repeat Offender VIII", - "description": "Beat Art Gallery 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8eb6721282a2b1cf9c230" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d8ebb19e43fb0001915d3a", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484075, - "createdAt": "2023-01-31T10:21:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8eb6721282a2b1cf9c230", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e86d728fe1154bf4b6fb8", - "namespace": "pd3", - "name": "Art Gallery Loud III", - "description": "Beat Art Gallery on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e86d730e7810001865457", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 12, - "createdAt": "2022-04-19T09:54:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8f276a74ddca83bcf3fd7", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender I", - "description": "Beat Art Gallery 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e86d728fe1154bf4b6fb8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62e8f27607a95c000190acca", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 215, - "createdAt": "2022-08-02T09:46:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e86d728fe1154bf4b6fb8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8f3f1a74ddca83bcf3fe1", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender II", - "description": "Beat Art Gallery 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8f276a74ddca83bcf3fd7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62e8f3f107a95c000190accd", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 216, - "createdAt": "2022-08-02T09:52:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8f276a74ddca83bcf3fd7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62e8f4c7a74ddca83bcf3fe2", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender III", - "description": "Beat Art Gallery 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8f3f1a74ddca83bcf3fe1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62e8f4c807a95c000190acd4", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 217, - "createdAt": "2022-08-02T09:56:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8f3f1a74ddca83bcf3fe1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea42eaa74ddca83bcf4219", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender IV", - "description": "Beat Art Gallery 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62e8f4c7a74ddca83bcf3fe2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62ea42ea07a95c000190afa6", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 218, - "createdAt": "2022-08-03T09:42:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62e8f4c7a74ddca83bcf3fe2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8f0c621282a2b1cf9d390", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender V", - "description": "Beat Art Gallery 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea42eaa74ddca83bcf4219" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d8f0c69e43fb0001915db3", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484076, - "createdAt": "2023-01-31T10:43:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea42eaa74ddca83bcf4219", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8f17121282a2b1cf9d4e4", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender VI", - "description": "Beat Art Gallery 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8f0c621282a2b1cf9d390" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d8f1719e43fb0001915dc7", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484077, - "createdAt": "2023-01-31T10:46:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8f0c621282a2b1cf9d390", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8f1ec21282a2b1cf9d63f", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender VII", - "description": "Beat Art Gallery 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8f17121282a2b1cf9d4e4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d8f1ec9e43fb0001915df8", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484078, - "createdAt": "2023-01-31T10:48:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8f17121282a2b1cf9d4e4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8f24221282a2b1cf9d640", - "namespace": "pd3", - "name": "Art Gallery Loud III: Repeat Offender VIII", - "description": "Beat Art Gallery 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8f1ec21282a2b1cf9d63f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d8f2429e43fb0001915dfe", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484079, - "createdAt": "2023-01-31T10:49:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8f1ec21282a2b1cf9d63f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e872828fe1154bf4b6fb9", - "namespace": "pd3", - "name": "Art Gallery Loud IV", - "description": "Beat Art Gallery on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e872830e7810001865458", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 13, - "createdAt": "2022-04-19T09:55:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea43baa74ddca83bcf421a", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender I", - "description": "Beat Art Gallery 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e872828fe1154bf4b6fb9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62ea43ba07a95c000190afa8", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 219, - "createdAt": "2022-08-03T09:45:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e872828fe1154bf4b6fb9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea445ca74ddca83bcf421b", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender II", - "description": "Beat Art Gallery 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea43baa74ddca83bcf421a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62ea445c07a95c000190afa9", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 220, - "createdAt": "2022-08-03T09:48:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea43baa74ddca83bcf421a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea450ba74ddca83bcf421c", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender III", - "description": "Beat Art Gallery 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea445ca74ddca83bcf421b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62ea450b07a95c000190afaa", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 221, - "createdAt": "2022-08-03T09:51:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea445ca74ddca83bcf421b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea457aa74ddca83bcf421d", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender IV", - "description": "Beat Art Gallery 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea450ba74ddca83bcf421c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62ea457a07a95c000190afac", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 222, - "createdAt": "2022-08-03T09:52:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea450ba74ddca83bcf421c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9166121282a2b1cfa534f", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender V", - "description": "Beat Art Gallery 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea457aa74ddca83bcf421d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d916619e43fb0001915e56", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484080, - "createdAt": "2023-01-31T13:23:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea457aa74ddca83bcf421d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9169f21282a2b1cfa5497", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender VI", - "description": "Beat Art Gallery 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9166121282a2b1cfa534f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d9169f9e43fb0001915e63", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484081, - "createdAt": "2023-01-31T13:24:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9166121282a2b1cfa534f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d916f021282a2b1cfa5574", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender VII", - "description": "Beat Art Gallery 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9169f21282a2b1cfa5497" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d916f09e43fb0001915e70", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484082, - "createdAt": "2023-01-31T13:26:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9169f21282a2b1cfa5497", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9173521282a2b1cfa59c3", - "namespace": "pd3", - "name": "Art Gallery Loud IV: Repeat Offender VIII", - "description": "Beat Art Gallery 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d916f021282a2b1cfa5574" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d917359e43fb0001915e71", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484083, - "createdAt": "2023-01-31T13:27:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d916f021282a2b1cfa5574", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee29128f18e8f291869c4b", - "namespace": "pd3", - "name": "Art Gallery Optional Objective I - Centrepiece", - "description": "Steal the centrepiece painting by Shanda Latrell in Art Gallery.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2912e2027d0001bf372d", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Art", - "Gallery", - "Optional" - ], - "orderNo": 2147484290, - "createdAt": "2023-02-16T13:01:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee29698f18e8f29186a16e", - "namespace": "pd3", - "name": "Art Gallery Optional Objective II - Client Requests", - "description": "Complete the heist by stealing the loot in all seven exhibition rooms.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2969e2027d0001bf379f", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Art", - "Gallery", - "Optional" - ], - "orderNo": 2147484291, - "createdAt": "2023-02-16T13:02:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e993728fe1154bf4b6fd4", - "namespace": "pd3", - "name": "Art Gallery Stealthy I", - "description": "Beat Art Gallery on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e993730e781000186545f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 14, - "createdAt": "2022-04-19T11:12:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea5819a74ddca83bcf4237", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender I", - "description": "Beat Art Gallery 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e993728fe1154bf4b6fd4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62ea581907a95c000190afc3", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 223, - "createdAt": "2022-08-03T11:12:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e993728fe1154bf4b6fd4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea58e8a74ddca83bcf4238", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender II", - "description": "Beat Art Gallery 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea5819a74ddca83bcf4237" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62ea58e807a95c000190afc7", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 224, - "createdAt": "2022-08-03T11:15:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea5819a74ddca83bcf4237", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea5bfaa74ddca83bcf4247", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender III", - "description": "Beat Art Gallery 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea58e8a74ddca83bcf4238" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62ea5bfa07a95c000190afcb", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 225, - "createdAt": "2022-08-03T11:28:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea58e8a74ddca83bcf4238", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea5d78a74ddca83bcf427e", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender IV", - "description": "Beat Art Gallery 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea5bfaa74ddca83bcf4247" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62ea5d7807a95c000190afd4", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 226, - "createdAt": "2022-08-03T11:35:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea5bfaa74ddca83bcf4247", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9181621282a2b1cfa5f6d", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender V", - "description": "Beat Art Gallery 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea5d78a74ddca83bcf427e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d918169e43fb0001915e75", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484084, - "createdAt": "2023-01-31T13:31:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea5d78a74ddca83bcf427e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9186821282a2b1cfa6122", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender VI", - "description": "Beat Art Gallery 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9181621282a2b1cfa5f6d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d918689e43fb0001915e88", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484085, - "createdAt": "2023-01-31T13:32:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9181621282a2b1cfa5f6d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d918b421282a2b1cfa61ff", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender VII", - "description": "Beat Art Gallery 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9186821282a2b1cfa6122" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d918b49e43fb0001915e95", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484086, - "createdAt": "2023-01-31T13:33:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9186821282a2b1cfa6122", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9190521282a2b1cfa65eb", - "namespace": "pd3", - "name": "Art Gallery Stealthy I: Repeat Offender VIII", - "description": "Beat Art Gallery 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d918b421282a2b1cfa61ff" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d919059e43fb0001915e98", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Art", - "Gallery" - ], - "orderNo": 2147484087, - "createdAt": "2023-01-31T13:35:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d918b421282a2b1cfa61ff", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e99a928fe1154bf4b6fd6", - "namespace": "pd3", - "name": "Art Gallery Stealthy II", - "description": "Beat Art Gallery on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e99a930e7810001865460", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 15, - "createdAt": "2022-04-19T11:14:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea5f3ba74ddca83bcf4283", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender I", - "description": "Beat Art Gallery 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e99a928fe1154bf4b6fd6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62ea5f3b07a95c000190afda", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 227, - "createdAt": "2022-08-03T11:42:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e99a928fe1154bf4b6fd6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea5fd3a74ddca83bcf4284", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender II", - "description": "Beat Art Gallery 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea5f3ba74ddca83bcf4283" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62ea5fd307a95c000190afde", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 228, - "createdAt": "2022-08-03T11:45:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea5f3ba74ddca83bcf4283", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea60e7a74ddca83bcf4285", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender III", - "description": "Beat Art Gallery 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea5fd3a74ddca83bcf4284" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62ea60e707a95c000190afe0", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 229, - "createdAt": "2022-08-03T11:49:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea5fd3a74ddca83bcf4284", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea6181a74ddca83bcf4286", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender IV", - "description": "Beat Art Gallery 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea60e7a74ddca83bcf4285" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62ea618107a95c000190afe1", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 230, - "createdAt": "2022-08-03T11:52:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea60e7a74ddca83bcf4285", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d91b6f21282a2b1cfa72d4", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender V", - "description": "Beat Art Gallery 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea6181a74ddca83bcf4286" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d91b6f9e43fb0001915e99", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484088, - "createdAt": "2023-01-31T13:45:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea6181a74ddca83bcf4286", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d91bbf21282a2b1cfa760d", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender VI", - "description": "Beat Art Gallery 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d91b6f21282a2b1cfa72d4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d91bbf9e43fb0001915e9c", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484089, - "createdAt": "2023-01-31T13:46:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d91b6f21282a2b1cfa72d4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d91bfa21282a2b1cfa7c85", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender VII", - "description": "Beat Art Gallery 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d91bbf21282a2b1cfa760d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d91bfa9e43fb0001915f01", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484090, - "createdAt": "2023-01-31T13:47:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d91bbf21282a2b1cfa760d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d91c4021282a2b1cfa7d60", - "namespace": "pd3", - "name": "Art Gallery Stealthy II: Repeat Offender VIII", - "description": "Beat Art Gallery 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d91bfa21282a2b1cfa7c85" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d91c409e43fb0001915f02", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484091, - "createdAt": "2023-01-31T13:48:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d91bfa21282a2b1cfa7c85", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e9a1b28fe1154bf4b6fd7", - "namespace": "pd3", - "name": "Art Gallery Stealthy III", - "description": "Beat Art Gallery on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e9a1b30e7810001865461", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 16, - "createdAt": "2022-04-19T11:16:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7817a74ddca83bcf4498", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender I", - "description": "Beat Art Gallery 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e9a1b28fe1154bf4b6fd7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62ea781707a95c000190b08b", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 231, - "createdAt": "2022-08-03T13:28:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e9a1b28fe1154bf4b6fd7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea78c1a74ddca83bcf4499", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender II", - "description": "Beat Art Gallery 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7817a74ddca83bcf4498" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62ea78c107a95c000190b08d", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 232, - "createdAt": "2022-08-03T13:31:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7817a74ddca83bcf4498", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea796da74ddca83bcf449a", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender III", - "description": "Beat Art Gallery 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea78c1a74ddca83bcf4499" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62ea796d07a95c000190b08f", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 233, - "createdAt": "2022-08-03T13:34:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea78c1a74ddca83bcf4499", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7be9a74ddca83bcf44bf", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender IV", - "description": "Beat Art Gallery 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea796da74ddca83bcf449a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62ea7be907a95c000190b097", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 234, - "createdAt": "2022-08-03T13:45:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea796da74ddca83bcf449a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d91fd421282a2b1cfa8a35", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender V", - "description": "Beat Art Gallery 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7be9a74ddca83bcf44bf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d91fd49e43fb0001915f72", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484092, - "createdAt": "2023-01-31T14:04:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7be9a74ddca83bcf44bf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9201721282a2b1cfa8aa3", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender VI", - "description": "Beat Art Gallery 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d91fd421282a2b1cfa8a35" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d920179e43fb0001915f7b", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484093, - "createdAt": "2023-01-31T14:05:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d91fd421282a2b1cfa8a35", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9207a21282a2b1cfa8f67", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender VII", - "description": "Beat Art Gallery 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9201721282a2b1cfa8aa3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d9207a9e43fb0001915ff2", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484094, - "createdAt": "2023-01-31T14:06:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9201721282a2b1cfa8aa3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d920ca21282a2b1cfa9055", - "namespace": "pd3", - "name": "Art Gallery Stealthy III: Repeat Offender VIII", - "description": "Beat Art Gallery 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9207a21282a2b1cfa8f67" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d920ca9e43fb0001915ff4", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Art", - "Gallery" - ], - "orderNo": 2147484095, - "createdAt": "2023-01-31T14:08:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9207a21282a2b1cfa8f67", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e9c5628fe1154bf4b6fe7", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV", - "description": "Beat Art Gallery on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e9c5630e7810001865463", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 17, - "createdAt": "2022-04-19T11:26:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7ddfa74ddca83bcf45a2", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender I", - "description": "Beat Art Gallery 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e9c5628fe1154bf4b6fe7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62ea7ddf07a95c000190b09f", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 235, - "createdAt": "2022-08-03T13:53:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e9c5628fe1154bf4b6fe7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7e94a74ddca83bcf45a3", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender II", - "description": "Beat Art Gallery 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7ddfa74ddca83bcf45a2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62ea7e9407a95c000190b0a0", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 236, - "createdAt": "2022-08-03T13:56:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7ddfa74ddca83bcf45a2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7f18a74ddca83bcf45a4", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender III", - "description": "Beat Art Gallery 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7e94a74ddca83bcf45a3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62ea7f1807a95c000190b0a1", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 237, - "createdAt": "2022-08-03T13:58:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7e94a74ddca83bcf45a3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ea7f97a74ddca83bcf45a5", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender IV", - "description": "Beat Art Gallery 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7f18a74ddca83bcf45a4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62ea7f9707a95c000190b0a2", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Art", - "Gallery", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 238, - "createdAt": "2022-08-03T14:00:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7f18a74ddca83bcf45a4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d925a021282a2b1cfa9935", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender V", - "description": "Beat Art Gallery 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ea7f97a74ddca83bcf45a5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d925a09e43fb000191601c", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484096, - "createdAt": "2023-01-31T14:28:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ea7f97a74ddca83bcf45a5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9260f21282a2b1cfa9a20", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender VI", - "description": "Beat Art Gallery 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d925a021282a2b1cfa9935" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d9260f9e43fb0001916023", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484097, - "createdAt": "2023-01-31T14:30:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d925a021282a2b1cfa9935", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9267421282a2b1cfa9b10", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender VII", - "description": "Beat Art Gallery 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9260f21282a2b1cfa9a20" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d926749e43fb0001916026", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484098, - "createdAt": "2023-01-31T14:32:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9260f21282a2b1cfa9a20", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d926b421282a2b1cfa9bea", - "namespace": "pd3", - "name": "Art Gallery Stealthy IV: Repeat Offender VIII", - "description": "Beat Art Gallery 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9267421282a2b1cfa9b10" - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d926b49e43fb0001916036", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Art", - "Gallery" - ], - "orderNo": 2147484099, - "createdAt": "2023-01-31T14:33:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9267421282a2b1cfa9b10", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc088328fe1154bf4c08fd", - "namespace": "pd3", - "name": "Art Gallery: Full Payout", - "description": "Escape with the maximum payout", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc088307a95c00019067ea", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Art", - "Gallery", - "Max", - "Heist" - ], - "orderNo": 173, - "createdAt": "2022-07-11T11:24:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc093428fe1154bf4c08fe", - "namespace": "pd3", - "name": "Art Gallery: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc093407a95c00019067ed", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Art", - "Gallery", - "No", - "Down", - "Heist" - ], - "orderNo": 174, - "createdAt": "2022-07-11T11:27:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "artgallery-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd9c97f0dd5f341f3a7fe", - "namespace": "pd3", - "name": "Autokill I", - "description": "Deploy a Sentry Turret.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-sentry-turret", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfd9c9c9460a0001ef6a56", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Sentry" - ], - "orderNo": 2147483755, - "createdAt": "2023-01-24T13:14:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-sentry-turret", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfda117f0dd5f341f3aa75", - "namespace": "pd3", - "name": "Autokill II", - "description": "Defeat 30 enemies with a Sentry Turret.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfd9c97f0dd5f341f3a7fe" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63cfda11c9460a0001ef6abb", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Sentry", - "Kill" - ], - "orderNo": 2147483756, - "createdAt": "2023-01-24T13:16:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfd9c97f0dd5f341f3a7fe", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfda517f0dd5f341f3aa76", - "namespace": "pd3", - "name": "Autokill III", - "description": "Defeat 70 enemies with a Sentry Turret.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfda117f0dd5f341f3aa75" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63cfda51c9460a0001ef6abc", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Sentry" - ], - "orderNo": 2147483757, - "createdAt": "2023-01-24T13:17:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfda117f0dd5f341f3aa75", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfda817f0dd5f341f3aac4", - "namespace": "pd3", - "name": "Autokill IV", - "description": "Defeat 120 enemies with a Sentry Turret.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfda517f0dd5f341f3aa76" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63cfda81c9460a0001ef6abd", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Sentry" - ], - "orderNo": 2147483758, - "createdAt": "2023-01-24T13:17:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfda517f0dd5f341f3aa76", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sentry-turret-kills", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ef9821282a2b1cd9d8b6", - "namespace": "pd3", - "name": "Bison I", - "description": "Defeat 50 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3ef98f885db000189fdce", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147483982, - "createdAt": "2023-01-27T15:36:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3efcd21282a2b1cd9d8b7", - "namespace": "pd3", - "name": "Bison II", - "description": "Defeat 100 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ef9821282a2b1cd9d8b6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3efcdf885db000189fdd4", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147483983, - "createdAt": "2023-01-27T15:37:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3ef9821282a2b1cd9d8b6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3efff21282a2b1cd9d9b2", - "namespace": "pd3", - "name": "Bison III", - "description": "Defeat 200 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3efcd21282a2b1cd9d8b7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3effff885db000189fdeb", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147483984, - "createdAt": "2023-01-27T15:38:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3efcd21282a2b1cd9d8b7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f03221282a2b1cd9d9b3", - "namespace": "pd3", - "name": "Bison IV", - "description": "Defeat 350 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3efff21282a2b1cd9d9b2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "63d3f032f885db000189fe02", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147483985, - "createdAt": "2023-01-27T15:39:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3efff21282a2b1cd9d9b2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50e6c7f4d322dc61d7564", - "namespace": "pd3", - "name": "Bison Master", - "description": "Complete a heist with all base mods unlocked for the Bison with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50e6cae93c90001c9902f", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "IL70", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484281, - "createdAt": "2023-02-09T15:17:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b5687f4d322dc619a2a8", - "namespace": "pd3", - "name": "Bison Rookie", - "description": "Complete a heist using the Bison with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b568ae93c90001c9737c", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "IL70", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484243, - "createdAt": "2023-02-08T14:44:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3c972640c786dc267b2b8", - "namespace": "pd3", - "name": "Bison Single Clip I", - "description": "With the Bison, defeat 2 enemies without reloading, 5 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63d3c972f885db000189e869", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill", - "No", - "Reload" - ], - "orderNo": 2147483932, - "createdAt": "2023-01-27T12:54:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3cad3640c786dc267b59c", - "namespace": "pd3", - "name": "Bison Single Clip II", - "description": "With the Bison, defeat 2 enemies without reloading, 15 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3c972640c786dc267b2b8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63d3cad3f885db000189e870", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill", - "No", - "Reload" - ], - "orderNo": 2147483933, - "createdAt": "2023-01-27T13:00:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3c972640c786dc267b2b8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3cb20640c786dc267b608", - "namespace": "pd3", - "name": "Bison Single Clip III", - "description": "With the Bison, defeat 2 enemies without reloading, 30 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3cad3640c786dc267b59c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d3cb20f885db000189e871", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill", - "No", - "Reload" - ], - "orderNo": 2147483934, - "createdAt": "2023-01-27T13:01:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3cad3640c786dc267b59c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3cb54640c786dc267b727", - "namespace": "pd3", - "name": "Bison Single Clip IV", - "description": "With the Bison, defeat 2 enemies without reloading, 50 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3cb20640c786dc267b608" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3cb54f885db000189e879", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill", - "No", - "Reload" - ], - "orderNo": 2147483935, - "createdAt": "2023-01-27T13:02:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3cb20640c786dc267b608", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3cbac640c786dc267bc63", - "namespace": "pd3", - "name": "Bison Single Clip V", - "description": "With the Bison, defeat 2 enemies without reloading, 75 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3cb54640c786dc267b727" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "value": 75 - } - ] - }, - "reward": { - "rewardId": "63d3cbacf885db000189e8de", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill", - "No", - "Reload" - ], - "orderNo": 2147483936, - "createdAt": "2023-01-27T13:03:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3cb54640c786dc267b727", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-noreload-kills", - "currentValue": 0, - "targetValue": 75 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f05e21282a2b1cd9db20", - "namespace": "pd3", - "name": "Bison V", - "description": "Defeat 500 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f03221282a2b1cd9d9b3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63d3f05ef885db000189fe1a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147483986, - "createdAt": "2023-01-27T15:40:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f03221282a2b1cd9d9b3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f3437f4d322dc61cb43a", - "namespace": "pd3", - "name": "Bison Veteran", - "description": "Complete a heist with four mod slots filled on the Bison with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f343ae93c90001c98af8", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "IL70", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484260, - "createdAt": "2023-02-09T13:21:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411da0283c1792981dd1fe3", - "namespace": "pd3", - "name": "Bison VI", - "description": "Defeat 750 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f05e21282a2b1cd9db20" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411da02e2027d0001c0f8be", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147484364, - "createdAt": "2023-03-15T14:45:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f05e21282a2b1cd9db20", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411da3f83c1792981dd2218", - "namespace": "pd3", - "name": "Bison VII", - "description": "Defeat 1000 enemies with the Bison", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411da0283c1792981dd1fe3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411da3fe2027d0001c0f8cb", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "IL70", - "Kill" - ], - "orderNo": 2147484365, - "createdAt": "2023-03-15T14:46:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411da0283c1792981dd1fe3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c82f6428fe1154bf4bfe57", - "namespace": "pd3", - "name": "Branch Bank Loud I", - "description": "Beat Branch Bank on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c82f6407a95c0001905d5d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 153, - "createdAt": "2022-07-08T13:21:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb7f61a74ddca83bcf49ad", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender I", - "description": "Beat Branch Bank 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c82f6428fe1154bf4bfe57" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62eb7f6107a95c000190b36b", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 239, - "createdAt": "2022-08-04T08:12:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c82f6428fe1154bf4bfe57", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8002a74ddca83bcf49b1", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender II", - "description": "Beat Branch Bank 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb7f61a74ddca83bcf49ad" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62eb800207a95c000190b370", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 240, - "createdAt": "2022-08-04T08:14:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb7f61a74ddca83bcf49ad", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb80f0a74ddca83bcf49b2", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender III", - "description": "Beat Branch Bank 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8002a74ddca83bcf49b1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62eb80f007a95c000190b371", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 241, - "createdAt": "2022-08-04T08:18:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8002a74ddca83bcf49b1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb81f1a74ddca83bcf49c6", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender IV", - "description": "Beat Branch Bank 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb80f0a74ddca83bcf49b2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62eb81f107a95c000190b37d", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 242, - "createdAt": "2022-08-04T08:23:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb80f0a74ddca83bcf49b2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78b2721282a2b1cefca85", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender V", - "description": "Beat Branch Bank 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb81f1a74ddca83bcf49c6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d78b279e43fb000190a0be", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484004, - "createdAt": "2023-01-30T09:17:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb81f1a74ddca83bcf49c6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78b8e21282a2b1cefd99e", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender VI", - "description": "Beat Branch Bank 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78b2721282a2b1cefca85" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d78b8e9e43fb000190a24f", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484005, - "createdAt": "2023-01-30T09:19:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78b2721282a2b1cefca85", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78bdc21282a2b1cefdbc1", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender VII", - "description": "Beat Branch Bank 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78b8e21282a2b1cefd99e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d78bdc9e43fb000190a253", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484006, - "createdAt": "2023-01-30T09:20:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78b8e21282a2b1cefd99e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78c5121282a2b1cefddec", - "namespace": "pd3", - "name": "Branch Bank Loud I: Repeat Offender VIII", - "description": "Beat Branch Bank 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78bdc21282a2b1cefdbc1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d78c519e43fb000190a254", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484007, - "createdAt": "2023-01-30T09:22:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78bdc21282a2b1cefdbc1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c8301228fe1154bf4bfe58", - "namespace": "pd3", - "name": "Branch Bank Loud II", - "description": "Beat Branch Bank on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c8301207a95c0001905d60", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 154, - "createdAt": "2022-07-08T13:24:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb847da74ddca83bcf49eb", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender I", - "description": "Beat Branch Bank 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c8301228fe1154bf4bfe58" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62eb847d07a95c000190b3b9", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 243, - "createdAt": "2022-08-04T08:34:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c8301228fe1154bf4bfe58", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb85b6a74ddca83bcf4a14", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender II", - "description": "Beat Branch Bank 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb847da74ddca83bcf49eb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62eb85b607a95c000190b3be", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 244, - "createdAt": "2022-08-04T08:39:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb847da74ddca83bcf49eb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb872aa74ddca83bcf4a3d", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender III", - "description": "Beat Branch Bank 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb85b6a74ddca83bcf4a14" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62eb872a07a95c000190b3db", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 245, - "createdAt": "2022-08-04T08:45:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb85b6a74ddca83bcf4a14", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8849a74ddca83bcf4a3e", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender IV", - "description": "Beat Branch Bank 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb872aa74ddca83bcf4a3d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62eb884907a95c000190b41d", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 246, - "createdAt": "2022-08-04T08:50:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb872aa74ddca83bcf4a3d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78d5821282a2b1cefe08a", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender V", - "description": "Beat Branch Bank 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8849a74ddca83bcf4a3e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d78d589e43fb000190a2b9", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484008, - "createdAt": "2023-01-30T09:26:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8849a74ddca83bcf4a3e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78d9121282a2b1cefef48", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender VI", - "description": "Beat Branch Bank 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78d5821282a2b1cefe08a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d78d919e43fb000190a3e6", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484009, - "createdAt": "2023-01-30T09:27:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78d5821282a2b1cefe08a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78dd821282a2b1ceff100", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender VII", - "description": "Beat Branch Bank 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78d9121282a2b1cefef48" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d78dd89e43fb000190a3e9", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484010, - "createdAt": "2023-01-30T09:28:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78d9121282a2b1cefef48", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d78e2721282a2b1ceff65c", - "namespace": "pd3", - "name": "Branch Bank Loud II: Repeat Offender VIII", - "description": "Beat Branch Bank 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d78dd821282a2b1ceff100" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d78e279e43fb000190a44e", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484011, - "createdAt": "2023-01-30T09:30:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78dd821282a2b1ceff100", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c830c028fe1154bf4bfe99", - "namespace": "pd3", - "name": "Branch Bank Loud III", - "description": "Beat Branch Bank on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c830c007a95c0001905d6f", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 155, - "createdAt": "2022-07-08T13:27:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb890ca74ddca83bcf4a3f", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender I", - "description": "Beat Branch Bank 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c830c028fe1154bf4bfe99" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62eb890c07a95c000190b41f", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 247, - "createdAt": "2022-08-04T08:53:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c830c028fe1154bf4bfe99", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8c11a74ddca83bcf4a5b", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender II", - "description": "Beat Branch Bank 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb890ca74ddca83bcf4a3f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62eb8c1107a95c000190b428", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 248, - "createdAt": "2022-08-04T09:06:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb890ca74ddca83bcf4a3f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8ce7a74ddca83bcf4a5d", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender III", - "description": "Beat Branch Bank 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8c11a74ddca83bcf4a5b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62eb8ce707a95c000190b42b", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 249, - "createdAt": "2022-08-04T09:09:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8c11a74ddca83bcf4a5b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8d61a74ddca83bcf4a67", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender IV", - "description": "Beat Branch Bank 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8ce7a74ddca83bcf4a5d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62eb8d6107a95c000190b42f", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 250, - "createdAt": "2022-08-04T09:12:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8ce7a74ddca83bcf4a5d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7903321282a2b1cf00cb2", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender V", - "description": "Beat Branch Bank 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8d61a74ddca83bcf4a67" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d790339e43fb000190a5e1", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484012, - "createdAt": "2023-01-30T09:38:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8d61a74ddca83bcf4a67", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7907821282a2b1cf01b13", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender VI", - "description": "Beat Branch Bank 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7903321282a2b1cf00cb2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d790789e43fb000190a772", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484013, - "createdAt": "2023-01-30T09:40:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7903321282a2b1cf00cb2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d790f821282a2b1cf01b81", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender VII", - "description": "Beat Branch Bank 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7907821282a2b1cf01b13" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d790f89e43fb000190a776", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484014, - "createdAt": "2023-01-30T09:42:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7907821282a2b1cf01b13", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7917421282a2b1cf01c6b", - "namespace": "pd3", - "name": "Branch Bank Loud III: Repeat Offender VIII", - "description": "Beat Branch Bank 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d790f821282a2b1cf01b81" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d791749e43fb000190a777", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484015, - "createdAt": "2023-01-30T09:44:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d790f821282a2b1cf01b81", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c8312628fe1154bf4bfe9a", - "namespace": "pd3", - "name": "Branch Bank Loud IV", - "description": "Beat Branch Bank on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c8312607a95c0001905d77", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 156, - "createdAt": "2022-07-08T13:29:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8e36a74ddca83bcf4a6f", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender I", - "description": "Beat Branch Bank 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c8312628fe1154bf4bfe9a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62eb8e3607a95c000190b435", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 251, - "createdAt": "2022-08-04T09:15:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c8312628fe1154bf4bfe9a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8ee7a74ddca83bcf4a70", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender II", - "description": "Beat Branch Bank 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8e36a74ddca83bcf4a6f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62eb8ee707a95c000190b436", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 252, - "createdAt": "2022-08-04T09:18:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8e36a74ddca83bcf4a6f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8f50a74ddca83bcf4a71", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender III", - "description": "Beat Branch Bank 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8ee7a74ddca83bcf4a70" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62eb8f5007a95c000190b439", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 253, - "createdAt": "2022-08-04T09:20:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8ee7a74ddca83bcf4a70", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62eb8fbba74ddca83bcf4a77", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender IV", - "description": "Beat Branch Bank 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8f50a74ddca83bcf4a71" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62eb8fbb07a95c000190b43b", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 254, - "createdAt": "2022-08-04T09:22:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8f50a74ddca83bcf4a71", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79a1a21282a2b1cf033b2", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender V", - "description": "Beat Branch Bank 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62eb8fbba74ddca83bcf4a77" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d79a1a9e43fb000190a8bc", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484016, - "createdAt": "2023-01-30T10:21:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62eb8fbba74ddca83bcf4a77", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79a6621282a2b1cf03594", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender VI", - "description": "Beat Branch Bank 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79a1a21282a2b1cf033b2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d79a669e43fb000190a8c5", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484017, - "createdAt": "2023-01-30T10:22:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79a1a21282a2b1cf033b2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79ad921282a2b1cf03ca5", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender VII", - "description": "Beat Branch Bank 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79a6621282a2b1cf03594" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d79ad99e43fb000190a936", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484018, - "createdAt": "2023-01-30T10:24:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79a6621282a2b1cf03594", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79b2f21282a2b1cf03e56", - "namespace": "pd3", - "name": "Branch Bank Loud IV: Repeat Offender VIII", - "description": "Beat Branch Bank 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79ad921282a2b1cf03ca5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d79b2f9e43fb000190a938", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484019, - "createdAt": "2023-01-30T10:25:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79ad921282a2b1cf03ca5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee1b778f18e8f2918651d4", - "namespace": "pd3", - "name": "Branch Bank Optional Objective II - Ahead of schedule", - "description": "Tie up the bank manager before the objective where you need him", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee1b77e2027d0001bf3531", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Branch", - "Bank", - "Optional" - ], - "orderNo": 2147484284, - "createdAt": "2023-02-16T12:03:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee1bc48f18e8f291865720", - "namespace": "pd3", - "name": "Branch Bank Optional Objective III - Quick Escape", - "description": "Flee before the blockers come up again", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee1bc4e2027d0001bf3535", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Branch", - "Bank", - "Optional" - ], - "orderNo": 2147484285, - "createdAt": "2023-02-16T12:04:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c833ea28fe1154bf4bfe9f", - "namespace": "pd3", - "name": "Branch Bank Stealthy I", - "description": "Beat Branch Bank on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c833ea07a95c0001905d7f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 157, - "createdAt": "2022-07-08T13:40:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed3486a74ddca83bcf565d", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender I", - "description": "Beat Branch Bank 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c833ea28fe1154bf4bfe9f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62ed348607a95c000190b992", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 255, - "createdAt": "2022-08-05T15:17:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c833ea28fe1154bf4bfe9f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed3532a74ddca83bcf565e", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender II", - "description": "Beat Branch Bank 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed3486a74ddca83bcf565d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62ed353207a95c000190b997", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 256, - "createdAt": "2022-08-05T15:20:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed3486a74ddca83bcf565d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed363ea74ddca83bcf565f", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender III", - "description": "Beat Branch Bank 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed3532a74ddca83bcf565e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62ed363e07a95c000190b998", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 257, - "createdAt": "2022-08-05T15:24:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed3532a74ddca83bcf565e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed3738a74ddca83bcf5666", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender IV", - "description": "Beat Branch Bank 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed363ea74ddca83bcf565f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62ed373807a95c000190b99b", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 258, - "createdAt": "2022-08-05T15:28:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed363ea74ddca83bcf565f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79bfa21282a2b1cf04076", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender V", - "description": "Beat Branch Bank 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed3738a74ddca83bcf5666" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d79bfa9e43fb000190a939", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484020, - "createdAt": "2023-01-30T10:29:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed3738a74ddca83bcf5666", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79c5c21282a2b1cf04378", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender VI", - "description": "Beat Branch Bank 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79bfa21282a2b1cf04076" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d79c5c9e43fb000190a93a", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484021, - "createdAt": "2023-01-30T10:30:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79bfa21282a2b1cf04076", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79cac21282a2b1cf044c9", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender VII", - "description": "Beat Branch Bank 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79c5c21282a2b1cf04378" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d79cac9e43fb000190a93b", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 2147484022, - "createdAt": "2023-01-30T10:32:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79c5c21282a2b1cf04378", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79cef21282a2b1cf04760", - "namespace": "pd3", - "name": "Branch Bank Stealthy I: Repeat Offender VIII", - "description": "Beat Branch Bank 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79cac21282a2b1cf044c9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d79cef9e43fb000190a93d", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Branch", - "Bank" - ], - "orderNo": 2147484023, - "createdAt": "2023-01-30T10:33:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79cac21282a2b1cf044c9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c834a728fe1154bf4bfea0", - "namespace": "pd3", - "name": "Branch Bank Stealthy II", - "description": "Beat Branch Bank on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c834a707a95c0001905d84", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 158, - "createdAt": "2022-07-08T13:44:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed3851a74ddca83bcf5673", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender I", - "description": "Beat Branch Bank 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c834a728fe1154bf4bfea0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62ed385107a95c000190b9a2", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 259, - "createdAt": "2022-08-05T15:33:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c834a728fe1154bf4bfea0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed38cca74ddca83bcf5674", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender II", - "description": "Beat Branch Bank 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed3851a74ddca83bcf5673" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62ed38cc07a95c000190b9a4", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 260, - "createdAt": "2022-08-05T15:35:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed3851a74ddca83bcf5673", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ed3ab0a74ddca83bcf5677", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender III", - "description": "Beat Branch Bank 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed38cca74ddca83bcf5674" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62ed3ab007a95c000190b9a8", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 261, - "createdAt": "2022-08-05T15:43:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed38cca74ddca83bcf5674", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f3a5a74ddca83bcf5b39", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender IV", - "description": "Beat Branch Bank 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ed3ab0a74ddca83bcf5677" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62f0f3a507a95c000190c196", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 262, - "createdAt": "2022-08-08T11:29:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ed3ab0a74ddca83bcf5677", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79eac21282a2b1cf051d7", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender V", - "description": "Beat Branch Bank 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f3a5a74ddca83bcf5b39" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d79eac9e43fb000190a951", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484024, - "createdAt": "2023-01-30T10:40:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f3a5a74ddca83bcf5b39", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79ef721282a2b1cf05360", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender VI", - "description": "Beat Branch Bank 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79eac21282a2b1cf051d7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d79ef79e43fb000190a952", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484025, - "createdAt": "2023-01-30T10:41:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79eac21282a2b1cf051d7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79f5e21282a2b1cf05515", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender VII", - "description": "Beat Branch Bank 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79ef721282a2b1cf05360" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d79f5e9e43fb000190a954", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484026, - "createdAt": "2023-01-30T10:43:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79ef721282a2b1cf05360", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d79fd721282a2b1cf0573d", - "namespace": "pd3", - "name": "Branch Bank Stealthy II: Repeat Offender VIII", - "description": "Beat Branch Bank 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d79f5e21282a2b1cf05515" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d79fd79e43fb000190a95a", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484027, - "createdAt": "2023-01-30T10:45:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d79f5e21282a2b1cf05515", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c8359728fe1154bf4bfeb3", - "namespace": "pd3", - "name": "Branch Bank Stealthy III", - "description": "Beat Branch Bank on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c8359707a95c0001905d8b", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 159, - "createdAt": "2022-07-08T13:48:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f449a74ddca83bcf5b3d", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender I", - "description": "Beat Branch Bank 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c8359728fe1154bf4bfeb3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62f0f44907a95c000190c19c", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 263, - "createdAt": "2022-08-08T11:32:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c8359728fe1154bf4bfeb3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f4fda74ddca83bcf5b49", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender II", - "description": "Beat Branch Bank 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f449a74ddca83bcf5b3d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f0f4fd07a95c000190c1a0", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 264, - "createdAt": "2022-08-08T11:35:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f449a74ddca83bcf5b3d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f5d4a74ddca83bcf5b53", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender III", - "description": "Beat Branch Bank 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f4fda74ddca83bcf5b49" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f0f5d407a95c000190c1a5", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 265, - "createdAt": "2022-08-08T11:39:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f4fda74ddca83bcf5b49", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f6c1a74ddca83bcf5b55", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender IV", - "description": "Beat Branch Bank 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f5d4a74ddca83bcf5b53" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62f0f6c107a95c000190c1ab", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 266, - "createdAt": "2022-08-08T11:42:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f5d4a74ddca83bcf5b53", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b3e821282a2b1cf11027", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender V", - "description": "Beat Branch Bank 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f6c1a74ddca83bcf5b55" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d7b3e89e43fb000190b863", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484028, - "createdAt": "2023-01-30T12:11:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f6c1a74ddca83bcf5b55", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b43421282a2b1cf11028", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender VI", - "description": "Beat Branch Bank 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b3e821282a2b1cf11027" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d7b4349e43fb000190b86a", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484029, - "createdAt": "2023-01-30T12:12:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b3e821282a2b1cf11027", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b48f21282a2b1cf11fcb", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender VII", - "description": "Beat Branch Bank 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b43421282a2b1cf11028" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d7b48f9e43fb000190b9fb", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484030, - "createdAt": "2023-01-30T12:14:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b43421282a2b1cf11028", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b50e21282a2b1cf121f3", - "namespace": "pd3", - "name": "Branch Bank Stealthy III: Repeat Offender VIII", - "description": "Beat Branch Bank 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b48f21282a2b1cf11fcb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d7b50e9e43fb000190b9fe", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Branch", - "Bank" - ], - "orderNo": 2147484031, - "createdAt": "2023-01-30T12:16:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b48f21282a2b1cf11fcb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c8361628fe1154bf4bfebb", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV", - "description": "Beat Branch Bank on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c8361607a95c0001905d8e", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 160, - "createdAt": "2022-07-08T13:50:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f7b9a74ddca83bcf5b56", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender I", - "description": "Beat Branch Bank 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c8361628fe1154bf4bfebb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62f0f7b907a95c000190c1ad", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 267, - "createdAt": "2022-08-08T11:47:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c8361628fe1154bf4bfebb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f8b0a74ddca83bcf5b61", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender II", - "description": "Beat Branch Bank 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f7b9a74ddca83bcf5b56" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62f0f8b007a95c000190c1b4", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 268, - "createdAt": "2022-08-08T11:51:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f7b9a74ddca83bcf5b56", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f947a74ddca83bcf5b69", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender III", - "description": "Beat Branch Bank 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f8b0a74ddca83bcf5b61" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f0f94707a95c000190c1b6", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 269, - "createdAt": "2022-08-08T11:53:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f8b0a74ddca83bcf5b61", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0f9c9a74ddca83bcf5b7a", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender IV", - "description": "Beat Branch Bank 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f947a74ddca83bcf5b69" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f0f9c907a95c000190c1b9", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Bank", - "Branch", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 270, - "createdAt": "2022-08-08T11:55:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f947a74ddca83bcf5b69", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b6c721282a2b1cf13b7e", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender V", - "description": "Beat Branch Bank 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0f9c9a74ddca83bcf5b7a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d7b6c79e43fb000190bbf3", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484032, - "createdAt": "2023-01-30T12:23:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f0f9c9a74ddca83bcf5b7a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b72f21282a2b1cf13c59", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender VI", - "description": "Beat Branch Bank 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b6c721282a2b1cf13b7e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d7b72f9e43fb000190bbf4", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484033, - "createdAt": "2023-01-30T12:25:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b6c721282a2b1cf13b7e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b77421282a2b1cf13cc6", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender VII", - "description": "Beat Branch Bank 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b72f21282a2b1cf13c59" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d7b7749e43fb000190bbf5", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484034, - "createdAt": "2023-01-30T12:26:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b72f21282a2b1cf13c59", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b7e521282a2b1cf13d33", - "namespace": "pd3", - "name": "Branch Bank Stealthy IV: Repeat Offender VIII", - "description": "Beat Branch Bank 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b77421282a2b1cf13cc6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d7b7e59e43fb000190bbf6", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Branch", - "Bank" - ], - "orderNo": 2147484035, - "createdAt": "2023-01-30T12:28:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b77421282a2b1cf13cc6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cbdf6728fe1154bf4c06ed", - "namespace": "pd3", - "name": "Branch Bank: Full Payout", - "description": "Escape with the maximum payout", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cbdf6707a95c000190676f", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Branch", - "Bank", - "Max", - "Heist" - ], - "orderNo": 169, - "createdAt": "2022-07-11T08:29:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cbe00d28fe1154bf4c06ee", - "namespace": "pd3", - "name": "Branch Bank: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cbe00e07a95c0001906772", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Branch", - "Bank", - "No", - "Down", - "Heist" - ], - "orderNo": 170, - "createdAt": "2022-07-11T08:32:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "branchbank-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceada17f0dd5f341f3053b", - "namespace": "pd3", - "name": "Break the Glass I", - "description": "Break 5 different display cases.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63ceada1c9460a0001ef590c", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Display" - ], - "orderNo": 2147483692, - "createdAt": "2023-01-23T15:54:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceaddb7f0dd5f341f30575", - "namespace": "pd3", - "name": "Break the Glass II", - "description": "Break 20 different display cases", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceada17f0dd5f341f3053b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63ceaddbc9460a0001ef590d", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Display" - ], - "orderNo": 2147483693, - "createdAt": "2023-01-23T15:55:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceada17f0dd5f341f3053b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceae377f0dd5f341f30576", - "namespace": "pd3", - "name": "Break the Glass III", - "description": "Break 100 different display cases.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceaddb7f0dd5f341f30575" - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63ceae37c9460a0001ef590f", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Display" - ], - "orderNo": 2147483694, - "createdAt": "2023-01-23T15:56:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceaddb7f0dd5f341f30575", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceae6a7f0dd5f341f30577", - "namespace": "pd3", - "name": "Break the Glass IV", - "description": "Break 250 different display cases.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceae377f0dd5f341f30576" - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ceae6ac9460a0001ef5910", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Display" - ], - "orderNo": 2147483695, - "createdAt": "2023-01-23T15:57:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceae377f0dd5f341f30576", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceaec37f0dd5f341f3062a", - "namespace": "pd3", - "name": "Break the Glass V", - "description": "Break 500 different display cases.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceae6a7f0dd5f341f30577" - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "63ceaec3c9460a0001ef5913", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Display" - ], - "orderNo": 2147483696, - "createdAt": "2023-01-23T15:58:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceae6a7f0dd5f341f30577", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "break-case", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d280e67f0dd5f341fc7677", - "namespace": "pd3", - "name": "CAR4 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the CAR4.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d280e60c06b20001e769fb", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "ADS", - "Kill" - ], - "orderNo": 2147483862, - "createdAt": "2023-01-26T13:32:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2812c7f0dd5f341fc7810", - "namespace": "pd3", - "name": "CAR4 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the CAR4.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d280e67f0dd5f341fc7677" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d2812c0c06b20001e769fe", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "ADS", - "Kill" - ], - "orderNo": 2147483863, - "createdAt": "2023-01-26T13:33:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d280e67f0dd5f341fc7677", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2816e7f0dd5f341fc794f", - "namespace": "pd3", - "name": "CAR4 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the CAR4.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2812c7f0dd5f341fc7810" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d2816e0c06b20001e76a06", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "ADS", - "Kill" - ], - "orderNo": 2147483864, - "createdAt": "2023-01-26T13:34:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2812c7f0dd5f341fc7810", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d281c37f0dd5f341fc7aeb", - "namespace": "pd3", - "name": "CAR4 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the CAR4.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2816e7f0dd5f341fc794f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d281c30c06b20001e76a07", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "ADS", - "Kill" - ], - "orderNo": 2147483865, - "createdAt": "2023-01-26T13:36:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2816e7f0dd5f341fc794f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d282157f0dd5f341fc8751", - "namespace": "pd3", - "name": "CAR4 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the CAR4.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d281c37f0dd5f341fc7aeb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d282150c06b20001e76b98", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "ADS", - "Kill" - ], - "orderNo": 2147483866, - "createdAt": "2023-01-26T13:37:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d281c37f0dd5f341fc7aeb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43b5e28fe1154bf4bdbfc", - "namespace": "pd3", - "name": "CAR4 I", - "description": "Defeat 50 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c43b5e07a95c00019047a3", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "CAR4" - ], - "orderNo": 81, - "createdAt": "2022-07-05T13:23:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43c0928fe1154bf4bdc50", - "namespace": "pd3", - "name": "CAR4 II", - "description": "Defeat 100 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43b5e28fe1154bf4bdbfc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c43c0907a95c00019047c3", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "CAR4" - ], - "orderNo": 82, - "createdAt": "2022-07-05T13:26:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43b5e28fe1154bf4bdbfc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43cc928fe1154bf4bdc5f", - "namespace": "pd3", - "name": "CAR4 III", - "description": "Defeat 200 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43c0928fe1154bf4bdc50" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c43cc907a95c00019047c6", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "CAR4" - ], - "orderNo": 83, - "createdAt": "2022-07-05T13:29:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43c0928fe1154bf4bdc50", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43da828fe1154bf4bdc6a", - "namespace": "pd3", - "name": "CAR4 IV", - "description": "Defeat 350 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43cc928fe1154bf4bdc5f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "62c43da807a95c00019047f9", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "CAR4" - ], - "orderNo": 84, - "createdAt": "2022-07-05T13:33:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43cc928fe1154bf4bdc5f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e509117f4d322dc61d4c23", - "namespace": "pd3", - "name": "CAR4 Master", - "description": "Complete a heist with all base mods unlocked for the CAR4 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50911ae93c90001c98f4d", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "CAR4" - ], - "orderNo": 2147484267, - "createdAt": "2023-02-09T14:54:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3af7e7f4d322dc6197d78", - "namespace": "pd3", - "name": "CAR4 Rookie", - "description": "Complete a heist using the CAR4 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3af7eae93c90001c9723b", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "CAR4", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484229, - "createdAt": "2023-02-08T14:19:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43e2828fe1154bf4bdc6b", - "namespace": "pd3", - "name": "CAR4 V", - "description": "Defeat 500 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43da828fe1154bf4bdc6a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c43e2807a95c0001904819", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "CAR4" - ], - "orderNo": 85, - "createdAt": "2022-07-05T13:35:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43da828fe1154bf4bdc6a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3d0627f4d322dc61a08b1", - "namespace": "pd3", - "name": "CAR4 Veteran", - "description": "Complete a heist with four mod slots filled on the CAR4 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3d062ae93c90001c9761e", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "CAR4", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484246, - "createdAt": "2023-02-08T16:40:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411bcd083c1792981db16f4", - "namespace": "pd3", - "name": "CAR4 VI", - "description": "Defeat 750 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43e2828fe1154bf4bdc6b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411bcd0e2027d0001c0f078", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "Kill" - ], - "orderNo": 2147484336, - "createdAt": "2023-03-15T12:40:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43e2828fe1154bf4bdc6b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411bd1883c1792981db20a8", - "namespace": "pd3", - "name": "CAR4 VII", - "description": "Defeat 1000 enemies with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411bcd083c1792981db16f4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411bd18e2027d0001c0f0d8", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "CAR4", - "Kill" - ], - "orderNo": 2147484337, - "createdAt": "2023-03-15T12:42:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411bcd083c1792981db16f4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6376442829040c967e3e55f2", - "namespace": "pd3", - "name": "Cargo Dock Loud I", - "description": "Beat Cargo Dock on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63764428e23efe0001fd24cf", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 381, - "createdAt": "2022-11-17T14:24:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cdae12bae6007875d0e37", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender I", - "description": "Beat Cargo Dock 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6376442829040c967e3e55f2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "637cdae1e23efe0001fd4e22", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 421, - "createdAt": "2022-11-22T14:21:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6376442829040c967e3e55f2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cdb6e2bae6007875d1014", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender II", - "description": "Beat Cargo Dock 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cdae12bae6007875d0e37" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "637cdb6ee23efe0001fd4e23", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 422, - "createdAt": "2022-11-22T14:23:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cdae12bae6007875d0e37", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637ce87e2bae6007875d2940", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender III", - "description": "Beat Cargo Dock 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cdb6e2bae6007875d1014" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "637ce87ee23efe0001fd4eef", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 423, - "createdAt": "2022-11-22T15:19:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cdb6e2bae6007875d1014", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637ce8fe2bae6007875d2a2d", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender IV", - "description": "Beat Cargo Dock 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637ce87e2bae6007875d2940" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "637ce8fee23efe0001fd4ef0", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Normal" - ], - "orderNo": 424, - "createdAt": "2022-11-22T15:21:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637ce87e2bae6007875d2940", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7d3521282a2b1c0166b9", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender V", - "description": "Beat Cargo Dock 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637ce8fe2bae6007875d2a2d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da7d359e43fb0001917344", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484164, - "createdAt": "2023-02-01T14:54:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637ce8fe2bae6007875d2a2d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7d6f21282a2b1c016798", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender VI", - "description": "Beat Cargo Dock 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7d3521282a2b1c0166b9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da7d6f9e43fb0001917347", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484165, - "createdAt": "2023-02-01T14:55:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da7d3521282a2b1c0166b9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7dd321282a2b1c0168e9", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender VII", - "description": "Beat Cargo Dock 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7d6f21282a2b1c016798" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63da7dd39e43fb00019173ae", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484166, - "createdAt": "2023-02-01T14:57:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da7d6f21282a2b1c016798", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7e1c21282a2b1c0168ea", - "namespace": "pd3", - "name": "Cargo Dock Loud I: Repeat Offender VIII", - "description": "Beat Cargo Dock 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7dd321282a2b1c0168e9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63da7e1c9e43fb00019173af", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484167, - "createdAt": "2023-02-01T14:58:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da7dd321282a2b1c0168e9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63774a3829040c967e3f0ccc", - "namespace": "pd3", - "name": "Cargo Dock Loud II", - "description": "Beat Cargo Dock on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63774a38e23efe0001fd2b8b", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 382, - "createdAt": "2022-11-18T09:02:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cf7e52bae6007875d420a", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender I", - "description": "Beat Cargo Dock 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63774a3829040c967e3f0ccc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "637cf7e5e23efe0001fd4f32", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 425, - "createdAt": "2022-11-22T16:25:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63774a3829040c967e3f0ccc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cf89c2bae6007875d423a", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender II", - "description": "Beat Cargo Dock 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cf7e52bae6007875d420a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "637cf89ce23efe0001fd4f33", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 426, - "createdAt": "2022-11-22T16:28:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cf7e52bae6007875d420a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cf9292bae6007875d432b", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender III", - "description": "Beat Cargo Dock 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cf89c2bae6007875d423a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "637cf929e23efe0001fd4f34", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 427, - "createdAt": "2022-11-22T16:30:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cf89c2bae6007875d423a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cf9a62bae6007875d435b", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender IV", - "description": "Beat Cargo Dock 60 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cf9292bae6007875d432b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "637cf9a6e23efe0001fd4f35", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Loud", - "Map" - ], - "orderNo": 428, - "createdAt": "2022-11-22T16:32:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cf9292bae6007875d432b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da814f21282a2b1c0181ab", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender V", - "description": "Beat Cargo Dock 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cf9a62bae6007875d435b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63da814f9e43fb00019173da", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484168, - "createdAt": "2023-02-01T15:12:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cf9a62bae6007875d435b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da818d21282a2b1c018c04", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender VI", - "description": "Beat Cargo Dock 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da814f21282a2b1c0181ab" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63da818d9e43fb00019173db", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484169, - "createdAt": "2023-02-01T15:13:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da814f21282a2b1c0181ab", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da81e321282a2b1c018c05", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender VII", - "description": "Beat Cargo Dock 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da818d21282a2b1c018c04" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63da81e39e43fb00019173dc", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484170, - "createdAt": "2023-02-01T15:14:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da818d21282a2b1c018c04", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da822a21282a2b1c018c06", - "namespace": "pd3", - "name": "Cargo Dock Loud II: Repeat Offender VIII", - "description": "Beat Cargo Dock 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da81e321282a2b1c018c05" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da822a9e43fb00019173dd", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484171, - "createdAt": "2023-02-01T15:15:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da81e321282a2b1c018c05", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63774b8529040c967e3f0fe1", - "namespace": "pd3", - "name": "Cargo Dock Loud III", - "description": "Beat Cargo Dock on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63774b85e23efe0001fd2bc3", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 383, - "createdAt": "2022-11-18T09:08:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cfdbd2bae6007875d4913", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender I", - "description": "Beat Cargo Dock 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63774b8529040c967e3f0fe1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "637cfdbee23efe0001fd4f61", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 429, - "createdAt": "2022-11-22T16:50:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63774b8529040c967e3f0fe1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cfe672bae6007875d49d0", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender II", - "description": "Beat Cargo Dock 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cfdbd2bae6007875d4913" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "637cfe67e23efe0001fd4f62", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 430, - "createdAt": "2022-11-22T16:52:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cfdbd2bae6007875d4913", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cfef62bae6007875d4a35", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender III", - "description": "Beat Cargo Dock 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cfe672bae6007875d49d0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "637cfef6e23efe0001fd4f63", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 431, - "createdAt": "2022-11-22T16:55:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cfe672bae6007875d49d0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637cff752bae6007875d4ac5", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender IV", - "description": "Beat Cargo Dock 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cfef62bae6007875d4a35" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "637cff75e23efe0001fd4f76", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Loud", - "Map", - "Very" - ], - "orderNo": 432, - "createdAt": "2022-11-22T16:57:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cfef62bae6007875d4a35", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da82db21282a2b1c0195e9", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender V", - "description": "Beat Cargo Dock 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "637cff752bae6007875d4ac5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63da82db9e43fb0001917444", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484172, - "createdAt": "2023-02-01T15:18:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "637cff752bae6007875d4ac5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da834821282a2b1c019e72", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender VI", - "description": "Beat Cargo Dock 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da82db21282a2b1c0195e9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63da83489e43fb0001917445", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484173, - "createdAt": "2023-02-01T15:20:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da82db21282a2b1c0195e9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da837a21282a2b1c019f51", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender VII", - "description": "Beat Cargo Dock 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da834821282a2b1c019e72" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63da837a9e43fb0001917446", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484174, - "createdAt": "2023-02-01T15:21:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da834821282a2b1c019e72", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da83bb21282a2b1c01a396", - "namespace": "pd3", - "name": "Cargo Dock Loud III: Repeat Offender VIII", - "description": "Beat Cargo Dock 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da837a21282a2b1c019f51" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da83bb9e43fb0001917447", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484175, - "createdAt": "2023-02-01T15:22:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da837a21282a2b1c019f51", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63774c1429040c967e3f10f7", - "namespace": "pd3", - "name": "Cargo Dock Loud IV", - "description": "Beat Cargo Dock on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63774c14e23efe0001fd2be2", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 384, - "createdAt": "2022-11-18T09:10:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63861ae52bae600787661fd6", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender I", - "description": "Beat Cargo Dock 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63774c1429040c967e3f10f7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "63861ae59200120001e31846", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 433, - "createdAt": "2022-11-29T14:44:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63774c1429040c967e3f10f7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63861b5e2bae6007876620c2", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender II", - "description": "Beat Cargo Dock 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63861ae52bae600787661fd6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "63861b5e9200120001e31849", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 434, - "createdAt": "2022-11-29T14:46:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63861ae52bae600787661fd6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63861d1e2bae6007876627d8", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender III", - "description": "Beat Cargo Dock 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63861b5e2bae6007876620c2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63861d1e9200120001e318c7", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 435, - "createdAt": "2022-11-29T14:54:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63861b5e2bae6007876620c2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63861d922bae60078766283b", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender IV", - "description": "Beat Cargo Dock 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63861d1e2bae6007876627d8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63861d929200120001e318c8", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Loud", - "Map", - "Overkill" - ], - "orderNo": 436, - "createdAt": "2022-11-29T14:56:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63861d1e2bae6007876627d8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da850e21282a2b1c01a9e5", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender V", - "description": "Beat Cargo Dock 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63861d922bae60078766283b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63da850e9e43fb0001917448", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484176, - "createdAt": "2023-02-01T15:28:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63861d922bae60078766283b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da854a21282a2b1c01ab34", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender VI", - "description": "Beat Cargo Dock 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da850e21282a2b1c01a9e5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63da854a9e43fb0001917449", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484177, - "createdAt": "2023-02-01T15:29:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da850e21282a2b1c01a9e5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da859e21282a2b1c01adc7", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender VII", - "description": "Beat Cargo Dock 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da854a21282a2b1c01ab34" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63da859e9e43fb000191744a", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484178, - "createdAt": "2023-02-01T15:30:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da854a21282a2b1c01ab34", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da861821282a2b1c01b21b", - "namespace": "pd3", - "name": "Cargo Dock Loud IV: Repeat Offender VIII", - "description": "Beat Cargo Dock 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da859e21282a2b1c01adc7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63da86189e43fb000191744b", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484179, - "createdAt": "2023-02-01T15:32:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da859e21282a2b1c01adc7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2b428f18e8f29186a988", - "namespace": "pd3", - "name": "Cargo Dock Optional Objective I - Tacti-cool", - "description": "Secure both hi-tech devices at their maximum value by making sure their temprature doesnt drop too much while securing them", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2b42e2027d0001bf383b", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Cargo", - "Dock", - "Optional" - ], - "orderNo": 2147484296, - "createdAt": "2023-02-16T13:10:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2bdb8f18e8f29186aa70", - "namespace": "pd3", - "name": "Cargo Dock Optional Objective III - Speed run", - "description": "Complete the heist in under 12 minutes", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2bdbe2027d0001bf383d", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Cargo", - "Dock", - "Optional" - ], - "orderNo": 2147484298, - "createdAt": "2023-02-16T13:12:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2c1c8f18e8f29186ab68", - "namespace": "pd3", - "name": "Cargo Dock Optional Objective V - Ghost", - "description": "Complete stealth without killing any guards or taking down the security camera operator on Overkill", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-5", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2c1ce2027d0001bf383e", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Cargo", - "Dock", - "Optional" - ], - "orderNo": 2147484299, - "createdAt": "2023-02-16T13:14:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-optional-objective-5", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63774e4129040c967e3f123d", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I", - "description": "Beat Cargo Dock on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63774e41e23efe0001fd2be5", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 385, - "createdAt": "2022-11-18T09:20:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63861f702bae600787662a59", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender I", - "description": "Beat Cargo Dock 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63774e4129040c967e3f123d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63861f709200120001e318ca", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 437, - "createdAt": "2022-11-29T15:04:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63774e4129040c967e3f123d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6386204e2bae600787662d78", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender II", - "description": "Beat Cargo Dock 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63861f702bae600787662a59" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "6386204e9200120001e319ca", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 438, - "createdAt": "2022-11-29T15:07:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63861f702bae600787662a59", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6386211a2bae600787662e73", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender III", - "description": "Beat Cargo Dock 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6386204e2bae600787662d78" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "6386211a9200120001e319ce", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 439, - "createdAt": "2022-11-29T15:11:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6386204e2bae600787662d78", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638621aa2bae600787663167", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender IV", - "description": "Beat Cargo Dock 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6386211a2bae600787662e73" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "638621aa9200120001e319fa", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 440, - "createdAt": "2022-11-29T15:13:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6386211a2bae600787662e73", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da86d321282a2b1c01b825", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender V", - "description": "Beat Cargo Dock 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638621aa2bae600787663167" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da86d39e43fb000191744e", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484180, - "createdAt": "2023-02-01T15:35:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638621aa2bae600787663167", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da870e21282a2b1c01b826", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender VI", - "description": "Beat Cargo Dock 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da86d321282a2b1c01b825" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da870e9e43fb000191744f", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484181, - "createdAt": "2023-02-01T15:36:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da86d321282a2b1c01b825", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da876821282a2b1c01bd49", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender VII", - "description": "Beat Cargo Dock 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da870e21282a2b1c01b826" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63da87689e43fb0001917450", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484182, - "createdAt": "2023-02-01T15:38:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da870e21282a2b1c01b826", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da87a421282a2b1c01be31", - "namespace": "pd3", - "name": "Cargo Dock Stealthy I: Repeat Offender VIII", - "description": "Beat Cargo Dock 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da876821282a2b1c01bd49" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63da87a49e43fb0001917453", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Cargo", - "Dock" - ], - "orderNo": 2147484183, - "createdAt": "2023-02-01T15:39:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da876821282a2b1c01bd49", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63775e0829040c967e3f2c15", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II", - "description": "Beat Cargo Dock on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63775e08e23efe0001fd2db9", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 386, - "createdAt": "2022-11-18T10:27:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638624422bae6007876638c1", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender I", - "description": "Beat Cargo Dock 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63775e0829040c967e3f2c15" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "638624429200120001e31a65", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 441, - "createdAt": "2022-11-29T15:24:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63775e0829040c967e3f2c15", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638720e62bae600787673414", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender II", - "description": "Beat Cargo Dock 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638624422bae6007876638c1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "638720e6d9135d000161c965", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 442, - "createdAt": "2022-11-30T09:22:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638624422bae6007876638c1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638721a12bae6007876735da", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender III", - "description": "Beat Cargo Dock 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638720e62bae600787673414" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "638721a1d9135d000161c972", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 443, - "createdAt": "2022-11-30T09:25:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638720e62bae600787673414", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638722612bae60078767392e", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender IV", - "description": "Beat Cargo Dock 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638721a12bae6007876735da" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63872261d9135d000161c9a0", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Map", - "Stealth" - ], - "orderNo": 444, - "createdAt": "2022-11-30T09:29:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638721a12bae6007876735da", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da881621282a2b1c01c27c", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender V", - "description": "Beat Cargo Dock 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638722612bae60078767392e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63da88169e43fb0001917454", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484184, - "createdAt": "2023-02-01T15:41:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638722612bae60078767392e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da888521282a2b1c01c5e2", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender VI", - "description": "Beat Cargo Dock 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da881621282a2b1c01c27c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63da88859e43fb0001917455", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484185, - "createdAt": "2023-02-01T15:43:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da881621282a2b1c01c27c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da88f421282a2b1c01cb28", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender VII", - "description": "Beat Cargo Dock 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da888521282a2b1c01c5e2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63da88f49e43fb0001917456", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484186, - "createdAt": "2023-02-01T15:44:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da888521282a2b1c01c5e2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da895321282a2b1c01cf72", - "namespace": "pd3", - "name": "Cargo Dock Stealthy II: Repeat Offender VIII", - "description": "Beat Cargo Dock 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da88f421282a2b1c01cb28" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da89539e43fb0001917459", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484187, - "createdAt": "2023-02-01T15:46:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da88f421282a2b1c01cb28", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63775e9329040c967e3f2ca0", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III", - "description": "Beat Cargo Dock on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63775e93e23efe0001fd2dba", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 387, - "createdAt": "2022-11-18T10:29:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638722c42bae60078767398e", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender I", - "description": "Beat Cargo Dock 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63775e9329040c967e3f2ca0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "638722c4d9135d000161c9aa", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 445, - "createdAt": "2022-11-30T09:30:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63775e9329040c967e3f2ca0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638724db2bae600787673f2e", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender II", - "description": "Beat Cargo Dock 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638722c42bae60078767398e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "638724dbd9135d000161c9b4", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 446, - "createdAt": "2022-11-30T09:39:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638722c42bae60078767398e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6387255a2bae60078767405d", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender III", - "description": "Beat Cargo Dock 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638724db2bae600787673f2e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "6387255ad9135d000161c9b5", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 447, - "createdAt": "2022-11-30T09:41:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638724db2bae600787673f2e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638727c52bae600787674153", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender IV", - "description": "Beat Cargo Dock 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6387255a2bae60078767405d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "638727c5d9135d000161c9e2", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Hard", - "Heist", - "Map", - "Stealth", - "Very" - ], - "orderNo": 448, - "createdAt": "2022-11-30T09:52:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6387255a2bae60078767405d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8a1a21282a2b1c01dd8f", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender V", - "description": "Beat Cargo Dock 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638727c52bae600787674153" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63da8a1a9e43fb0001917460", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484188, - "createdAt": "2023-02-01T15:49:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638727c52bae600787674153", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8a5b21282a2b1c01dd90", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender VI", - "description": "Beat Cargo Dock 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8a1a21282a2b1c01dd8f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63da8a5b9e43fb0001917461", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484189, - "createdAt": "2023-02-01T15:50:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8a1a21282a2b1c01dd8f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8a9d21282a2b1c01de93", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender VII", - "description": "Beat Cargo Dock 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8a5b21282a2b1c01dd90" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63da8a9d9e43fb0001917462", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484190, - "createdAt": "2023-02-01T15:51:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8a5b21282a2b1c01dd90", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8ae821282a2b1c01e2e7", - "namespace": "pd3", - "name": "Cargo Dock Stealthy III: Repeat Offender VIII", - "description": "Beat Cargo Dock 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8a9d21282a2b1c01de93" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da8ae89e43fb0001917464", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Cargo", - "Dock" - ], - "orderNo": 2147484191, - "createdAt": "2023-02-01T15:53:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8a9d21282a2b1c01de93", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63775f7629040c967e3f2db8", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV", - "description": "Beat Cargo Dock on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63775f76e23efe0001fd2dbb", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 388, - "createdAt": "2022-11-18T10:33:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638728272bae600787674154", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender I", - "description": "Beat Cargo Dock 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63775f7629040c967e3f2db8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "63872827d9135d000161c9e3", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 449, - "createdAt": "2022-11-30T09:53:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63775f7629040c967e3f2db8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638728c92bae6007876742b5", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender II", - "description": "Beat Cargo Dock 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638728272bae600787674154" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "638728c9d9135d000161c9e4", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 450, - "createdAt": "2022-11-30T09:56:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638728272bae600787674154", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6387295d2bae60078767431c", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender III", - "description": "Beat Cargo Dock 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638728c92bae6007876742b5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "6387295dd9135d000161c9e7", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 451, - "createdAt": "2022-11-30T09:58:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638728c92bae6007876742b5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638729eb2bae600787674656", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender IV", - "description": "Beat Cargo Dock 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6387295d2bae60078767431c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "638729ebd9135d000161ca15", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Cargo", - "Dock", - "Heist", - "Map", - "Overkill", - "Stealth" - ], - "orderNo": 452, - "createdAt": "2022-11-30T10:01:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6387295d2bae60078767431c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8b4921282a2b1c01e2e8", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender V", - "description": "Beat Cargo Dock 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638729eb2bae600787674656" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63da8b499e43fb00019174c9", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484192, - "createdAt": "2023-02-01T15:54:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638729eb2bae600787674656", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8b9d21282a2b1c01e651", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender VI", - "description": "Beat Cargo Dock 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8b4921282a2b1c01e2e8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63da8b9d9e43fb00019174cd", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484193, - "createdAt": "2023-02-01T15:56:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8b4921282a2b1c01e2e8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8bf921282a2b1c01e88e", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender VII", - "description": "Beat Cargo Dock 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8b9d21282a2b1c01e651" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63da8bf99e43fb00019174d1", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484194, - "createdAt": "2023-02-01T15:57:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8b9d21282a2b1c01e651", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8c2e21282a2b1c01ebfd", - "namespace": "pd3", - "name": "Cargo Dock Stealthy IV: Repeat Offender VIII", - "description": "Beat Cargo Dock 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8bf921282a2b1c01e88e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63da8c2e9e43fb00019174d2", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Cargo", - "Dock" - ], - "orderNo": 2147484195, - "createdAt": "2023-02-01T15:58:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8bf921282a2b1c01e88e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6377603529040c967e3f2e77", - "namespace": "pd3", - "name": "Cargo Dock: Full Payout", - "description": "Escape with the maximum amount of bags", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63776035e23efe0001fd2dbc", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Cargo", - "Dock", - "Max" - ], - "orderNo": 389, - "createdAt": "2022-11-18T10:36:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "637761b929040c967e3f2ffb", - "namespace": "pd3", - "name": "Cargo Dock: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "637761b9e23efe0001fd2dbd", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Cargo", - "Dock", - "No", - "Down" - ], - "orderNo": 390, - "createdAt": "2022-11-18T10:43:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cargodock-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d2bc640c786dc267e965", - "namespace": "pd3", - "name": "Castigo44 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d3d2bcf885db000189eaa9", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147483937, - "createdAt": "2023-01-27T13:33:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d2fd640c786dc267e966", - "namespace": "pd3", - "name": "Castigo44 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d2bc640c786dc267e965" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3d2fdf885db000189eaaa", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147483938, - "createdAt": "2023-01-27T13:34:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d2bc640c786dc267e965", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d354640c786dc267eb7e", - "namespace": "pd3", - "name": "Castigo44 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d2fd640c786dc267e966" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3d354f885db000189eaab", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147483939, - "createdAt": "2023-01-27T13:36:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d2fd640c786dc267e966", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d396640c786dc267eccf", - "namespace": "pd3", - "name": "Castigo44 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d354640c786dc267eb7e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3d396f885db000189eaac", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147483940, - "createdAt": "2023-01-27T13:37:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d354640c786dc267eb7e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d3d3640c786dc267ecd0", - "namespace": "pd3", - "name": "Castigo44 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d396640c786dc267eccf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d3d3d3f885db000189eaad", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147483941, - "createdAt": "2023-01-27T13:38:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d396640c786dc267eccf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c56f2e28fe1154bf4be5f6", - "namespace": "pd3", - "name": "Castigo44 I", - "description": "Defeat 50 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c56f2e07a95c0001904db7", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 111, - "createdAt": "2022-07-06T11:17:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c56fac28fe1154bf4be5f7", - "namespace": "pd3", - "name": "Castigo44 II", - "description": "Defeat 100 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c56f2e28fe1154bf4be5f6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c56fac07a95c0001904db9", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 112, - "createdAt": "2022-07-06T11:19:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c56f2e28fe1154bf4be5f6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5706a28fe1154bf4be5f8", - "namespace": "pd3", - "name": "Castigo44 III", - "description": "Defeat 200 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c56fac28fe1154bf4be5f7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c5706a07a95c0001904dba", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 113, - "createdAt": "2022-07-06T11:22:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c56fac28fe1154bf4be5f7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c570b828fe1154bf4be5f9", - "namespace": "pd3", - "name": "Castigo44 IV", - "description": "Defeat 350 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5706a28fe1154bf4be5f8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "62c570b807a95c0001904dbf", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 114, - "createdAt": "2022-07-06T11:23:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5706a28fe1154bf4be5f8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50ea17f4d322dc61d7728", - "namespace": "pd3", - "name": "Castigo44 Master", - "description": "Complete a heist with all base mods unlocked for the Castigo44 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50ea1ae93c90001c99030", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "IL10", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484282, - "createdAt": "2023-02-09T15:17:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b5ac7f4d322dc619a2a9", - "namespace": "pd3", - "name": "Castigo44 Rookie", - "description": "Complete a heist using the Castigo44 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b5acae93c90001c97380", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "IL10", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484244, - "createdAt": "2023-02-08T14:46:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5719528fe1154bf4be616", - "namespace": "pd3", - "name": "Castigo44 V", - "description": "Defeat 500 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c570b828fe1154bf4be5f9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c5719507a95c0001904dc4", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 115, - "createdAt": "2022-07-06T11:27:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c570b828fe1154bf4be5f9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f38a7f4d322dc61cb6e9", - "namespace": "pd3", - "name": "Castigo44 Veteran", - "description": "Complete a heist with four mod slots filled on the Castigo44 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f38aae93c90001c98b05", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "IL10", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484261, - "createdAt": "2023-02-09T13:22:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411db7583c1792981dd3f5d", - "namespace": "pd3", - "name": "Castigo44 VI", - "description": "Defeat 750 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5719528fe1154bf4be616" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411db75e2027d0001c0f93b", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147484366, - "createdAt": "2023-03-15T14:51:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5719528fe1154bf4be616", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411dbb983c1792981dd4668", - "namespace": "pd3", - "name": "Castigo44 VII", - "description": "Defeat 1000 enemies with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411db7583c1792981dd3f5d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411dbb9e2027d0001c0f93c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "IL10", - "Kill" - ], - "orderNo": 2147484367, - "createdAt": "2023-03-15T14:52:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411db7583c1792981dd3f5d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d292597f0dd5f341fcf0bb", - "namespace": "pd3", - "name": "Commando Hip Fire I", - "description": "Defeat 20 enemies while firing from the hip with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d292590c06b20001e775ba", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Hip", - "IL29", - "Kill" - ], - "orderNo": 2147483877, - "createdAt": "2023-01-26T14:46:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d292917f0dd5f341fcf123", - "namespace": "pd3", - "name": "Commando Hip Fire II", - "description": "Defeat 50 enemies while firing from the hip with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d292597f0dd5f341fcf0bb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d292910c06b20001e775bb", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Hip", - "IL29", - "Kill" - ], - "orderNo": 2147483878, - "createdAt": "2023-01-26T14:47:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d292597f0dd5f341fcf0bb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d292f57f0dd5f341fcf124", - "namespace": "pd3", - "name": "Commando Hip Fire III", - "description": "Defeat 100 enemies while firing from the hip with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d292917f0dd5f341fcf123" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d292f50c06b20001e775bc", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Hip", - "IL29", - "Kill" - ], - "orderNo": 2147483879, - "createdAt": "2023-01-26T14:49:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d292917f0dd5f341fcf123", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d293317f0dd5f341fcf1de", - "namespace": "pd3", - "name": "Commando Hip Fire IV", - "description": "Defeat 200 enemies while firing from the hip with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d292f57f0dd5f341fcf124" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d293310c06b20001e775c1", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Hip", - "IL29", - "Kill" - ], - "orderNo": 2147483880, - "createdAt": "2023-01-26T14:50:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d78a1621282a2b1cefc382", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "armoredtransport-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2938e7f0dd5f341fcf1df", - "namespace": "pd3", - "name": "Commando Hip Fire V", - "description": "Defeat 400 enemies while firing from the hip with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d293317f0dd5f341fcf1de" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d2938e0c06b20001e775c2", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Hip", - "IL29", - "Kill" - ], - "orderNo": 2147483881, - "createdAt": "2023-01-26T14:51:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d293317f0dd5f341fcf1de", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-hipfire-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e43e640c786dc26879b4", - "namespace": "pd3", - "name": "Commando I", - "description": "Defeat 50 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3e43ef885db000189f5eb", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147483957, - "createdAt": "2023-01-27T14:48:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e4ce640c786dc2687b4d", - "namespace": "pd3", - "name": "Commando II", - "description": "Defeat 100 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e43e640c786dc26879b4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3e4cef885db000189f5ee", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147483958, - "createdAt": "2023-01-27T14:50:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e43e640c786dc26879b4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e50a640c786dc26888d6", - "namespace": "pd3", - "name": "Commando III", - "description": "Defeat 200 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e4ce640c786dc2687b4d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3e50af885db000189f77f", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147483959, - "createdAt": "2023-01-27T14:51:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e4ce640c786dc2687b4d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e559640c786dc2688945", - "namespace": "pd3", - "name": "Commando IV", - "description": "Defeat 350 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e50a640c786dc26888d6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "63d3e559f885db000189f784", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147483960, - "createdAt": "2023-01-27T14:53:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e50a640c786dc26888d6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50a977f4d322dc61d5182", - "namespace": "pd3", - "name": "Commando Master", - "description": "Complete a heist with all base mods unlocked for the Commando with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50a97ae93c90001c98f57", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Commando", - "IL29", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484270, - "createdAt": "2023-02-09T15:00:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b0e37f4d322dc619872b", - "namespace": "pd3", - "name": "Commando Rookie", - "description": "Complete a heist using the Commando with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b0e3ae93c90001c97280", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Commando", - "IL29", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484232, - "createdAt": "2023-02-08T14:25:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e584640c786dc26889b7", - "namespace": "pd3", - "name": "Commando V", - "description": "Defeat 500 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e559640c786dc2688945" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63d3e584f885db000189f785", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147483961, - "createdAt": "2023-01-27T14:53:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e559640c786dc2688945", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3d18e7f4d322dc61a0a7a", - "namespace": "pd3", - "name": "Commando Veteran", - "description": "Complete a heist with four mod slots filled on the Commando with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3d18eae93c90001c97621", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Commando", - "IL29", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484249, - "createdAt": "2023-02-08T16:45:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c2c983c1792981db97ef", - "namespace": "pd3", - "name": "Commando VI", - "description": "Defeat 750 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e584640c786dc26889b7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411c2c9e2027d0001c0f287", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147484342, - "createdAt": "2023-03-15T13:06:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e584640c786dc26889b7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c32083c1792981db9c62", - "namespace": "pd3", - "name": "Commando VII", - "description": "Defeat 1000 enemies with the Commando", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411c2c983c1792981db97ef" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411c320e2027d0001c0f288", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "IL29", - "Kill" - ], - "orderNo": 2147484343, - "createdAt": "2023-03-15T13:07:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411c2c983c1792981db97ef", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d299607f0dd5f341fcf538", - "namespace": "pd3", - "name": "Compact7 Armored Headshot I", - "description": "Defeat 10 armored enemies by headshot with the Compact7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d299600c06b20001e775df", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 2147483887, - "createdAt": "2023-01-26T15:16:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d299a57f0dd5f341fcf539", - "namespace": "pd3", - "name": "Compact7 Armored Headshot II", - "description": "Defeat 50 armored enemies by headshot with the Compact7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d299607f0dd5f341fcf538" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d299a50c06b20001e775e0", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 2147483888, - "createdAt": "2023-01-26T15:17:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d299607f0dd5f341fcf538", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d299f87f0dd5f341fcf63b", - "namespace": "pd3", - "name": "Compact7 Armored Headshot III", - "description": "Defeat 100 armored enemies by headshot with the Compact7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d299a57f0dd5f341fcf539" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d299f80c06b20001e775e2", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 2147483889, - "createdAt": "2023-01-26T15:19:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d299a57f0dd5f341fcf539", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29a577f0dd5f341fcf70a", - "namespace": "pd3", - "name": "Compact7 Armored Headshot IV", - "description": "Defeat 200 armored enemies by headshot with the Compact7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d299f87f0dd5f341fcf63b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d29a570c06b20001e775e3", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147483890, - "createdAt": "2023-01-26T15:20:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d299f87f0dd5f341fcf63b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29a917f0dd5f341fcf78d", - "namespace": "pd3", - "name": "Compact7 Armored Headshot V", - "description": "Defeat 400 armored enemies by headshot with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d29a577f0dd5f341fcf70a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d29a910c06b20001e775e4", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 2147483891, - "createdAt": "2023-01-26T15:21:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d29a577f0dd5f341fcf70a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-armored-headshot-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43f4628fe1154bf4bdce9", - "namespace": "pd3", - "name": "Compact7 I", - "description": "Defeat 50 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c43f4607a95c0001904837", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 86, - "createdAt": "2022-07-05T13:40:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43fea28fe1154bf4bdcfc", - "namespace": "pd3", - "name": "Compact7 II", - "description": "Defeat 100 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43f4628fe1154bf4bdce9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c43fea07a95c000190483b", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 87, - "createdAt": "2022-07-05T13:43:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43f4628fe1154bf4bdce9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4404a28fe1154bf4bdcfd", - "namespace": "pd3", - "name": "Compact7 III", - "description": "Defeat 200 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43fea28fe1154bf4bdcfc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c4404a07a95c000190483e", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 88, - "createdAt": "2022-07-05T13:44:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43fea28fe1154bf4bdcfc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4420b28fe1154bf4bdd27", - "namespace": "pd3", - "name": "Compact7 IV", - "description": "Defeat 350 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4404a28fe1154bf4bdcfd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "62c4420b07a95c0001904843", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 89, - "createdAt": "2022-07-05T13:52:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4404a28fe1154bf4bdcfd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50bd77f4d322dc61d5bef", - "namespace": "pd3", - "name": "Compact7 Master", - "description": "Complete a heist with all base mods unlocked for the Compact7 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50bd7ae93c90001c98f79", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Compact7", - "IL65", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484272, - "createdAt": "2023-02-09T15:05:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b20f7f4d322dc61996b9", - "namespace": "pd3", - "name": "Compact7 Rookie", - "description": "Complete a heist using the Compact7 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b20fae93c90001c97357", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Compact7", - "IL65", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484234, - "createdAt": "2023-02-08T14:30:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4426128fe1154bf4bdd28", - "namespace": "pd3", - "name": "Compact7 V", - "description": "Defeat 500 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4420b28fe1154bf4bdd27" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c4426107a95c0001904844", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 90, - "createdAt": "2022-07-05T13:53:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4420b28fe1154bf4bdd27", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4ed9e7f4d322dc61c9b77", - "namespace": "pd3", - "name": "Compact7 Veteran", - "description": "Complete a heist with four mod slots filled on the Compact7 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4ed9eae93c90001c98a58", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Compact7", - "IL65", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484251, - "createdAt": "2023-02-09T12:57:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411cc3e83c1792981dc3710", - "namespace": "pd3", - "name": "Compact7 VI", - "description": "Defeat 750 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4426128fe1154bf4bdd28" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411cc3ee2027d0001c0f479", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 2147484346, - "createdAt": "2023-03-15T13:46:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4426128fe1154bf4bdd28", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411cc8d83c1792981dc413c", - "namespace": "pd3", - "name": "Compact7 VII", - "description": "Defeat 1000 enemies with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411cc3e83c1792981dc3710" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411cc8de2027d0001c0f4d1", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "IL65", - "Kill" - ], - "orderNo": 2147484347, - "createdAt": "2023-03-15T13:47:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411cc3e83c1792981dc3710", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838edc29144c59ea9785f", - "namespace": "pd3", - "name": "Data Center Loud I", - "description": "Beat Data Center on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ed37655f0001bc015e", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484571, - "createdAt": "2023-12-12T10:41:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f1c29144c59ea97867", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender I", - "description": "Beat Data Center 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838edc29144c59ea9785f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "657838f1d54b8900012f08e1", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484580, - "createdAt": "2023-12-12T10:41:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838edc29144c59ea9785f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f2c29144c59ea97869", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender II", - "description": "Beat Data Center 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f1c29144c59ea97867" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657838f26b58a90001a97d7c", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Loud", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484581, - "createdAt": "2023-12-12T10:41:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f1c29144c59ea97867", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783903d0ad8d2a2fd3ee83", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender III", - "description": "Beat Data Center 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f2c29144c59ea97869" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "6578390337655f0001bc0174", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484612, - "createdAt": "2023-12-12T10:42:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f2c29144c59ea97869", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910c29144c59ea978af", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender IV", - "description": "Beat Data Center 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783903d0ad8d2a2fd3ee83" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "65783910d54b8900012f08fb", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484653, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783903d0ad8d2a2fd3ee83", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783913c29144c59ea978b7", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender V", - "description": "Beat Data Center 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910c29144c59ea978af" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 190 - } - ] - }, - "reward": { - "rewardId": "6578391337655f0001bc0195", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484664, - "createdAt": "2023-12-12T10:42:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910c29144c59ea978af", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 190 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783914c29144c59ea978bb", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender VI", - "description": "Beat Data Center 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783913c29144c59ea978b7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "65783914d54b8900012f0900", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484667, - "createdAt": "2023-12-12T10:42:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783913c29144c59ea978b7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783916d0ad8d2a2fd3eec7", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender VII", - "description": "Beat Data Center 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783914c29144c59ea978bb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "6578391637655f0001bc0198", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484675, - "createdAt": "2023-12-12T10:42:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783914c29144c59ea978bb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783918c29144c59ea978c7", - "namespace": "pd3", - "name": "Data Center Loud I: Repeat Offender VIII", - "description": "Beat Data Center 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783916d0ad8d2a2fd3eec7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "65783918d54b8900012f0905", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484682, - "createdAt": "2023-12-12T10:42:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783916d0ad8d2a2fd3eec7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9d0ad8d2a2fd3ee3d", - "namespace": "pd3", - "name": "Data Center Loud II", - "description": "Beat Data Center on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e937655f0001bc0155", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484548, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f3d0ad8d2a2fd3ee65", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender I", - "description": "Beat Data Center 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e9d0ad8d2a2fd3ee3d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838f337655f0001bc0164", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Data", - "Center", - "Hard" - ], - "orderNo": 2147484585, - "createdAt": "2023-12-12T10:41:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838e9d0ad8d2a2fd3ee3d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fcd0ad8d2a2fd3ee7b", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender II", - "description": "Beat Data Center 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f3d0ad8d2a2fd3ee65" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "657838fcd54b8900012f08e9", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Data", - "Center", - "Hard" - ], - "orderNo": 2147484602, - "createdAt": "2023-12-12T10:42:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f3d0ad8d2a2fd3ee65", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783900c29144c59ea97883", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender III", - "description": "Beat Data Center 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fcd0ad8d2a2fd3ee7b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657839006b58a90001a97d8f", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484608, - "createdAt": "2023-12-12T10:42:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fcd0ad8d2a2fd3ee7b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783902d0ad8d2a2fd3ee81", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender IV", - "description": "Beat Data Center 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783900c29144c59ea97883" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "65783902d54b8900012f08ec", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484610, - "createdAt": "2023-12-12T10:42:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783900c29144c59ea97883", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783905c29144c59ea9788f", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender V", - "description": "Beat Data Center 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783902d0ad8d2a2fd3ee81" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "657839056b58a90001a97d93", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484622, - "createdAt": "2023-12-12T10:42:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783902d0ad8d2a2fd3ee81", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783907c29144c59ea97897", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender VI", - "description": "Beat Data Center 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783905c29144c59ea9788f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "65783907d54b8900012f08f2", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484629, - "createdAt": "2023-12-12T10:42:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783905c29144c59ea9788f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390cd0ad8d2a2fd3eea1", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender VII", - "description": "Beat Data Center 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783907c29144c59ea97897" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "6578390c6b58a90001a97da1", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484639, - "createdAt": "2023-12-12T10:42:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783907c29144c59ea97897", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783914d0ad8d2a2fd3eebd", - "namespace": "pd3", - "name": "Data Center Loud II: Repeat Offender VIII", - "description": "Beat Data Center 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390cd0ad8d2a2fd3eea1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "65783914d54b8900012f08ff", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484666, - "createdAt": "2023-12-12T10:42:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390cd0ad8d2a2fd3eea1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838eac29144c59ea97855", - "namespace": "pd3", - "name": "Data Center Loud III", - "description": "Beat Data Center on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ead54b8900012f08da", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484558, - "createdAt": "2023-12-12T10:41:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f3d0ad8d2a2fd3ee67", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender I", - "description": "Beat Data Center 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838eac29144c59ea97855" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "657838f337655f0001bc0165", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484586, - "createdAt": "2023-12-12T10:41:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838eac29144c59ea97855", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f4c29144c59ea97871", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender II", - "description": "Beat Data Center 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f3d0ad8d2a2fd3ee67" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838f437655f0001bc0166", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484588, - "createdAt": "2023-12-12T10:41:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f3d0ad8d2a2fd3ee67", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783906c29144c59ea97891", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender III", - "description": "Beat Data Center 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f4c29144c59ea97871" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "65783906d54b8900012f08f0", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484623, - "createdAt": "2023-12-12T10:42:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f4c29144c59ea97871", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783907d0ad8d2a2fd3ee93", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender IV", - "description": "Beat Data Center 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783906c29144c59ea97891" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "65783907d54b8900012f08f1", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484626, - "createdAt": "2023-12-12T10:42:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783906c29144c59ea97891", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910d0ad8d2a2fd3eeb1", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender V", - "description": "Beat Data Center 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783907d0ad8d2a2fd3ee93" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "65783911d54b8900012f08fc", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484655, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783907d0ad8d2a2fd3ee93", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783915d0ad8d2a2fd3eebf", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender VI", - "description": "Beat Data Center 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910d0ad8d2a2fd3eeb1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "6578391537655f0001bc0196", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484670, - "createdAt": "2023-12-12T10:42:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910d0ad8d2a2fd3eeb1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783917d0ad8d2a2fd3eecd", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender VII", - "description": "Beat Data Center 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783915d0ad8d2a2fd3eebf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "6578391737655f0001bc019a", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484678, - "createdAt": "2023-12-12T10:42:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783915d0ad8d2a2fd3eebf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783917c29144c59ea978c3", - "namespace": "pd3", - "name": "Data Center Loud III: Repeat Offender VIII", - "description": "Beat Data Center 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783917d0ad8d2a2fd3eecd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "6578391737655f0001bc019b", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Loud", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484680, - "createdAt": "2023-12-12T10:42:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783917d0ad8d2a2fd3eecd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9c29144c59ea9784f", - "namespace": "pd3", - "name": "Data Center Loud IV", - "description": "Beat Data Center on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e9d54b8900012f08d7", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484550, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838eed0ad8d2a2fd3ee5f", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender I", - "description": "Beat Data Center 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e9c29144c59ea9784f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "657838ee6b58a90001a97d7b", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484577, - "createdAt": "2023-12-12T10:41:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838e9c29144c59ea9784f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f2c29144c59ea9786b", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender II", - "description": "Beat Data Center 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838eed0ad8d2a2fd3ee5f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "657838f237655f0001bc0163", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484582, - "createdAt": "2023-12-12T10:41:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838eed0ad8d2a2fd3ee5f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fad0ad8d2a2fd3ee75", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender III", - "description": "Beat Data Center 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f2c29144c59ea9786b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838fad54b8900012f08e7", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484597, - "createdAt": "2023-12-12T10:42:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f2c29144c59ea9786b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783903c29144c59ea97889", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender IV", - "description": "Beat Data Center 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fad0ad8d2a2fd3ee75" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "657839036b58a90001a97d90", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484614, - "createdAt": "2023-12-12T10:42:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fad0ad8d2a2fd3ee75", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783909c29144c59ea9789b", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender V", - "description": "Beat Data Center 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783903c29144c59ea97889" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "6578390937655f0001bc017b", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484635, - "createdAt": "2023-12-12T10:42:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783903c29144c59ea97889", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390dc29144c59ea978a5", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender VI", - "description": "Beat Data Center 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783909c29144c59ea9789b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "6578390d37655f0001bc0191", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484644, - "createdAt": "2023-12-12T10:42:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783909c29144c59ea9789b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783911d0ad8d2a2fd3eeb3", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender VII", - "description": "Beat Data Center 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390dc29144c59ea978a5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657839116b58a90001a97dab", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484656, - "createdAt": "2023-12-12T10:42:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390dc29144c59ea978a5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783912d0ad8d2a2fd3eeb7", - "namespace": "pd3", - "name": "Data Center Loud IV: Repeat Offender VIII", - "description": "Beat Data Center 45 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783911d0ad8d2a2fd3eeb3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "65783912d54b8900012f08fe", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484661, - "createdAt": "2023-12-12T10:42:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783911d0ad8d2a2fd3eeb3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-loud-overkill", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecd0ad8d2a2fd3ee57", - "namespace": "pd3", - "name": "Data Center Optional Objective I", - "description": "Steal the AI core from Data Center.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ecd54b8900012f08dd", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Optional", - "Heist" - ], - "orderNo": 2147484568, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ebd0ad8d2a2fd3ee4d", - "namespace": "pd3", - "name": "Data Center Optional Objective II", - "description": "Blow out the wall within 20 seconds after picking up the heavy server bag after the alarm has gone off.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838eb6b58a90001a97d76", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Optional", - "Heist" - ], - "orderNo": 2147484561, - "createdAt": "2023-12-12T10:41:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecd0ad8d2a2fd3ee55", - "namespace": "pd3", - "name": "Data Center Optional Objective III", - "description": "On Overkill difficulty or higher, as a crew, after picking up the combined server, don’t let it touch the ground or become downed while carrying it until you secure it.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ec6b58a90001a97d79", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Heist", - "Optional" - ], - "orderNo": 2147484567, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ead0ad8d2a2fd3ee45", - "namespace": "pd3", - "name": "Data Center Optional Objective IV", - "description": "On Very Hard difficulty or higher, decrypt every server and secure them.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-4", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ead54b8900012f08d9", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Heist", - "Optional" - ], - "orderNo": 2147484555, - "createdAt": "2023-12-12T10:41:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-4", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ead0ad8d2a2fd3ee47", - "namespace": "pd3", - "name": "Data Center Optional Objective V", - "description": "On Very Hard, complete the heist without anyone in the crew using vents and without raising the alarm.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-5", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ea37655f0001bc0159", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Heist", - "Optional" - ], - "orderNo": 2147484556, - "createdAt": "2023-12-12T10:41:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-optional-objective-5", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e7d0ad8d2a2fd3ee35", - "namespace": "pd3", - "name": "Data Center Stealthy I", - "description": "Beat Data Center on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e76b58a90001a97d71", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484542, - "createdAt": "2023-12-12T10:41:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838efd0ad8d2a2fd3ee61", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender I", - "description": "Beat Data Center 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e7d0ad8d2a2fd3ee35" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "657838ef37655f0001bc0161", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484578, - "createdAt": "2023-12-12T10:41:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838e7d0ad8d2a2fd3ee35", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fec29144c59ea9787d", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender II", - "description": "Beat Data Center 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838efd0ad8d2a2fd3ee61" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657838fe6b58a90001a97d8d", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Data", - "Center" - ], - "orderNo": 2147484606, - "createdAt": "2023-12-12T10:42:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838efd0ad8d2a2fd3ee61", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783904d0ad8d2a2fd3ee8b", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender III", - "description": "Beat Data Center 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fec29144c59ea9787d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "657839046b58a90001a97d91", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484617, - "createdAt": "2023-12-12T10:42:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fec29144c59ea9787d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910d0ad8d2a2fd3eeaf", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender IV", - "description": "Beat Data Center 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783904d0ad8d2a2fd3ee8b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "657839106b58a90001a97daa", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484654, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783904d0ad8d2a2fd3ee8b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783911c29144c59ea978b3", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender V", - "description": "Beat Data Center 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910d0ad8d2a2fd3eeaf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "6578391137655f0001bc0193", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Stealth", - "Normal", - "Data", - "Center", - "Map" - ], - "orderNo": 2147484658, - "createdAt": "2023-12-12T10:42:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910d0ad8d2a2fd3eeaf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783915c29144c59ea978bf", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender VI", - "description": "Beat Data Center 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783911c29144c59ea978b3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "657839156b58a90001a97db0", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484669, - "createdAt": "2023-12-12T10:42:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783911c29144c59ea978b3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783915d0ad8d2a2fd3eec3", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender VII", - "description": "Beat Data Center 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783915c29144c59ea978bf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "65783915d54b8900012f0901", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Normal", - "Data", - "Center", - "Stealth" - ], - "orderNo": 2147484672, - "createdAt": "2023-12-12T10:42:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783915c29144c59ea978bf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783916c29144c59ea978c1", - "namespace": "pd3", - "name": "Data Center Stealthy I: Repeat Offender VIII", - "description": "Beat Data Center 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783915d0ad8d2a2fd3eec3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "65783916d54b8900012f0902", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Data", - "Center" - ], - "orderNo": 2147484673, - "createdAt": "2023-12-12T10:42:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783915d0ad8d2a2fd3eec3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838edc29144c59ea97861", - "namespace": "pd3", - "name": "Data Center Stealthy II", - "description": "Beat Data Center on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838edd54b8900012f08df", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484574, - "createdAt": "2023-12-12T10:41:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fec29144c59ea9787f", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender I", - "description": "Beat Data Center 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838edc29144c59ea97861" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838fed54b8900012f08ea", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484607, - "createdAt": "2023-12-12T10:42:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838edc29144c59ea97861", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783900c29144c59ea97885", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender II", - "description": "Beat Data Center 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fec29144c59ea9787f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "65783900d54b8900012f08eb", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484609, - "createdAt": "2023-12-12T10:42:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fec29144c59ea9787f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783907d0ad8d2a2fd3ee95", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender III", - "description": "Beat Data Center 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783900c29144c59ea97885" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657839076b58a90001a97d97", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484628, - "createdAt": "2023-12-12T10:42:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783900c29144c59ea97885", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910c29144c59ea978ab", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender IV", - "description": "Beat Data Center 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783907d0ad8d2a2fd3ee95" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "657839106b58a90001a97da7", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484650, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783907d0ad8d2a2fd3ee95", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783912c29144c59ea978b5", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender V", - "description": "Beat Data Center 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910c29144c59ea978ab" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "65783912d54b8900012f08fd", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484660, - "createdAt": "2023-12-12T10:42:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910c29144c59ea978ab", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783916d0ad8d2a2fd3eec5", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender VI", - "description": "Beat Data Center 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783912c29144c59ea978b5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "6578391637655f0001bc0197", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484674, - "createdAt": "2023-12-12T10:42:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783912c29144c59ea978b5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783917d0ad8d2a2fd3eec9", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender VII", - "description": "Beat Data Center 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783916d0ad8d2a2fd3eec5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "65783917d54b8900012f0903", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484676, - "createdAt": "2023-12-12T10:42:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783916d0ad8d2a2fd3eec5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783917d0ad8d2a2fd3eecf", - "namespace": "pd3", - "name": "Data Center Stealthy II: Repeat Offender VIII", - "description": "Beat Data Center 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783917d0ad8d2a2fd3eec9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "65783917d54b8900012f0904", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Data", - "Center", - "Hard" - ], - "orderNo": 2147484679, - "createdAt": "2023-12-12T10:42:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783917d0ad8d2a2fd3eec9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ebd0ad8d2a2fd3ee49", - "namespace": "pd3", - "name": "Data Center Stealthy III", - "description": "Beat Data Center on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838eb6b58a90001a97d75", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484559, - "createdAt": "2023-12-12T10:41:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f5d0ad8d2a2fd3ee69", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender I", - "description": "Beat Data Center 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838ebd0ad8d2a2fd3ee49" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "657838f5d54b8900012f08e4", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484589, - "createdAt": "2023-12-12T10:41:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838ebd0ad8d2a2fd3ee49", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fbd0ad8d2a2fd3ee79", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender II", - "description": "Beat Data Center 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f5d0ad8d2a2fd3ee69" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838fb37655f0001bc0172", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484600, - "createdAt": "2023-12-12T10:42:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f5d0ad8d2a2fd3ee69", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783903d0ad8d2a2fd3ee87", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender III", - "description": "Beat Data Center 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fbd0ad8d2a2fd3ee79" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "65783903d54b8900012f08ed", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484615, - "createdAt": "2023-12-12T10:42:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fbd0ad8d2a2fd3ee79", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783908d0ad8d2a2fd3ee99", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender IV", - "description": "Beat Data Center 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783903d0ad8d2a2fd3ee87" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "65783908d54b8900012f08f3", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Data", - "Center", - "Stealth", - "Very", - "Hard" - ], - "orderNo": 2147484631, - "createdAt": "2023-12-12T10:42:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783903d0ad8d2a2fd3ee87", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783909d0ad8d2a2fd3ee9d", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender V", - "description": "Beat Data Center 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783908d0ad8d2a2fd3ee99" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "6578390937655f0001bc0179", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484633, - "createdAt": "2023-12-12T10:42:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783908d0ad8d2a2fd3ee99", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390bd0ad8d2a2fd3ee9f", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender VI", - "description": "Beat Data Center 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783909d0ad8d2a2fd3ee9d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "6578390bd54b8900012f08f5", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Very", - "Hard", - "Data", - "Center" - ], - "orderNo": 2147484637, - "createdAt": "2023-12-12T10:42:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783909d0ad8d2a2fd3ee9d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390dd0ad8d2a2fd3eea3", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender VII", - "description": "Beat Data Center 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390bd0ad8d2a2fd3ee9f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "6578390d6b58a90001a97da3", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Data", - "Center", - "Very", - "Hard" - ], - "orderNo": 2147484642, - "createdAt": "2023-12-12T10:42:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390bd0ad8d2a2fd3ee9f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783915d0ad8d2a2fd3eec1", - "namespace": "pd3", - "name": "Data Center Stealthy III: Repeat Offender VIII", - "description": "Beat Data Center 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390dd0ad8d2a2fd3eea3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "657839156b58a90001a97db1", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Data", - "Center", - "Very", - "Hard" - ], - "orderNo": 2147484671, - "createdAt": "2023-12-12T10:42:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390dd0ad8d2a2fd3eea3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9c29144c59ea9784d", - "namespace": "pd3", - "name": "Data Center Stealthy IV", - "description": "Beat Data Center on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e937655f0001bc0156", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484549, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fdc29144c59ea9787b", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender I", - "description": "Beat Data Center 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e9c29144c59ea9784d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "657838fd6b58a90001a97d8b", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484604, - "createdAt": "2023-12-12T10:42:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838e9c29144c59ea9784d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783902c29144c59ea97887", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender II", - "description": "Beat Data Center 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fdc29144c59ea9787b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "6578390237655f0001bc0173", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484611, - "createdAt": "2023-12-12T10:42:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fdc29144c59ea9787b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783906c29144c59ea97893", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender III", - "description": "Beat Data Center 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783902c29144c59ea97887" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657839066b58a90001a97d94", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Data", - "Center", - "Map", - "Heist", - "Stealth", - "Overkill" - ], - "orderNo": 2147484624, - "createdAt": "2023-12-12T10:42:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783902c29144c59ea97887", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390bc29144c59ea9789f", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender IV", - "description": "Beat Data Center 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783906c29144c59ea97893" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "6578390b37655f0001bc017c", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Data", - "Center", - "Overkill" - ], - "orderNo": 2147484638, - "createdAt": "2023-12-12T10:42:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783906c29144c59ea97893", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390cc29144c59ea978a3", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender V", - "description": "Beat Data Center 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390bc29144c59ea9789f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "6578390cd54b8900012f08f6", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Data", - "Center", - "Overkill", - "Stealth" - ], - "orderNo": 2147484641, - "createdAt": "2023-12-12T10:42:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390bc29144c59ea9789f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783915c29144c59ea978bd", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender VI", - "description": "Beat Data Center 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390cc29144c59ea978a3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "657839156b58a90001a97daf", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484668, - "createdAt": "2023-12-12T10:42:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390cc29144c59ea978a3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783917d0ad8d2a2fd3eecb", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender VII", - "description": "Beat Data Center 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783915c29144c59ea978bd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "6578391737655f0001bc0199", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484677, - "createdAt": "2023-12-12T10:42:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783915c29144c59ea978bd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783918c29144c59ea978c5", - "namespace": "pd3", - "name": "Data Center Stealthy IV: Repeat Offender VIII", - "description": "Beat Data Center 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783917d0ad8d2a2fd3eecb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "657839186b58a90001a97db2", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Overkill", - "Data", - "Center" - ], - "orderNo": 2147484681, - "createdAt": "2023-12-12T10:42:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783917d0ad8d2a2fd3eecb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9d0ad8d2a2fd3ee3f", - "namespace": "pd3", - "name": "Data Center: Full Payout", - "description": "Escape with the maximum amount of bags", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e9d54b8900012f08d8", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Max", - "Payout", - "Data", - "Center" - ], - "orderNo": 2147484551, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecd0ad8d2a2fd3ee53", - "namespace": "pd3", - "name": "Data Center: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ec6b58a90001a97d78", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "No", - "Downs", - "Data", - "Center" - ], - "orderNo": 2147484566, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "datacenter-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa5ed7f0dd5f341f36765", - "namespace": "pd3", - "name": "De-Cloaker I", - "description": "Save a crewmate from a Cloaker.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfa5edc9460a0001ef6560", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Save" - ], - "orderNo": 2147483717, - "createdAt": "2023-01-24T09:33:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa6357f0dd5f341f367db", - "namespace": "pd3", - "name": "De-Cloaker II", - "description": "Save a crewmate from a Cloaker 10 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa5ed7f0dd5f341f36765" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfa635c9460a0001ef6561", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Save" - ], - "orderNo": 2147483718, - "createdAt": "2023-01-24T09:34:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfa5ed7f0dd5f341f36765", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa6e37f0dd5f341f367dc", - "namespace": "pd3", - "name": "De-Cloaker III", - "description": "Save a crewmate from a Cloaker 30 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa6357f0dd5f341f367db" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63cfa6e3c9460a0001ef6562", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Save" - ], - "orderNo": 2147483719, - "createdAt": "2023-01-24T09:37:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfa6357f0dd5f341f367db", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa73c7f0dd5f341f3685e", - "namespace": "pd3", - "name": "De-Cloaker IV", - "description": "Save a crewmate from a Cloaker 60 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa6e37f0dd5f341f367dc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63cfa73cc9460a0001ef6563", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Save" - ], - "orderNo": 2147483720, - "createdAt": "2023-01-24T09:39:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfa6e37f0dd5f341f367dc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-save", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe7977f0dd5f341f3c218", - "namespace": "pd3", - "name": "Earthed I", - "description": "Save a crewmate from a Zapper.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfe797c9460a0001ef6c83", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Crewmate", - "Save" - ], - "orderNo": 2147483777, - "createdAt": "2023-01-24T14:13:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe7d17f0dd5f341f3c219", - "namespace": "pd3", - "name": "Earthed II", - "description": "Save a crewmate from a Zapper 10 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe7977f0dd5f341f3c218" - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfe7d1c9460a0001ef6c86", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Crewmate", - "Save" - ], - "orderNo": 2147483778, - "createdAt": "2023-01-24T14:14:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe7977f0dd5f341f3c218", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe8107f0dd5f341f3c4ad", - "namespace": "pd3", - "name": "Earthed III", - "description": "Save a crewmate from a Zapper 30 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe7d17f0dd5f341f3c219" - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63cfe810c9460a0001ef6ceb", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Crewmate", - "Save" - ], - "orderNo": 2147483779, - "createdAt": "2023-01-24T14:15:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe7d17f0dd5f341f3c219", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe8417f0dd5f341f3c790", - "namespace": "pd3", - "name": "Earthed IV", - "description": "Save a crewmate from a Zapper 60 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe8107f0dd5f341f3c4ad" - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63cfe841c9460a0001ef6ee0", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Crewmate", - "Save" - ], - "orderNo": 2147483780, - "createdAt": "2023-01-24T14:16:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe8107f0dd5f341f3c4ad", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "save-taser-crewmate", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb4ea7f0dd5f341f30929", - "namespace": "pd3", - "name": "ECM I", - "description": "Use 5 ECMs", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "value": 2 - } - ] - }, - "reward": { - "rewardId": "63ceb4eac9460a0001ef5925", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "ECM" - ], - "orderNo": 2147483712, - "createdAt": "2023-01-23T16:25:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "currentValue": 0, - "targetValue": 2 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb5387f0dd5f341f3092a", - "namespace": "pd3", - "name": "ECM II", - "description": "Use 15 ECMs", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb4ea7f0dd5f341f30929" - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63ceb538c9460a0001ef5926", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "ECM" - ], - "orderNo": 2147483713, - "createdAt": "2023-01-23T16:26:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceb4ea7f0dd5f341f30929", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb5747f0dd5f341f3092b", - "namespace": "pd3", - "name": "ECM III", - "description": "Use 30 ECMs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb5387f0dd5f341f3092a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63ceb574c9460a0001ef5927", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "ECM" - ], - "orderNo": 2147483714, - "createdAt": "2023-01-23T16:27:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceb5387f0dd5f341f3092a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb5a87f0dd5f341f309a7", - "namespace": "pd3", - "name": "ECM IV", - "description": "Use 50 ECMs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb5747f0dd5f341f3092b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63ceb5a8c9460a0001ef5928", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "ECM" - ], - "orderNo": 2147483715, - "createdAt": "2023-01-23T16:28:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceb5747f0dd5f341f3092b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb5dc7f0dd5f341f309a8", - "namespace": "pd3", - "name": "ECM V", - "description": "Use 75 ECMs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb5a87f0dd5f341f309a7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63ceb5dcc9460a0001ef5929", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "ECM" - ], - "orderNo": 2147483716, - "createdAt": "2023-01-23T16:29:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ceb5a87f0dd5f341f309a7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "use-ecm", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe34c7f0dd5f341f3b702", - "namespace": "pd3", - "name": "Electroshock Therapy I", - "description": "Destroy a Zapper battery.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfe34cc9460a0001ef6b31", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Battery", - "Taser", - "Destroy" - ], - "orderNo": 2147483773, - "createdAt": "2023-01-24T13:55:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe3d47f0dd5f341f3b80b", - "namespace": "pd3", - "name": "Electroshock Therapy II", - "description": "Destroy 10 Zapper batteries.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe34c7f0dd5f341f3b702" - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfe3d4c9460a0001ef6b32", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Destroy", - "Battery" - ], - "orderNo": 2147483774, - "createdAt": "2023-01-24T13:57:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe34c7f0dd5f341f3b702", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe44d7f0dd5f341f3b869", - "namespace": "pd3", - "name": "Electroshock Therapy III", - "description": "Destroy 50 Zapper batteries", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe3d47f0dd5f341f3b80b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cfe44dc9460a0001ef6b35", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Destroy", - "Batter" - ], - "orderNo": 2147483775, - "createdAt": "2023-01-24T13:59:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe3d47f0dd5f341f3b80b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe4897f0dd5f341f3b86a", - "namespace": "pd3", - "name": "Electroshock Therapy IV", - "description": "Destroy 100 Zapper batteries.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe44d7f0dd5f341f3b869" - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfe489c9460a0001ef6b36", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Destroy", - "Battery" - ], - "orderNo": 2147483776, - "createdAt": "2023-01-24T14:00:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfe44d7f0dd5f341f3b869", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-taser-battery", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff0a47f0dd5f341f40c7c", - "namespace": "pd3", - "name": "Facelift I", - "description": "Shoot off a Dozer faceplate.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cff0a4c9460a0001ef771f", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Faceplate" - ], - "orderNo": 2147483797, - "createdAt": "2023-01-24T14:52:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff0f27f0dd5f341f40cd0", - "namespace": "pd3", - "name": "Facelift II", - "description": "Shoot off 10 Dozer faceplates.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff0a47f0dd5f341f40c7c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cff0f2c9460a0001ef7720", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Faceplate" - ], - "orderNo": 2147483798, - "createdAt": "2023-01-24T14:53:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff0a47f0dd5f341f40c7c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff14e7f0dd5f341f40cd1", - "namespace": "pd3", - "name": "Facelift III", - "description": "Shoot off 30 Dozer faceplates.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff0f27f0dd5f341f40cd0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63cff14ec9460a0001ef7727", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Faceplate" - ], - "orderNo": 2147483799, - "createdAt": "2023-01-24T14:55:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff0f27f0dd5f341f40cd0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff17a7f0dd5f341f40cd2", - "namespace": "pd3", - "name": "Facelift IV", - "description": "Shoot off 60 Dozer faceplates.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff14e7f0dd5f341f40cd1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63cff17ac9460a0001ef7728", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Faceplate" - ], - "orderNo": 2147483800, - "createdAt": "2023-01-24T14:55:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff14e7f0dd5f341f40cd1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-faceplate", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecd0ad8d2a2fd3ee51", - "namespace": "pd3", - "name": "FIK22 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "657838ecd54b8900012f08dc", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "ADS", - "Kill" - ], - "orderNo": 2147484564, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f8d0ad8d2a2fd3ee6d", - "namespace": "pd3", - "name": "FIK22 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838ecd0ad8d2a2fd3ee51" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838f86b58a90001a97d88", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "ADS", - "Kill" - ], - "orderNo": 2147484593, - "createdAt": "2023-12-12T10:42:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838ecd0ad8d2a2fd3ee51", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f9d0ad8d2a2fd3ee71", - "namespace": "pd3", - "name": "FIK22 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f8d0ad8d2a2fd3ee6d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "657838f937655f0001bc0167", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "ADS", - "Kill" - ], - "orderNo": 2147484595, - "createdAt": "2023-12-12T10:42:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f8d0ad8d2a2fd3ee6d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783904d0ad8d2a2fd3ee8d", - "namespace": "pd3", - "name": "FIK22 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f9d0ad8d2a2fd3ee71" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "65783904d54b8900012f08ee", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "ADS", - "Kill" - ], - "orderNo": 2147484618, - "createdAt": "2023-12-12T10:42:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f9d0ad8d2a2fd3ee71", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390fc29144c59ea978a9", - "namespace": "pd3", - "name": "FIK22 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783904d0ad8d2a2fd3ee8d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "6578390fd54b8900012f08fa", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "ADS", - "Kill" - ], - "orderNo": 2147484649, - "createdAt": "2023-12-12T10:42:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783904d0ad8d2a2fd3ee8d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ebc29144c59ea97857", - "namespace": "pd3", - "name": "FIK22 Armored Headshot I", - "description": "Defeat 10 Heavy SWAT with a Headshot using the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838eb6b58a90001a97d77", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147484562, - "createdAt": "2023-12-12T10:41:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f6c29144c59ea97875", - "namespace": "pd3", - "name": "FIK22 Armored Headshot II", - "description": "Defeat 50 Heavy SWAT with a Headshot using the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838ebc29144c59ea97857" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838f66b58a90001a97d86", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147484591, - "createdAt": "2023-12-12T10:41:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838ebc29144c59ea97857", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783903d0ad8d2a2fd3ee85", - "namespace": "pd3", - "name": "FIK22 Armored Headshot III", - "description": "Defeat 100 Heavy SWAT with a Headshot using the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f6c29144c59ea97875" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "6578390337655f0001bc0175", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147484613, - "createdAt": "2023-12-12T10:42:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f6c29144c59ea97875", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910d0ad8d2a2fd3eead", - "namespace": "pd3", - "name": "FIK22 Armored Headshot IV", - "description": "Defeat 200 Heavy SWAT with a Headshot using the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783903d0ad8d2a2fd3ee85" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "657839106b58a90001a97da9", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147484652, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783903d0ad8d2a2fd3ee85", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783913d0ad8d2a2fd3eebb", - "namespace": "pd3", - "name": "FIK22 Armored Headshot V", - "description": "Defeat 400 Heavy SWAT with a Headshot using the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910d0ad8d2a2fd3eead" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "6578391337655f0001bc0194", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Armor", - "Headshot", - "Kill" - ], - "orderNo": 2147484663, - "createdAt": "2023-12-12T10:42:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910d0ad8d2a2fd3eead", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-armored-headshot-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ebd0ad8d2a2fd3ee4f", - "namespace": "pd3", - "name": "FIK22 I", - "description": "Defeat 50 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838eb37655f0001bc015b", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484563, - "createdAt": "2023-12-12T10:41:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fbd0ad8d2a2fd3ee77", - "namespace": "pd3", - "name": "FIK22 II", - "description": "Defeat 100 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838ebd0ad8d2a2fd3ee4f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "657838fb37655f0001bc0171", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484599, - "createdAt": "2023-12-12T10:42:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838ebd0ad8d2a2fd3ee4f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783908d0ad8d2a2fd3ee9b", - "namespace": "pd3", - "name": "FIK22 III", - "description": "Defeat 200 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fbd0ad8d2a2fd3ee77" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "6578390837655f0001bc0178", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484632, - "createdAt": "2023-12-12T10:42:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fbd0ad8d2a2fd3ee77", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390cc29144c59ea978a1", - "namespace": "pd3", - "name": "FIK22 IV", - "description": "Defeat 350 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783908d0ad8d2a2fd3ee9b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "6578390c6b58a90001a97da2", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484640, - "createdAt": "2023-12-12T10:42:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783908d0ad8d2a2fd3ee9b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838eec29144c59ea97863", - "namespace": "pd3", - "name": "FIK22 Master", - "description": "Complete a heist with all base mods unlocked for the FIK22 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ee37655f0001bc0160", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FIK22" - ], - "orderNo": 2147484575, - "createdAt": "2023-12-12T10:41:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838edd0ad8d2a2fd3ee5b", - "namespace": "pd3", - "name": "FIK22 Rookie", - "description": "Complete a heist using the FIK22 with a mod equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ed37655f0001bc015f", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FIK22" - ], - "orderNo": 2147484573, - "createdAt": "2023-12-12T10:41:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390ed0ad8d2a2fd3eea9", - "namespace": "pd3", - "name": "FIK22 V", - "description": "Defeat 500 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390cc29144c59ea978a1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "6578390e6b58a90001a97da5", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484646, - "createdAt": "2023-12-12T10:42:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390cc29144c59ea978a1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecc29144c59ea9785b", - "namespace": "pd3", - "name": "FIK22 Veteran", - "description": "Complete a heist with 4 mod slots filled on the FIK22 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ecd54b8900012f08de", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FIK22" - ], - "orderNo": 2147484569, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783911c29144c59ea978b1", - "namespace": "pd3", - "name": "FIK22 VI", - "description": "Defeat 750 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390ed0ad8d2a2fd3eea9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6578391137655f0001bc0192", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Cobmat", - "FIK22", - "Kill" - ], - "orderNo": 2147484657, - "createdAt": "2023-12-12T10:42:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6578390ed0ad8d2a2fd3eea9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783914c29144c59ea978b9", - "namespace": "pd3", - "name": "FIK22 VII", - "description": "Defeat 1000 enemies with the FIK22.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783911c29144c59ea978b1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "657839146b58a90001a97dae", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FIK22", - "Kill" - ], - "orderNo": 2147484665, - "createdAt": "2023-12-12T10:42:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783911c29144c59ea978b1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-fik22-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd73b7f0dd5f341f3a4ce", - "namespace": "pd3", - "name": "Firepower I", - "description": "Deploy an Ammo Bag.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfd73bc9460a0001ef6a52", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Ammo", - "Tutorial" - ], - "orderNo": 2147483751, - "createdAt": "2023-01-24T13:03:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd7727f0dd5f341f3a4cf", - "namespace": "pd3", - "name": "Firepower II", - "description": "Deploy 10 Ammo Bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfd73b7f0dd5f341f3a4ce" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfd772c9460a0001ef6a53", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Ammo" - ], - "orderNo": 2147483752, - "createdAt": "2023-01-24T13:04:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfd73b7f0dd5f341f3a4ce", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd7ad7f0dd5f341f3a517", - "namespace": "pd3", - "name": "Firepower III", - "description": "Deploy 50 Ammo Bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfd7727f0dd5f341f3a4cf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cfd7adc9460a0001ef6a54", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Ammo" - ], - "orderNo": 2147483753, - "createdAt": "2023-01-24T13:05:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfd7727f0dd5f341f3a4cf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfd7de7f0dd5f341f3a55f", - "namespace": "pd3", - "name": "Firepower IV", - "description": "Deploy 100 Ammo Bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfd7ad7f0dd5f341f3a517" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfd7dec9460a0001ef6a55", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Ammo" - ], - "orderNo": 2147483754, - "createdAt": "2023-01-24T13:06:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfd7ad7f0dd5f341f3a517", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-ammo-bag", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e8d0ad8d2a2fd3ee3b", - "namespace": "pd3", - "name": "FSA12 Hip Fire I", - "description": "Defeat 20 enemies while firing from the hip with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "657838e837655f0001bc0154", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Hip", - "Kill" - ], - "orderNo": 2147484547, - "createdAt": "2023-12-12T10:41:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f7d0ad8d2a2fd3ee6b", - "namespace": "pd3", - "name": "FSA12 Hip Fire II", - "description": "Defeat 50 enemies while firing from the hip with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e8d0ad8d2a2fd3ee3b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838f76b58a90001a97d87", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Hip", - "Kill" - ], - "orderNo": 2147484592, - "createdAt": "2023-12-12T10:41:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838e8d0ad8d2a2fd3ee3b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783908d0ad8d2a2fd3ee97", - "namespace": "pd3", - "name": "FSA12 Hip Fire III", - "description": "Defeat 100 enemies while firing from the hip with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f7d0ad8d2a2fd3ee6b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "657839086b58a90001a97d98", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Hip", - "Kill" - ], - "orderNo": 2147484630, - "createdAt": "2023-12-12T10:42:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f7d0ad8d2a2fd3ee6b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783910c29144c59ea978ad", - "namespace": "pd3", - "name": "FSA12 Hip Fire IV", - "description": "Defeat 200 enemies while firing from the hip with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783908d0ad8d2a2fd3ee97" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "657839106b58a90001a97da8", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Hip", - "Kill" - ], - "orderNo": 2147484651, - "createdAt": "2023-12-12T10:42:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783908d0ad8d2a2fd3ee97", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783912d0ad8d2a2fd3eeb5", - "namespace": "pd3", - "name": "FSA12 Hip Fire V", - "description": "Defeat 400 enemies while firing from the hip with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783910c29144c59ea978ad" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "657839126b58a90001a97dac", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Hip", - "Kill" - ], - "orderNo": 2147484659, - "createdAt": "2023-12-12T10:42:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783910c29144c59ea978ad", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-hipfire-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838eac29144c59ea97853", - "namespace": "pd3", - "name": "FSA12 I", - "description": "Defeat 50 enemies with the FSA12", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838ea37655f0001bc015a", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484557, - "createdAt": "2023-12-12T10:41:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f3d0ad8d2a2fd3ee63", - "namespace": "pd3", - "name": "FSA12 II", - "description": "Defeat 100 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838eac29144c59ea97853" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "657838f3d54b8900012f08e3", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484584, - "createdAt": "2023-12-12T10:41:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838eac29144c59ea97853", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fad0ad8d2a2fd3ee73", - "namespace": "pd3", - "name": "FSA12 III", - "description": "Defeat 200 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f3d0ad8d2a2fd3ee63" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "657838fa37655f0001bc0168", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484596, - "createdAt": "2023-12-12T10:42:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838f3d0ad8d2a2fd3ee63", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fcc29144c59ea97879", - "namespace": "pd3", - "name": "FSA12 IV", - "description": "Defeat 350 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fad0ad8d2a2fd3ee73" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "657838fcd54b8900012f08e8", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484601, - "createdAt": "2023-12-12T10:42:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fad0ad8d2a2fd3ee73", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e8c29144c59ea97849", - "namespace": "pd3", - "name": "FSA12 Master", - "description": "Complete a heist with all base mods unlocked for the FSA12 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e8d54b8900012f08d6", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FSA12" - ], - "orderNo": 2147484545, - "createdAt": "2023-12-12T10:41:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ebd0ad8d2a2fd3ee4b", - "namespace": "pd3", - "name": "FSA12 Rookie", - "description": "Complete a heist using the FSA12 with a mod equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ebd54b8900012f08db", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FSA12" - ], - "orderNo": 2147484560, - "createdAt": "2023-12-12T10:41:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838ecc29144c59ea97859", - "namespace": "pd3", - "name": "FSA12 Single Clip I", - "description": "Defeat 2 enemies without reloading 5 times using the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "657838ec37655f0001bc015c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "No", - "Reload", - "Kill" - ], - "orderNo": 2147484565, - "createdAt": "2023-12-12T10:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fbc29144c59ea97877", - "namespace": "pd3", - "name": "FSA12 Single Clip II", - "description": "Defeat 2 enemies without reloading 15 times using the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838ecc29144c59ea97859" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "657838fb6b58a90001a97d89", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "No", - "Reload", - "Kill" - ], - "orderNo": 2147484598, - "createdAt": "2023-12-12T10:42:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838ecc29144c59ea97859", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fdd0ad8d2a2fd3ee7d", - "namespace": "pd3", - "name": "FSA12 Single Clip III", - "description": "Defeat 2 enemies without reloading 30 times using the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fbc29144c59ea97877" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "657838fd6b58a90001a97d8a", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "No", - "Reload", - "Kill" - ], - "orderNo": 2147484603, - "createdAt": "2023-12-12T10:42:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fbc29144c59ea97877", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783907c29144c59ea97895", - "namespace": "pd3", - "name": "FSA12 Single Clip IV", - "description": "Defeat 2 enemies without reloading 50 times using the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fdd0ad8d2a2fd3ee7d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657839076b58a90001a97d96", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "No", - "Reload", - "Kill" - ], - "orderNo": 2147484627, - "createdAt": "2023-12-12T10:42:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fdd0ad8d2a2fd3ee7d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390fc29144c59ea978a7", - "namespace": "pd3", - "name": "FSA12 Single Clip V", - "description": "Defeat 2 enemies without reloading 75 times using the FSA12 .", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783907c29144c59ea97895" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "value": 75 - } - ] - }, - "reward": { - "rewardId": "6578390f6b58a90001a97da6", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "No", - "Reload", - "Kill" - ], - "orderNo": 2147484648, - "createdAt": "2023-12-12T10:42:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783907c29144c59ea97895", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-noreload-kills", - "currentValue": 0, - "targetValue": 75 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838fdd0ad8d2a2fd3ee7f", - "namespace": "pd3", - "name": "FSA12 V", - "description": "Defeat 500 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fcc29144c59ea97879" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "657838fd6b58a90001a97d8c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484605, - "createdAt": "2023-12-12T10:42:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fcc29144c59ea97879", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838edd0ad8d2a2fd3ee59", - "namespace": "pd3", - "name": "FSA12 Veteran", - "description": "Complete a heist with 4 mod slots filled on the FSA12 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838ed6b58a90001a97d7a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "FSA12" - ], - "orderNo": 2147484572, - "createdAt": "2023-12-12T10:41:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783904d0ad8d2a2fd3ee8f", - "namespace": "pd3", - "name": "FSA12 VI", - "description": "Defeat 750 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838fdd0ad8d2a2fd3ee7f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6578390437655f0001bc0177", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484619, - "createdAt": "2023-12-12T10:42:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "657838fdd0ad8d2a2fd3ee7f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783905c29144c59ea9788d", - "namespace": "pd3", - "name": "FSA12 VII", - "description": "Defeat 1000 enemies with the FSA12.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783904d0ad8d2a2fd3ee8f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "657839056b58a90001a97d92", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "FSA12", - "Kill" - ], - "orderNo": 2147484621, - "createdAt": "2023-12-12T10:42:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "65783904d0ad8d2a2fd3ee8f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-fsa12-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfc0257f0dd5f341f393cf", - "namespace": "pd3", - "name": "Full Metal Jacket I", - "description": "Deploy an Armor bag.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfc025c9460a0001ef6a34", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Deploy", - "IL2", - "Tutorial" - ], - "orderNo": 2147483746, - "createdAt": "2023-01-24T11:25:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfc0657f0dd5f341f393d0", - "namespace": "pd3", - "name": "Full Metal Jacket II", - "description": "Deploy 10 Armor bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfc0257f0dd5f341f393cf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfc065c9460a0001ef6a35", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Deploy", - "IL2" - ], - "orderNo": 2147483747, - "createdAt": "2023-01-24T11:26:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfc0257f0dd5f341f393cf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfc0a37f0dd5f341f39426", - "namespace": "pd3", - "name": "Full Metal Jacket III", - "description": "Deploy 50 Armor bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfc0657f0dd5f341f393d0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cfc0a3c9460a0001ef6a36", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Deploy", - "IL2" - ], - "orderNo": 2147483748, - "createdAt": "2023-01-24T11:27:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfc0657f0dd5f341f393d0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfc0e37f0dd5f341f39478", - "namespace": "pd3", - "name": "Full Metal Jacket IV", - "description": "Deploy 100 Armor bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfc0a37f0dd5f341f39426" - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfc0e3c9460a0001ef6a37", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Armor", - "Combat", - "Deploy", - "IL2" - ], - "orderNo": 2147483749, - "createdAt": "2023-01-24T11:28:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfc0a37f0dd5f341f39426", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-armor-bag", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c32528fe1154bf4bf1a1", - "namespace": "pd3", - "name": "Headshot A114 I", - "description": "Defeat an enemy by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c6c32507a95c000190558c", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 133, - "createdAt": "2022-07-07T11:27:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c49e28fe1154bf4bf1ac", - "namespace": "pd3", - "name": "Headshot A114 II", - "description": "Defeat 10 enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6c32528fe1154bf4bf1a1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c6c49e07a95c0001905593", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 134, - "createdAt": "2022-07-07T11:33:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6c32528fe1154bf4bf1a1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c57728fe1154bf4bf1ae", - "namespace": "pd3", - "name": "Headshot A114 III", - "description": "Defeat 30 enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6c49e28fe1154bf4bf1ac" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c6c57707a95c0001905596", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 135, - "createdAt": "2022-07-07T11:37:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6c49e28fe1154bf4bf1ac", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c5e528fe1154bf4bf1be", - "namespace": "pd3", - "name": "Headshot A114 IV", - "description": "Defeat 60 enemies by headshot with the A114", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6c57728fe1154bf4bf1ae" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c6c5e507a95c0001905598", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "A114", - "Combat", - "Headshot", - "IL15", - "Kill" - ], - "orderNo": 136, - "createdAt": "2022-07-07T11:39:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6c57728fe1154bf4bf1ae", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-a114-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d273cf7f0dd5f341fbe135", - "namespace": "pd3", - "name": "Headshot Bison I", - "description": "Defeat an enemy by headshot with the Bison.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d273cf0c06b20001e75cee", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "Headshot", - "IL70", - "Kill" - ], - "orderNo": 2147483849, - "createdAt": "2023-01-26T12:36:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d274047f0dd5f341fbe2bc", - "namespace": "pd3", - "name": "Headshot Bison II", - "description": "Defeat 10 enemies by headshot with the Bison.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d273cf7f0dd5f341fbe135" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d274040c06b20001e75cef", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "Headshot", - "IL70", - "Kill" - ], - "orderNo": 2147483850, - "createdAt": "2023-01-26T12:37:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d273cf7f0dd5f341fbe135", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d274407f0dd5f341fbe389", - "namespace": "pd3", - "name": "Headshot Bison III", - "description": "Defeat 30 enemies by headshot with the Bison.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d274047f0dd5f341fbe2bc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d274400c06b20001e75cf0", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "Headshot", - "IL70", - "Kill" - ], - "orderNo": 2147483851, - "createdAt": "2023-01-26T12:38:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d274047f0dd5f341fbe2bc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d274667f0dd5f341fbe38a", - "namespace": "pd3", - "name": "Headshot Bison IV", - "description": "Defeat 60 enemies by headshot with the Bison.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d274407f0dd5f341fbe389" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d274660c06b20001e75cf1", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Bison", - "Combat", - "Headshot", - "IL70", - "Kill" - ], - "orderNo": 2147483852, - "createdAt": "2023-01-26T12:39:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d274407f0dd5f341fbe389", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-bison-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5adfc28fe1154bf4bea8d", - "namespace": "pd3", - "name": "Headshot CAR4 I", - "description": "Defeat an enemy by headshot with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c5adfc07a95c0001905022", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "CAR4" - ], - "orderNo": 121, - "createdAt": "2022-07-06T15:45:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5af5a28fe1154bf4beaf3", - "namespace": "pd3", - "name": "Headshot CAR4 II", - "description": "Defeat 10 enemies by headshot with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5adfc28fe1154bf4bea8d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c5af5a07a95c000190502a", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "CAR4" - ], - "orderNo": 122, - "createdAt": "2022-07-06T15:50:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5adfc28fe1154bf4bea8d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b05528fe1154bf4beaf8", - "namespace": "pd3", - "name": "Headshot CAR4 III", - "description": "Defeat 30 enemies by headshot with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5af5a28fe1154bf4beaf3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c5b05507a95c000190502f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "CAR4" - ], - "orderNo": 123, - "createdAt": "2022-07-06T15:55:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5af5a28fe1154bf4beaf3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b0e728fe1154bf4beaf9", - "namespace": "pd3", - "name": "Headshot CAR4 IV", - "description": "Defeat 60 enemies by headshot with the CAR4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5b05528fe1154bf4beaf8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c5b0e707a95c0001905031", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "CAR4" - ], - "orderNo": 124, - "createdAt": "2022-07-06T15:57:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5b05528fe1154bf4beaf8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-car4-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f35f28fe1154bf4bf426", - "namespace": "pd3", - "name": "Headshot Castigo44 I", - "description": "Defeat an enemy by headshot with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c6f35f07a95c00019056d4", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "Headshot", - "IL10", - "Kill" - ], - "orderNo": 145, - "createdAt": "2022-07-07T14:53:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f3ce28fe1154bf4bf433", - "namespace": "pd3", - "name": "Headshot Castigo44 II", - "description": "Defeat 10 enemies by headshot with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6f35f28fe1154bf4bf426" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c6f3ce07a95c00019056d7", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "Headshot", - "IL10", - "Kill" - ], - "orderNo": 146, - "createdAt": "2022-07-07T14:55:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6f35f28fe1154bf4bf426", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f45c28fe1154bf4bf465", - "namespace": "pd3", - "name": "Headshot Castigo44 III", - "description": "Defeat 30 enemies by headshot with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6f3ce28fe1154bf4bf433" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c6f45c07a95c00019056d9", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "Headshot", - "IL10", - "Kill" - ], - "orderNo": 147, - "createdAt": "2022-07-07T14:57:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6f3ce28fe1154bf4bf433", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f4b928fe1154bf4bf466", - "namespace": "pd3", - "name": "Headshot Castigo44 IV", - "description": "Defeat 60 enemies by headshot with the Castigo44", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6f45c28fe1154bf4bf465" - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c6f4b907a95c00019056de", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Castigo44", - "Combat", - "Headshot", - "IL10", - "Kill" - ], - "orderNo": 148, - "createdAt": "2022-07-07T14:59:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6f45c28fe1154bf4bf465", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "revolver-castigo44-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14e6f7f0dd5f341f89bd5", - "namespace": "pd3", - "name": "Headshot Commando I", - "description": "Defeat an enemy by headshot with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d14e6f0c06b20001e70877", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Headshot", - "IL29", - "Kill" - ], - "orderNo": 2147483825, - "createdAt": "2023-01-25T15:44:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14ee97f0dd5f341f89ea1", - "namespace": "pd3", - "name": "Headshot Commando II", - "description": "Defeat 10 enemies by headshot with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14e6f7f0dd5f341f89bd5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d14ee90c06b20001e708dd", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Headshot", - "IL29", - "Kill" - ], - "orderNo": 2147483826, - "createdAt": "2023-01-25T15:46:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14e6f7f0dd5f341f89bd5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14f337f0dd5f341f89fcc", - "namespace": "pd3", - "name": "Headshot Commando III", - "description": "Defeat 30 enemies by headshot with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14ee97f0dd5f341f89ea1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d14f330c06b20001e708e3", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Headshot", - "IL29", - "Kill" - ], - "orderNo": 2147483827, - "createdAt": "2023-01-25T15:48:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14ee97f0dd5f341f89ea1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14fad7f0dd5f341f8a35b", - "namespace": "pd3", - "name": "Headshot Commando IV", - "description": "Defeat 60 enemies by headshot with the Commando.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14f337f0dd5f341f89fcc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d14fad0c06b20001e70948", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Commando", - "Headshot", - "IL29", - "Kill" - ], - "orderNo": 2147483828, - "createdAt": "2023-01-25T15:50:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14f337f0dd5f341f89fcc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-commando-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b21d28fe1154bf4beafa", - "namespace": "pd3", - "name": "Headshot Compact7 I", - "description": "Defeat an enemy by headshot with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c5b21d07a95c0001905035", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 125, - "createdAt": "2022-07-06T16:02:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b2b028fe1154bf4beb00", - "namespace": "pd3", - "name": "Headshot Compact7 II", - "description": "Defeat 10 enemies by headshot with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5b21d28fe1154bf4beafa" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c5b2b007a95c0001905037", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 126, - "createdAt": "2022-07-06T16:05:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5b21d28fe1154bf4beafa", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b33b28fe1154bf4beb06", - "namespace": "pd3", - "name": "Headshot Compact7 III", - "description": "Defeat 30 enemies by headshot with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5b2b028fe1154bf4beb00" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c5b33b07a95c000190503b", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 127, - "createdAt": "2022-07-06T16:07:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5b2b028fe1154bf4beb00", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5b43628fe1154bf4beb07", - "namespace": "pd3", - "name": "Headshot Compact7 IV", - "description": "Defeat 60 enemies by headshot with the Compact7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5b33b28fe1154bf4beb06" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c5b43607a95c0001905041", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Compact7", - "Headshot", - "IL65", - "Kill" - ], - "orderNo": 128, - "createdAt": "2022-07-06T16:11:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5b33b28fe1154bf4beb06", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-compact7-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d278277f0dd5f341fc0550", - "namespace": "pd3", - "name": "Headshot HET5 I", - "description": "Defeat an enemy by headshot with the HET5.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d278270c06b20001e760ee", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "Headshot", - "IL40", - "Kill", - "Lynx" - ], - "orderNo": 2147483853, - "createdAt": "2023-01-26T12:55:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d278697f0dd5f341fc0551", - "namespace": "pd3", - "name": "Headshot HET5 II", - "description": "Defeat 10 enemies by headshot with the HET5.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d278277f0dd5f341fc0550" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d278690c06b20001e760ef", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "Headshot", - "IL40", - "Kill", - "Lynx" - ], - "orderNo": 2147483854, - "createdAt": "2023-01-26T12:56:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d278277f0dd5f341fc0550", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d278b17f0dd5f341fc0552", - "namespace": "pd3", - "name": "Headshot HET5 III", - "description": "Defeat 30 enemies by headshot with the HET5.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d278697f0dd5f341fc0551" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d278b10c06b20001e760f0", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "Headshot", - "IL40", - "Kill", - "Lynx" - ], - "orderNo": 2147483855, - "createdAt": "2023-01-26T12:57:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d278697f0dd5f341fc0551", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d278e67f0dd5f341fc0707", - "namespace": "pd3", - "name": "Headshot HET5 IV", - "description": "Defeat 60 enemies by headshot with the HET5.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d278b17f0dd5f341fc0552" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d278e60c06b20001e760f1", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "Headshot", - "IL40", - "Kill", - "Lynx" - ], - "orderNo": 2147483856, - "createdAt": "2023-01-26T12:58:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d278b17f0dd5f341fc0552", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14bbd7f0dd5f341f8939b", - "namespace": "pd3", - "name": "Headshot KU59 I", - "description": "Defeat an enemy by headshot with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d14bbd0c06b20001e70809", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483821, - "createdAt": "2023-01-25T15:33:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14c457f0dd5f341f894b3", - "namespace": "pd3", - "name": "Headshot KU59 II", - "description": "Defeat 10 enemies by headshot with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14bbd7f0dd5f341f8939b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d14c450c06b20001e7080a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483822, - "createdAt": "2023-01-25T15:35:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14bbd7f0dd5f341f8939b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14d4b7f0dd5f341f89629", - "namespace": "pd3", - "name": "Headshot KU59 III", - "description": "Defeat 30 enemies by headshot with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14c457f0dd5f341f894b3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d14d4b0c06b20001e7080b", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483823, - "createdAt": "2023-01-25T15:39:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14c457f0dd5f341f894b3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14d9b7f0dd5f341f8972b", - "namespace": "pd3", - "name": "Headshot KU59 IV", - "description": "Defeat 60 enemies by headshot with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14d4b7f0dd5f341f89629" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d14d9b0c06b20001e7080c", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483824, - "createdAt": "2023-01-25T15:41:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14d4b7f0dd5f341f89629", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d152887f0dd5f341f8abab", - "namespace": "pd3", - "name": "Headshot Mosconi12C I", - "description": "Defeat an enemy by headshot with the Mosconi12C.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d152880c06b20001e70a33", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483833, - "createdAt": "2023-01-25T16:02:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d152e97f0dd5f341f8abac", - "namespace": "pd3", - "name": "Headshot Mosconi12C II", - "description": "Defeat 10 enemies by headshot with the Mosconi12C.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d152887f0dd5f341f8abab" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d152e90c06b20001e70a34", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483834, - "createdAt": "2023-01-25T16:03:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d152887f0dd5f341f8abab", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d1535b7f0dd5f341f8ac1a", - "namespace": "pd3", - "name": "Headshot Mosconi12C III", - "description": "Defeat 30 enemies by headshot with the Mosconi12C.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d152e97f0dd5f341f8abac" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d1535b0c06b20001e70a35", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483835, - "createdAt": "2023-01-25T16:05:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d152e97f0dd5f341f8abac", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d153bc7f0dd5f341f8ac7f", - "namespace": "pd3", - "name": "Headshot Mosconi12C IV", - "description": "Defeat 60 enemies by headshot with the Mosconi12C.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d1535b7f0dd5f341f8ac1a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d153bc0c06b20001e70a36", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483836, - "createdAt": "2023-01-25T16:07:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d1535b7f0dd5f341f8ac1a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6377b83e29040c967e3f99e0", - "namespace": "pd3", - "name": "Headshot NWB9 I", - "description": "Defeat an enemy by headshot with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "6377b83ee23efe0001fd3bf1", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 401, - "createdAt": "2022-11-18T16:52:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6377b8b329040c967e3f99e1", - "namespace": "pd3", - "name": "Headshot NWB9 II", - "description": "Defeat 10 enemies by headshot with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6377b83e29040c967e3f99e0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "6377b8b3e23efe0001fd3c1d", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 402, - "createdAt": "2022-11-18T16:54:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6377b83e29040c967e3f99e0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6377b95e29040c967e3f99e2", - "namespace": "pd3", - "name": "Headshot NWB9 III", - "description": "Defeat 30 enemies by headshot with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6377b8b329040c967e3f99e1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "6377b95ee23efe0001fd3c49", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 403, - "createdAt": "2022-11-18T16:57:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6377b8b329040c967e3f99e1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6377b9a729040c967e3f9a14", - "namespace": "pd3", - "name": "Headshot NWB9 IV", - "description": "Defeat 60 enemies by headshot with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6377b95e29040c967e3f99e2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "6377b9a7e23efe0001fd3c75", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 404, - "createdAt": "2022-11-18T16:58:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6377b95e29040c967e3f99e2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d150617f0dd5f341f8a74d", - "namespace": "pd3", - "name": "Headshot PC9 I", - "description": "Defeat an enemy by headshot with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d150610c06b20001e709ad", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483829, - "createdAt": "2023-01-25T15:53:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d150c67f0dd5f341f8ab44", - "namespace": "pd3", - "name": "Headshot PC9 II", - "description": "Defeat 10 enemies by headshot with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d150617f0dd5f341f8a74d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d150c60c06b20001e70a18", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483830, - "createdAt": "2023-01-25T15:54:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d150617f0dd5f341f8a74d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d151347f0dd5f341f8ab45", - "namespace": "pd3", - "name": "Headshot PC9 III", - "description": "Defeat 30 enemies by headshot with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d150c67f0dd5f341f8ab44" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d151340c06b20001e70a19", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483831, - "createdAt": "2023-01-25T15:56:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d150c67f0dd5f341f8ab44", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d151ad7f0dd5f341f8abaa", - "namespace": "pd3", - "name": "Headshot PC9 IV", - "description": "Defeat 60 enemies by headshot with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d151347f0dd5f341f8ab45" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d151ad0c06b20001e70a32", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483832, - "createdAt": "2023-01-25T15:58:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d151347f0dd5f341f8ab45", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c69a0028fe1154bf4beea2", - "namespace": "pd3", - "name": "Headshot R880 I", - "description": "Defeat an enemy by headshot with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c69a0007a95c00019053bd", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL2", - "Kill", - "R880" - ], - "orderNo": 129, - "createdAt": "2022-07-07T08:32:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6aa6b28fe1154bf4bef6c", - "namespace": "pd3", - "name": "Headshot R880 II", - "description": "Defeat 10 enemies by headshot with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c69a0028fe1154bf4beea2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c6aa6b07a95c00019054e6", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL2", - "Kill", - "R880" - ], - "orderNo": 130, - "createdAt": "2022-07-07T09:42:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c69a0028fe1154bf4beea2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c1dd28fe1154bf4bf19c", - "namespace": "pd3", - "name": "Headshot R880 III", - "description": "Defeat 30 enemies by headshot with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6aa6b28fe1154bf4bef6c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c6c1dd07a95c0001905585", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL2", - "Kill", - "R880" - ], - "orderNo": 131, - "createdAt": "2022-07-07T11:22:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6aa6b28fe1154bf4bef6c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6c23628fe1154bf4bf1a0", - "namespace": "pd3", - "name": "Headshot R880 IV", - "description": "Defeat 60 enemies by headshot with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6c1dd28fe1154bf4bf19c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c6c23607a95c0001905587", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL2", - "Kill", - "R880" - ], - "orderNo": 132, - "createdAt": "2022-07-07T11:23:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6c1dd28fe1154bf4bf19c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6cced28fe1154bf4bf27c", - "namespace": "pd3", - "name": "Headshot R900S I", - "description": "Defeat an enemy by headshot with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c6cced07a95c00019055b6", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 137, - "createdAt": "2022-07-07T12:09:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6cdc328fe1154bf4bf27d", - "namespace": "pd3", - "name": "Headshot R900S II", - "description": "Defeat 10 enemies by headshot with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6cced28fe1154bf4bf27c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c6cdc307a95c00019055ba", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 138, - "createdAt": "2022-07-07T12:12:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6cced28fe1154bf4bf27c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6ce3a28fe1154bf4bf2bd", - "namespace": "pd3", - "name": "Headshot R900S III", - "description": "Defeat 30 enemies by headshot with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6cdc328fe1154bf4bf27d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c6ce3a07a95c00019055bc", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 139, - "createdAt": "2022-07-07T12:14:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6cdc328fe1154bf4bf27d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6cec328fe1154bf4bf2be", - "namespace": "pd3", - "name": "Headshot R900S IV", - "description": "Defeat 60 enemies by headshot with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6ce3a28fe1154bf4bf2bd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c6cec307a95c00019055c2", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 140, - "createdAt": "2022-07-07T12:17:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6ce3a28fe1154bf4bf2bd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6eee228fe1154bf4bf416", - "namespace": "pd3", - "name": "Headshot S40 I", - "description": "Defeat an enemy by headshot with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c6eee207a95c00019056b8", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "S40" - ], - "orderNo": 141, - "createdAt": "2022-07-07T14:34:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f12c28fe1154bf4bf41b", - "namespace": "pd3", - "name": "Headshot S40 II", - "description": "Defeat 10 enemies by headshot with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6eee228fe1154bf4bf416" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c6f12c07a95c00019056ce", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "S40" - ], - "orderNo": 142, - "createdAt": "2022-07-07T14:43:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6eee228fe1154bf4bf416", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f1a728fe1154bf4bf422", - "namespace": "pd3", - "name": "Headshot S40 III", - "description": "Defeat 30 enemies by headshot with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6f12c28fe1154bf4bf41b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c6f1a707a95c00019056d0", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "S40" - ], - "orderNo": 143, - "createdAt": "2022-07-07T14:45:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6f12c28fe1154bf4bf41b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c6f21828fe1154bf4bf425", - "namespace": "pd3", - "name": "Headshot S40 IV", - "description": "Defeat 60 enemies by headshot with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c6f1a728fe1154bf4bf422" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c6f21807a95c00019056d2", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Headshot", - "S40" - ], - "orderNo": 144, - "createdAt": "2022-07-07T14:47:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c6f1a728fe1154bf4bf422", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d15c577f0dd5f341f8c0fa", - "namespace": "pd3", - "name": "Headshot S403 I", - "description": "Defeat an enemy by headshot with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d15c570c06b20001e70c96", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147483841, - "createdAt": "2023-01-25T16:44:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d15cea7f0dd5f341f8c0fb", - "namespace": "pd3", - "name": "Headshot S403 II", - "description": "Defeat 10 enemies by headshot with the S403.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d15c577f0dd5f341f8c0fa" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d15cea0c06b20001e70c97", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147483842, - "createdAt": "2023-01-25T16:46:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d15c577f0dd5f341f8c0fa", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d15d207f0dd5f341f8c0fc", - "namespace": "pd3", - "name": "Headshot S403 III", - "description": "Defeat 30 enemies by headshot with the S403.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d15cea7f0dd5f341f8c0fb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d15d200c06b20001e70c98", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147483843, - "createdAt": "2023-01-25T16:47:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d15cea7f0dd5f341f8c0fb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d15d5c7f0dd5f341f8c0fd", - "namespace": "pd3", - "name": "Headshot S403 IV", - "description": "Defeat 60 enemies by headshot with the S403.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d15d207f0dd5f341f8c0fc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d15d5c0c06b20001e70c99", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147483844, - "createdAt": "2023-01-25T16:48:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d15d207f0dd5f341f8c0fc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2727f7f0dd5f341fbd40e", - "namespace": "pd3", - "name": "Headshot SPM11 I", - "description": "Defeat an enemy by headshot with the SPM11.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d2727f0c06b20001e75b58", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL38", - "Kill", - "Perfect", - "SPM11" - ], - "orderNo": 2147483845, - "createdAt": "2023-01-26T12:30:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d272b87f0dd5f341fbd46f", - "namespace": "pd3", - "name": "Headshot SPM11 II", - "description": "Defeat 10 enemies by headshot with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2727f7f0dd5f341fbd40e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d272b80c06b20001e75b59", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL38", - "Kill", - "Perfect", - "SPM11" - ], - "orderNo": 2147483846, - "createdAt": "2023-01-26T12:31:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2727f7f0dd5f341fbd40e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d272f37f0dd5f341fbd4d1", - "namespace": "pd3", - "name": "Headshot SPM11 III", - "description": "Defeat 30 enemies by headshot with the SPM11.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d272b87f0dd5f341fbd46f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d272f30c06b20001e75b5a", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL38", - "Kill", - "Perfect", - "SPM11" - ], - "orderNo": 2147483847, - "createdAt": "2023-01-26T12:32:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d272b87f0dd5f341fbd46f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2732b7f0dd5f341fbe06e", - "namespace": "pd3", - "name": "Headshot SPM11 IV", - "description": "Defeat 60 enemies by headshot with the SPM11.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d272f37f0dd5f341fbd4d1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d2732b0c06b20001e75ceb", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL38", - "Kill", - "Perfect", - "SPM11" - ], - "orderNo": 2147483848, - "createdAt": "2023-01-26T12:33:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d272f37f0dd5f341fbd4d1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d155737f0dd5f341f8ad50", - "namespace": "pd3", - "name": "Headshot Stryk7 I", - "description": "Defeat an enemy by headshot with the Stryk7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d155730c06b20001e70a37", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483837, - "createdAt": "2023-01-25T16:14:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d155e57f0dd5f341f8b02b", - "namespace": "pd3", - "name": "Headshot Stryk7 II", - "description": "Defeat 10 enemies by headshot with the Stryk7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d155737f0dd5f341f8ad50" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d155e50c06b20001e70a9c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483838, - "createdAt": "2023-01-25T16:16:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d155737f0dd5f341f8ad50", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d156207f0dd5f341f8b02c", - "namespace": "pd3", - "name": "Headshot Stryk7 III", - "description": "Defeat 30 enemies by headshot with the Stryk7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d155e57f0dd5f341f8b02b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d156200c06b20001e70a9d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483839, - "createdAt": "2023-01-25T16:17:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d155e57f0dd5f341f8b02b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d156747f0dd5f341f8b36d", - "namespace": "pd3", - "name": "Headshot Stryk7 IV", - "description": "Defeat 60 enemies by headshot with the Stryk7.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d156207f0dd5f341f8b02c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d156740c06b20001e70b02", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483840, - "createdAt": "2023-01-25T16:19:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d156207f0dd5f341f8b02c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d1498b7f0dd5f341f88d03", - "namespace": "pd3", - "name": "Headshot VF7S I", - "description": "Defeat an enemy by headshot with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63d1498b0c06b20001e7073b", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483817, - "createdAt": "2023-01-25T15:23:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d149d97f0dd5f341f88d5c", - "namespace": "pd3", - "name": "Headshot VF7S II", - "description": "Defeat 10 enemies with a headshot with the VF-7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d1498b7f0dd5f341f88d03" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d149d90c06b20001e7073c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483818, - "createdAt": "2023-01-25T15:25:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d1498b7f0dd5f341f88d03", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14a187f0dd5f341f88d5d", - "namespace": "pd3", - "name": "Headshot VF7S III", - "description": "Defeat 30 enemies by headshot with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d149d97f0dd5f341f88d5c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d14a180c06b20001e7073f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483819, - "createdAt": "2023-01-25T15:26:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d149d97f0dd5f341f88d5c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d14a667f0dd5f341f8907b", - "namespace": "pd3", - "name": "Headshot VF7S IV", - "description": "Defeat 60 enemies by headshot with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d14a187f0dd5f341f88d5d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63d14a660c06b20001e707a4", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Headshot", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483820, - "createdAt": "2023-01-25T15:27:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d14a187f0dd5f341f88d5d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-headshot-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f0c421282a2b1cd9de86", - "namespace": "pd3", - "name": "HET5 I", - "description": "Defeat 10 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d3f0c4f885db000189fe30", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147483987, - "createdAt": "2023-01-27T15:41:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f10021282a2b1cd9de87", - "namespace": "pd3", - "name": "HET5 II", - "description": "Defeat 50 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f0c421282a2b1cd9de86" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3f100f885db000189fe37", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147483988, - "createdAt": "2023-01-27T15:42:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f0c421282a2b1cd9de86", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f13b21282a2b1cd9df75", - "namespace": "pd3", - "name": "HET5 III", - "description": "Defeat 100 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f10021282a2b1cd9de87" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3f13bf885db000189fe41", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147483989, - "createdAt": "2023-01-27T15:43:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f10021282a2b1cd9de87", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f17f21282a2b1cd9e168", - "namespace": "pd3", - "name": "HET5 IV", - "description": "Defeat 200 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f13b21282a2b1cd9df75" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3f17ff885db000189fe43", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147483990, - "createdAt": "2023-01-27T15:45:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f13b21282a2b1cd9df75", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee39838f18e8f29186df5d", - "namespace": "pd3", - "name": "HET5 Special Units I", - "description": "Defeat 10 special enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63ee3983e2027d0001bf396c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill", - "Special" - ], - "orderNo": 2147484308, - "createdAt": "2023-02-16T14:11:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee39e88f18e8f29186e0b1", - "namespace": "pd3", - "name": "HET5 Special Units II", - "description": "Defeat 25 special enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee39838f18e8f29186df5d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63ee39e8e2027d0001bf396d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill", - "Special" - ], - "orderNo": 2147484309, - "createdAt": "2023-02-16T14:12:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ee39838f18e8f29186df5d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee3a8d8f18e8f29186e574", - "namespace": "pd3", - "name": "HET5 Special Units III", - "description": "Defeat 50 special enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee39e88f18e8f29186e0b1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63ee3a8de2027d0001bf397a", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill", - "Special" - ], - "orderNo": 2147484310, - "createdAt": "2023-02-16T14:15:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ee39e88f18e8f29186e0b1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee3ae68f18e8f29186e672", - "namespace": "pd3", - "name": "HET5 Special Units IV", - "description": "Defeat 100 special enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee3a8d8f18e8f29186e574" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ee3ae6e2027d0001bf397b", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill", - "Special" - ], - "orderNo": 2147484311, - "createdAt": "2023-02-16T14:17:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ee3a8d8f18e8f29186e574", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee3b418f18e8f29186e756", - "namespace": "pd3", - "name": "HET5 Special Units V", - "description": "Defeat 250 special enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee3ae68f18e8f29186e672" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "value": 250 - } - ] - }, - "reward": { - "rewardId": "63ee3b41e2027d0001bf397c", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill", - "Special" - ], - "orderNo": 2147484312, - "createdAt": "2023-02-16T14:18:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ee3ae68f18e8f29186e672", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-specialenemies-kills", - "currentValue": 0, - "targetValue": 250 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3f1ab21282a2b1cd9e27c", - "namespace": "pd3", - "name": "HET5 V", - "description": "Defeat 300 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f17f21282a2b1cd9e168" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "63d3f1ab6b37680001409852", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147483991, - "createdAt": "2023-01-27T15:45:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f17f21282a2b1cd9e168", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411dde083c1792981dd70be", - "namespace": "pd3", - "name": "HET5 VI", - "description": "Defeat 400 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3f1ab21282a2b1cd9e27c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "6411dde0e2027d0001c0fa43", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147484370, - "createdAt": "2023-03-15T15:01:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3f1ab21282a2b1cd9e27c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411de1d83c1792981dd72fa", - "namespace": "pd3", - "name": "HET5 VII", - "description": "Defeat 500 enemies with the HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411dde083c1792981dd70be" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "6411de1de2027d0001c0fa46", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "HET5", - "IL40", - "Kill" - ], - "orderNo": 2147484371, - "createdAt": "2023-03-15T15:02:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411dde083c1792981dd70be", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-het5-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdf567f0dd5f341f3b376", - "namespace": "pd3", - "name": "Human Shield Helmet I", - "description": "Defeat an enemy with a headshot while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfdf56c9460a0001ef6ad8", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Headshot", - "Kill" - ], - "orderNo": 2147483769, - "createdAt": "2023-01-24T13:38:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdf967f0dd5f341f3b3c2", - "namespace": "pd3", - "name": "Human Shield Helmet II", - "description": "Defeat 10 enemies with a headshot while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdf567f0dd5f341f3b376" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfdf96c9460a0001ef6ad9", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Headshot", - "Kill" - ], - "orderNo": 2147483770, - "createdAt": "2023-01-24T13:39:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdf567f0dd5f341f3b376", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdfd67f0dd5f341f3b40b", - "namespace": "pd3", - "name": "Human Shield Helmet III", - "description": "Defeat 50 enemies with a headshot while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdf967f0dd5f341f3b3c2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cfdfd6c9460a0001ef6ada", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Headshot", - "Kill" - ], - "orderNo": 2147483771, - "createdAt": "2023-01-24T13:40:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdf967f0dd5f341f3b3c2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe0267f0dd5f341f3b4ac", - "namespace": "pd3", - "name": "Human Shield Helmet IV", - "description": "Defeat 100 enemies with a headshot while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdfd67f0dd5f341f3b40b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfe026c9460a0001ef6ade", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Kill", - "Headshot" - ], - "orderNo": 2147483772, - "createdAt": "2023-01-24T13:41:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdfd67f0dd5f341f3b40b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-headshot-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdda97f0dd5f341f3b233", - "namespace": "pd3", - "name": "Human Shield Killer I", - "description": "Defeat an enemy while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfdda9c9460a0001ef6acf", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Kill" - ], - "orderNo": 2147483765, - "createdAt": "2023-01-24T13:31:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfde057f0dd5f341f3b27c", - "namespace": "pd3", - "name": "Human Shield Killer II", - "description": "Defeat 10 enemies while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdda97f0dd5f341f3b233" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cfde05c9460a0001ef6ad2", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Kill" - ], - "orderNo": 2147483766, - "createdAt": "2023-01-24T13:32:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdda97f0dd5f341f3b233", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfde437f0dd5f341f3b2ca", - "namespace": "pd3", - "name": "Human Shield Killer III", - "description": "Defeat 50 enemies while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfde057f0dd5f341f3b27c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cfde43c9460a0001ef6ad5", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Kill" - ], - "orderNo": 2147483767, - "createdAt": "2023-01-24T13:33:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfde057f0dd5f341f3b27c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfde867f0dd5f341f3b2cb", - "namespace": "pd3", - "name": "Human Shield Killer IV", - "description": "Defeat 100 enemies while using a human shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfde437f0dd5f341f3b2ca" - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63cfde86c9460a0001ef6ad7", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Kill" - ], - "orderNo": 2147483768, - "createdAt": "2023-01-24T13:35:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfde437f0dd5f341f3b2ca", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "human-shield-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce99657f0dd5f341f2f912", - "namespace": "pd3", - "name": "I Want a Pizza I", - "description": "Trade a hostage.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ce9965c9460a0001ef5801", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hostage", - "Tutorial" - ], - "orderNo": 2147483662, - "createdAt": "2023-01-23T14:27:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce99be7f0dd5f341f2f913", - "namespace": "pd3", - "name": "I Want a Pizza II", - "description": "Trade 10 hostages.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce99657f0dd5f341f2f912" - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63ce99bec9460a0001ef5802", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hostage" - ], - "orderNo": 2147483663, - "createdAt": "2023-01-23T14:29:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce99657f0dd5f341f2f912", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9ae97f0dd5f341f2f9e0", - "namespace": "pd3", - "name": "I Want a Pizza III", - "description": "Trade 30 hostages.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce99be7f0dd5f341f2f913" - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63ce9ae9c9460a0001ef5803", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hostage" - ], - "orderNo": 2147483664, - "createdAt": "2023-01-23T14:34:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce99be7f0dd5f341f2f913", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9b2c7f0dd5f341f2f9e1", - "namespace": "pd3", - "name": "I Want a Pizza IV", - "description": "Trade 60 hostages.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9ae97f0dd5f341f2f9e0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ce9b2cc9460a0001ef5804", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hostage" - ], - "orderNo": 2147483665, - "createdAt": "2023-01-23T14:35:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9ae97f0dd5f341f2f9e0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9bb27f0dd5f341f2fa17", - "namespace": "pd3", - "name": "I Want a Pizza V", - "description": "Trade 100 hostages.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9b2c7f0dd5f341f2f9e1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "63ce9bb2c9460a0001ef5805", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hostage" - ], - "orderNo": 2147483666, - "createdAt": "2023-01-23T14:37:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9b2c7f0dd5f341f2f9e1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "hostages-traded", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce81aa7f0dd5f341f2e213", - "namespace": "pd3", - "name": "I'm In I", - "description": "Hack a device.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ce81aac9460a0001ef5514", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hacking", - "Tutorial" - ], - "orderNo": 2147483657, - "createdAt": "2023-01-23T12:46:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce82187f0dd5f341f2e4b5", - "namespace": "pd3", - "name": "I'm In II", - "description": "Hack 20 devices.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce81aa7f0dd5f341f2e213" - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63ce8218c9460a0001ef5579", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hacking" - ], - "orderNo": 2147483658, - "createdAt": "2023-01-23T12:48:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce81aa7f0dd5f341f2e213", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce826a7f0dd5f341f2e4b6", - "namespace": "pd3", - "name": "I'm In III", - "description": "Hack 50 devices.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce82187f0dd5f341f2e4b5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63ce826ac9460a0001ef557a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hacking" - ], - "orderNo": 2147483659, - "createdAt": "2023-01-23T12:49:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce82187f0dd5f341f2e4b5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce82ca7f0dd5f341f2e4b7", - "namespace": "pd3", - "name": "I'm In IV", - "description": "Hack 100 devices.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce826a7f0dd5f341f2e4b6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63ce82cac9460a0001ef557b", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hacking" - ], - "orderNo": 2147483660, - "createdAt": "2023-01-23T12:51:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce826a7f0dd5f341f2e4b6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce83a17f0dd5f341f2e4ec", - "namespace": "pd3", - "name": "I'm In V", - "description": "Hack 300 devices.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce82ca7f0dd5f341f2e4b7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ce83a1c9460a0001ef5582", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Hacking" - ], - "orderNo": 2147483661, - "createdAt": "2023-01-23T12:54:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce82ca7f0dd5f341f2e4b7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "devices-hacked", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632983f41db0ef9df33a6a10", - "namespace": "pd3", - "name": "Infamy Gold MS 1", - "description": "Reach Infamy Level 4", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "632983f49f69220001bcf863", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 335, - "createdAt": "2022-09-20T09:12:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329885e1db0ef9df33a6cc8", - "namespace": "pd3", - "name": "Infamy Gold MS 10", - "description": "Reach Infamy Level 75", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 30600 - } - ] - }, - "reward": { - "rewardId": "6329885e9f69220001bcf8b4", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 344, - "createdAt": "2022-09-20T09:31:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 30600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632988cb1db0ef9df33a6cd4", - "namespace": "pd3", - "name": "Infamy Gold MS 11", - "description": "Reach Infamy Level 84", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 37300 - } - ] - }, - "reward": { - "rewardId": "632988cb9f69220001bcf8bb", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 345, - "createdAt": "2022-09-20T09:32:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 37300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632989281db0ef9df33a6cd7", - "namespace": "pd3", - "name": "Infamy Gold MS 12", - "description": "Reach Infamy Level 90", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 42100 - } - ] - }, - "reward": { - "rewardId": "632989289f69220001bcf93d", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 346, - "createdAt": "2022-09-20T09:34:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 42100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329896e1db0ef9df33a6e41", - "namespace": "pd3", - "name": "Infamy Gold MS 13", - "description": "Reach Infamy Level 99", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 49300 - } - ] - }, - "reward": { - "rewardId": "6329896e9f69220001bcf94b", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 347, - "createdAt": "2022-09-20T09:35:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 49300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329a0d71db0ef9df33a741f", - "namespace": "pd3", - "name": "Infamy Gold MS 14", - "description": "Reach Infamy Level 100", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 50100 - } - ] - }, - "reward": { - "rewardId": "6329a0d79f69220001bcfa61", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 350, - "createdAt": "2022-09-20T11:15:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 50100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329a14e1db0ef9df33a7423", - "namespace": "pd3", - "name": "Infamy Gold MS 15", - "description": "Reach Infamy Level 101", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 50900 - } - ] - }, - "reward": { - "rewardId": "6329a14e9f69220001bcfa64", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 351, - "createdAt": "2022-09-20T11:17:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 50900 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329a21a1db0ef9df33a7428", - "namespace": "pd3", - "name": "Infamy Gold MS 16", - "description": "Reach Infamy Level 106", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 55650 - } - ] - }, - "reward": { - "rewardId": "6329a21a9f69220001bcfa67", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 352, - "createdAt": "2022-09-20T11:20:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 55650 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329a2721db0ef9df33a745f", - "namespace": "pd3", - "name": "Infamy Gold MS 17", - "description": "Reach Infamy Level 111", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 61650 - } - ] - }, - "reward": { - "rewardId": "6329a2729f69220001bcfa6d", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 353, - "createdAt": "2022-09-20T11:22:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 61650 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329a2c71db0ef9df33a747b", - "namespace": "pd3", - "name": "Infamy Gold MS 18", - "description": "Reach Infamy Level 117", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 70500 - } - ] - }, - "reward": { - "rewardId": "6329a2c79f69220001bcfa77", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 354, - "createdAt": "2022-09-20T11:23:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 70500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c5521db0ef9df33a7a0b", - "namespace": "pd3", - "name": "Infamy Gold MS 19", - "description": "Reach Infamy Level 123", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 81150 - } - ] - }, - "reward": { - "rewardId": "6329c5529f69220001bcfc9c", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 355, - "createdAt": "2022-09-20T13:51:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 81150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632984dd1db0ef9df33a6a13", - "namespace": "pd3", - "name": "Infamy Gold MS 2", - "description": "Reach Infamy Level 14", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 2600 - } - ] - }, - "reward": { - "rewardId": "632984dd9f69220001bcf869", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 336, - "createdAt": "2022-09-20T09:16:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 2600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c5bd1db0ef9df33a7a0c", - "namespace": "pd3", - "name": "Infamy Gold MS 20", - "description": "Reach Infamy Level 127", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 89100 - } - ] - }, - "reward": { - "rewardId": "6329c5bd9f69220001bcfca1", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 356, - "createdAt": "2022-09-20T13:53:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 89100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c60c1db0ef9df33a7a0d", - "namespace": "pd3", - "name": "Infamy Gold MS 21", - "description": "Reach Infamy Level 130", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 95100 - } - ] - }, - "reward": { - "rewardId": "6329c60c9f69220001bcfca2", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 357, - "createdAt": "2022-09-20T13:54:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 95100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c66f1db0ef9df33a7a11", - "namespace": "pd3", - "name": "Infamy Gold MS 22", - "description": "Reach Infamy Level 134", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 103100 - } - ] - }, - "reward": { - "rewardId": "6329c66f9f69220001bcfca4", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 358, - "createdAt": "2022-09-20T13:55:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 103100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c6da1db0ef9df33a7a16", - "namespace": "pd3", - "name": "Infamy Gold MS 23", - "description": "Reach Infamy Level 138", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 111100 - } - ] - }, - "reward": { - "rewardId": "6329c6da9f69220001bcfca6", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 359, - "createdAt": "2022-09-20T13:57:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 111100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c7281db0ef9df33a7a1c", - "namespace": "pd3", - "name": "Infamy Gold MS 24", - "description": "Reach Infamy Level 142", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 122100 - } - ] - }, - "reward": { - "rewardId": "6329c7289f69220001bcfca8", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 360, - "createdAt": "2022-09-20T13:59:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 122100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c7761db0ef9df33a7a2f", - "namespace": "pd3", - "name": "Infamy Gold MS 25", - "description": "Reach Infamy Level 146", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 134100 - } - ] - }, - "reward": { - "rewardId": "6329c7769f69220001bcfcae", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 361, - "createdAt": "2022-09-20T14:00:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 134100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329c7d31db0ef9df33a7a4b", - "namespace": "pd3", - "name": "Infamy Gold MS 26", - "description": "Reach Infamy Level 149", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 145100 - } - ] - }, - "reward": { - "rewardId": "6329c7d39f69220001bcfcb2", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 50, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 362, - "createdAt": "2022-09-20T14:01:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 145100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632985301db0ef9df33a6a15", - "namespace": "pd3", - "name": "Infamy Gold MS 3", - "description": "Reach Infamy Level 21", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 4700 - } - ] - }, - "reward": { - "rewardId": "632985309f69220001bcf86f", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 337, - "createdAt": "2022-09-20T09:17:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 4700 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632985841db0ef9df33a6a19", - "namespace": "pd3", - "name": "Infamy Gold MS 4", - "description": "Reach Infamy Level 34", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 8600 - } - ] - }, - "reward": { - "rewardId": "632985849f69220001bcf871", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 338, - "createdAt": "2022-09-20T09:19:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 8600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632985da1db0ef9df33a6a1a", - "namespace": "pd3", - "name": "Infamy Gold MS 5", - "description": "Reach Infamy Level 46", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 13000 - } - ] - }, - "reward": { - "rewardId": "632985da9f69220001bcf876", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 339, - "createdAt": "2022-09-20T09:20:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 13000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6329863b1db0ef9df33a6a1b", - "namespace": "pd3", - "name": "Infamy Gold MS 6", - "description": "Reach Infamy Level 52", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 16000 - } - ] - }, - "reward": { - "rewardId": "6329863b9f69220001bcf878", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 340, - "createdAt": "2022-09-20T09:22:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 16000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632986ba1db0ef9df33a6b59", - "namespace": "pd3", - "name": "Infamy Gold MS 7", - "description": "Reach Infamy Level 58", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 19600 - } - ] - }, - "reward": { - "rewardId": "632986ba9f69220001bcf886", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 341, - "createdAt": "2022-09-20T09:24:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 19600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632987141db0ef9df33a6b5b", - "namespace": "pd3", - "name": "Infamy Gold MS 8", - "description": "Reach Infamy Level 62", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 22000 - } - ] - }, - "reward": { - "rewardId": "632987149f69220001bcf88a", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 342, - "createdAt": "2022-09-20T09:25:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 22000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632987e61db0ef9df33a6cc4", - "namespace": "pd3", - "name": "Infamy Gold MS 9", - "description": "Reach Infamy Level 71", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 27800 - } - ] - }, - "reward": { - "rewardId": "632987e69f69220001bcf8b1", - "stats": [], - "items": [ - { - "itemId": "4c7e4988a3184057bd24b22c484d6065", - "quantity": 5, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 343, - "createdAt": "2022-09-20T09:29:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 27800 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b9a54e9e44b7cd7f1cda", - "namespace": "pd3", - "name": "Infamy MS - Armor - Combat Vest", - "description": "Reach Infamy Level 8 to unlock Combat Vest", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6363b9a5e4bd820001ce2abe", - "stats": [], - "items": [ - { - "itemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 369, - "createdAt": "2022-11-03T12:52:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363ba164e9e44b7cd7f1cdb", - "namespace": "pd3", - "name": "Infamy MS - Armor - Heavy Ballistic Vest", - "description": "Reach Infamy Level 34 to unlock Heavy Ballistic Vest", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 8600 - } - ] - }, - "reward": { - "rewardId": "6363ba16e4bd820001ce2abf", - "stats": [], - "items": [ - { - "itemId": "0355159b70d845d5be98bbbd82614957", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 370, - "createdAt": "2022-11-03T12:54:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 8600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b8ae4e9e44b7cd7f1ca2", - "namespace": "pd3", - "name": "Infamy MS - Armor - Suit Only", - "description": "Reach Infamy Level 18 to unlock Suit Only", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 3800 - } - ] - }, - "reward": { - "rewardId": "6363b8aee4bd820001ce2abd", - "stats": [], - "items": [ - { - "itemId": "9acb1b0b1ad1405785ee2684725e3d06", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 368, - "createdAt": "2022-11-03T12:48:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 3800 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363baca4e9e44b7cd7f1d10", - "namespace": "pd3", - "name": "Infamy MS - Gadget - ECM", - "description": "Reach Infamy Level 20 to unlock ECM", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 4400 - } - ] - }, - "reward": { - "rewardId": "6363bacae4bd820001ce2ac1", - "stats": [], - "items": [ - { - "itemId": "084202bef99c47c7a384a0106c7b6a2f", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 372, - "createdAt": "2022-11-03T12:57:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 4400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363bb034e9e44b7cd7f1d11", - "namespace": "pd3", - "name": "Infamy MS - Gadget - Sensor", - "description": "Reach Infamy Level 30 to unlock Sensor", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 7400 - } - ] - }, - "reward": { - "rewardId": "6363bb03e4bd820001ce2ac2", - "stats": [], - "items": [ - { - "itemId": "d70af8f6c458400899fcf9990e470540", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 373, - "createdAt": "2022-11-03T12:58:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 7400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363ba854e9e44b7cd7f1d0f", - "namespace": "pd3", - "name": "Infamy MS - Gadget - Stun Mine", - "description": "Reach Infamy Level 10 to unlock Stun Mine", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 1400 - } - ] - }, - "reward": { - "rewardId": "6363ba85e4bd820001ce2ac0", - "stats": [], - "items": [ - { - "itemId": "acb366ee4d554ab3b4831c743969855c", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 371, - "createdAt": "2022-11-03T12:56:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 1400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "636518374e9e44b7cd7f8641", - "namespace": "pd3", - "name": "Infamy MS - Overkill - HET5", - "description": "Reach Infamy Level 40 to unlock HET5", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 10400 - } - ] - }, - "reward": { - "rewardId": "63651837b861680001573b06", - "stats": [], - "items": [ - { - "itemId": "478952d6ba3a4a10ac4cb85c453dc94a", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 374, - "createdAt": "2022-11-04T13:48:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 10400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "632d7d2d29db980df05a2e05", - "namespace": "pd3", - "name": "Infamy MS - Placeable - Armor Bag", - "description": "Reach Infamy Level 2 to Unlock Armor Bag", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "632d7d2d59e4510001cf6cb0", - "stats": [], - "items": [ - { - "itemId": "e456f47e7e2e4e2d9a8539ec3819576f", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 363, - "createdAt": "2022-09-23T09:32:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b44c4e9e44b7cd7f1aa0", - "namespace": "pd3", - "name": "Infamy MS - Throwable - Flashbang", - "description": "Reach Infamy Level 7 to unlock Flashbang", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 800 - } - ] - }, - "reward": { - "rewardId": "6363b44ce4bd820001ce2a63", - "stats": [], - "items": [ - { - "itemId": "3b3533976a50486ba362bf19bbb2e97d", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 364, - "createdAt": "2022-11-03T12:30:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 800 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b61a4e9e44b7cd7f1b6a", - "namespace": "pd3", - "name": "Infamy MS - Throwable - Smoke Grenade", - "description": "Reach Infamy Level 27 to unlock Smoke Grenade", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 6500 - } - ] - }, - "reward": { - "rewardId": "6363b61ae4bd820001ce2ab9", - "stats": [], - "items": [ - { - "itemId": "145c6ffde3eb454ca33a370d12caf4bc", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 366, - "createdAt": "2022-11-03T12:37:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 6500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b58e4e9e44b7cd7f1b69", - "namespace": "pd3", - "name": "Infamy MS - Throwable - Throwing Knife", - "description": "Reach Infamy Level 16 to unlock Throwing Knife", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "value": 3200 - } - ] - }, - "reward": { - "rewardId": "6363b58ee4bd820001ce2ab8", - "stats": [], - "items": [ - { - "itemId": "778b204d45a64ce68ec9720c220350be", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 365, - "createdAt": "2022-11-03T12:35:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "infamy-point", - "currentValue": 0, - "targetValue": 3200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e7c1c28fe1154bf4b6f80", - "namespace": "pd3", - "name": "Jewelry Store Loud I", - "description": "Beat Jewelry Store on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e7c1c30e7810001865403", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2, - "createdAt": "2022-04-19T09:08:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb99828fe1154bf4b70fc", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender I", - "description": "Beat Jewelry Store 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e7c1c28fe1154bf4b6f80" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "625eb99830e7810001865498", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 26, - "createdAt": "2022-04-19T13:31:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e7c1c28fe1154bf4b6f80", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd5bdd28fe1154bf4c1369", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender II", - "description": "Beat Jewelry Store 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb99828fe1154bf4b70fc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62cd5bdd07a95c0001906dee", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 179, - "createdAt": "2022-07-12T11:32:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625eb99828fe1154bf4b70fc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd5cfc28fe1154bf4c136d", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender III", - "description": "Beat Jewelry Store 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd5bdd28fe1154bf4c1369" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62cd5cfc07a95c0001906df7", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 180, - "createdAt": "2022-07-12T11:37:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd5bdd28fe1154bf4c1369", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd5e0d28fe1154bf4c1374", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender IV", - "description": "Beat Jewelry Store 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd5cfc28fe1154bf4c136d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62cd5e0d07a95c0001906dfb", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 181, - "createdAt": "2022-07-12T11:42:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd5cfc28fe1154bf4c136d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7b9de21282a2b1cf15f5d", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender V", - "description": "Beat Jewelry Store 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd5e0d28fe1154bf4c1374" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d7b9de9e43fb000190bf3b", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484036, - "createdAt": "2023-01-30T12:36:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd5e0d28fe1154bf4c1374", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7dfeb21282a2b1cf26cf5", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender VI", - "description": "Beat Jewelry Store 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7b9de21282a2b1cf15f5d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d7dfeb9e43fb000190d254", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484037, - "createdAt": "2023-01-30T15:19:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7b9de21282a2b1cf15f5d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e05821282a2b1cf27e42", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender VII", - "description": "Beat Jewelry Store 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7dfeb21282a2b1cf26cf5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d7e0589e43fb000190d3e5", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484038, - "createdAt": "2023-01-30T15:20:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7dfeb21282a2b1cf26cf5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e0d621282a2b1cf2847f", - "namespace": "pd3", - "name": "Jewelry Store Loud I: Repeat Offender VIII", - "description": "Beat Jewelry Store 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e05821282a2b1cf27e42" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d7e0d69e43fb000190d44a", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484039, - "createdAt": "2023-01-30T15:23:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e05821282a2b1cf27e42", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e7e4028fe1154bf4b6f83", - "namespace": "pd3", - "name": "Jewelry Store Loud II", - "description": "Beat Jewelry Store on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e7e4030e7810001865445", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 3, - "createdAt": "2022-04-19T09:17:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625ebbda28fe1154bf4b7119", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender I", - "description": "Beat Jewelry Store 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e7e4028fe1154bf4b6f83" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "625ebbda30e781000186549f", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 27, - "createdAt": "2022-04-19T13:40:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e7e4028fe1154bf4b6f83", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd607e28fe1154bf4c137c", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender II", - "description": "Beat Jewelry Store 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625ebbda28fe1154bf4b7119" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62cd607e07a95c0001906e06", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 182, - "createdAt": "2022-07-12T11:52:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625ebbda28fe1154bf4b7119", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd647e28fe1154bf4c1435", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender III", - "description": "Beat Jewelry Store 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd607e28fe1154bf4c137c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62cd647e07a95c0001906e2b", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 183, - "createdAt": "2022-07-12T12:09:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd607e28fe1154bf4c137c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd660128fe1154bf4c143b", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender IV", - "description": "Beat Jewelry Store 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd647e28fe1154bf4c1435" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62cd660107a95c0001906e5a", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 184, - "createdAt": "2022-07-12T12:16:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd647e28fe1154bf4c1435", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e18821282a2b1cf2884a", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender V", - "description": "Beat Jewelry Store 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd660128fe1154bf4c143b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d7e1889e43fb000190d44c", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484040, - "createdAt": "2023-01-30T15:26:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd660128fe1154bf4c143b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e1d321282a2b1cf28924", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender VI", - "description": "Beat Jewelry Store 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e18821282a2b1cf2884a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d7e1d39e43fb000190d44d", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484041, - "createdAt": "2023-01-30T15:27:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e18821282a2b1cf2884a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e27621282a2b1cf28a68", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender VII", - "description": "Beat Jewelry Store 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e1d321282a2b1cf28924" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d7e2769e43fb000190d44e", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484042, - "createdAt": "2023-01-30T15:29:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e1d321282a2b1cf28924", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e2c021282a2b1cf28ad5", - "namespace": "pd3", - "name": "Jewelry Store Loud II: Repeat Offender VIII", - "description": "Beat Jewelry Store 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e27621282a2b1cf28a68" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d7e2c09e43fb000190d451", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484043, - "createdAt": "2023-01-30T15:31:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e27621282a2b1cf28a68", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e7f0628fe1154bf4b6f84", - "namespace": "pd3", - "name": "Jewelry Store Loud III", - "description": "Beat Jewelry Store on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e7f0630e7810001865446", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 4, - "createdAt": "2022-04-19T09:21:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd7f8a28fe1154bf4c15f2", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender I", - "description": "Beat Jewelry Store 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e7f0628fe1154bf4b6f84" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62cd7f8a07a95c0001906efe", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 185, - "createdAt": "2022-07-12T14:04:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e7f0628fe1154bf4b6f84", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd804c28fe1154bf4c15f4", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender II", - "description": "Beat Jewelry Store 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd7f8a28fe1154bf4c15f2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62cd804c07a95c0001906f03", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Loud", - "Map", - "Store", - "Very" - ], - "orderNo": 186, - "createdAt": "2022-07-12T14:08:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd7f8a28fe1154bf4c15f2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd814b28fe1154bf4c15f5", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender III", - "description": "Beat Jewelry Store 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd804c28fe1154bf4c15f4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62cd814b07a95c0001906f0a", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Loud", - "Map", - "Store", - "Very" - ], - "orderNo": 187, - "createdAt": "2022-07-12T14:12:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd804c28fe1154bf4c15f4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd827f28fe1154bf4c1609", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender IV", - "description": "Beat Jewelry Store 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd814b28fe1154bf4c15f5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62cd827f07a95c0001906f0d", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Loud", - "Map", - "Store", - "Very" - ], - "orderNo": 188, - "createdAt": "2022-07-12T14:17:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd814b28fe1154bf4c15f5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e38921282a2b1cf28d00", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender V", - "description": "Beat Jewelry Store 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd827f28fe1154bf4c1609" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d7e3899e43fb000190d452", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484044, - "createdAt": "2023-01-30T15:34:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd827f28fe1154bf4c1609", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e3d621282a2b1cf28eb2", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender VI", - "description": "Beat Jewelry Store 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e38921282a2b1cf28d00" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d7e3d69e43fb000190d453", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484045, - "createdAt": "2023-01-30T15:35:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e38921282a2b1cf28d00", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e44621282a2b1cf29d97", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender VII", - "description": "Beat Jewelry Store 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e3d621282a2b1cf28eb2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d7e4469e43fb000190d5e4", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484046, - "createdAt": "2023-01-30T15:37:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e3d621282a2b1cf28eb2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e4dd21282a2b1cf29fc1", - "namespace": "pd3", - "name": "Jewelry Store Loud III: Repeat Offender VIII", - "description": "Beat Jewelry Store 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e44621282a2b1cf29d97" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d7e4dd9e43fb000190d5f1", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484047, - "createdAt": "2023-01-30T15:40:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e44621282a2b1cf29d97", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e81a328fe1154bf4b6f8d", - "namespace": "pd3", - "name": "Jewelry Store Loud IV", - "description": "Beat Jewelry Store on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e81a330e781000186544a", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 5, - "createdAt": "2022-04-19T09:32:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd836c28fe1154bf4c160a", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender I", - "description": "Beat Jewelry Store 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e81a328fe1154bf4b6f8d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62cd836c07a95c0001906f13", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Loud", - "Map", - "Overkill", - "Store" - ], - "orderNo": 189, - "createdAt": "2022-07-12T14:21:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e81a328fe1154bf4b6f8d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd849d28fe1154bf4c1614", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender II", - "description": "Beat Jewelry Store 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd836c28fe1154bf4c160a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62cd849d07a95c0001906f1e", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Loud", - "Map", - "Overkill", - "Store" - ], - "orderNo": 190, - "createdAt": "2022-07-12T14:26:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd836c28fe1154bf4c160a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd8ae328fe1154bf4c1647", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender III", - "description": "Beat Jewelry Store 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd849d28fe1154bf4c1614" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62cd8ae307a95c0001906f2f", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Loud", - "Map", - "Overkill", - "Store" - ], - "orderNo": 191, - "createdAt": "2022-07-12T14:53:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd849d28fe1154bf4c1614", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cd8b8728fe1154bf4c1648", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender IV", - "description": "Beat Jewelry Store 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd8ae328fe1154bf4c1647" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62cd8b8707a95c0001906f31", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Loud", - "Map", - "Overkill", - "Store" - ], - "orderNo": 192, - "createdAt": "2022-07-12T14:56:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd8ae328fe1154bf4c1647", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e58221282a2b1cf2a249", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender V", - "description": "Beat Jewelry Store 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cd8b8728fe1154bf4c1648" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d7e5829e43fb000190d5f3", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484048, - "createdAt": "2023-01-30T15:42:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cd8b8728fe1154bf4c1648", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e5cd21282a2b1cf2a557", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender VI", - "description": "Beat Jewelry Store 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e58221282a2b1cf2a249" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d7e5cd9e43fb000190d5f4", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484049, - "createdAt": "2023-01-30T15:44:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e58221282a2b1cf2a249", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e62321282a2b1cf2a5cf", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender VII", - "description": "Beat Jewelry Store 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e5cd21282a2b1cf2a557" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d7e6239e43fb000190d785", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484050, - "createdAt": "2023-01-30T15:45:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e5cd21282a2b1cf2a557", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e6b421282a2b1cf2b5a0", - "namespace": "pd3", - "name": "Jewelry Store Loud IV: Repeat Offender VIII", - "description": "Beat Jewelry Store 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e62321282a2b1cf2a5cf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d7e6b49e43fb000190d7a6", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484051, - "createdAt": "2023-01-30T15:48:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e62321282a2b1cf2a5cf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee20d98f18e8f291867610", - "namespace": "pd3", - "name": "Jewelry Store Optional Objective I - Eye-Opener", - "description": "Access the Jewelry Workshop in under 5 minutes in stealth on OVERKILL difficulty.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee20d9e2027d0001bf363a", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Jewelry", - "Store", - "Optional" - ], - "orderNo": 2147484286, - "createdAt": "2023-02-16T12:26:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee211c8f18e8f29186792c", - "namespace": "pd3", - "name": "Jewelry Store Optional Objective II - Employee of the Month", - "description": "Successfully blackmail the manager to stay within the store in stealth on any difficulty.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee211ce2027d0001bf3647", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Jewelry", - "Store", - "Optional" - ], - "orderNo": 2147484287, - "createdAt": "2023-02-16T12:27:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee216c8f18e8f291867af4", - "namespace": "pd3", - "name": "Jewelry Store Optional Objective IV - Rare Loot", - "description": "Find the rare loot and secure it.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-4", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee216ce2027d0001bf3648", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Jewelry", - "Store", - "Optional" - ], - "orderNo": 2147484288, - "createdAt": "2023-02-16T12:28:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-4", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee21ba8f18e8f291867c60", - "namespace": "pd3", - "name": "Jewelry Store Optional Objective V - Show Control", - "description": "In the Jewelry Store Heist, control the public showroom, take all its loot and escape without calling the alarm on OVERKILL difficulty.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-5", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee21bae2027d0001bf3649", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Jewelry", - "Store", - "Optional" - ], - "orderNo": 2147484289, - "createdAt": "2023-02-16T12:29:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-optional-objective-5", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e827528fe1154bf4b6f92", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I", - "description": "Beat Jewelry Store on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e827530e781000186544c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 6, - "createdAt": "2022-04-19T09:35:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625ebc6928fe1154bf4b711c", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender I", - "description": "Beat Jewelry Store 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e827528fe1154bf4b6f92" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "625ebc6930e78100018654a1", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 28, - "createdAt": "2022-04-19T13:43:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e827528fe1154bf4b6f92", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ceae6428fe1154bf4c1eb2", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender II", - "description": "Beat Jewelry Store 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625ebc6928fe1154bf4b711c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62ceae6407a95c000190731e", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 193, - "createdAt": "2022-07-13T11:37:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625ebc6928fe1154bf4b711c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62ceaf5928fe1154bf4c2036", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender III", - "description": "Beat Jewelry Store 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ceae6428fe1154bf4c1eb2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62ceaf5907a95c0001907398", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Normal", - "Stealth", - "Store" - ], - "orderNo": 194, - "createdAt": "2022-07-13T11:41:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ceae6428fe1154bf4c1eb2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cfe76028fe1154bf4c2822", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender IV", - "description": "Beat Jewelry Store 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62ceaf5928fe1154bf4c2036" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62cfe76007a95c00019075f7", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Normal", - "Stealth", - "Store" - ], - "orderNo": 195, - "createdAt": "2022-07-14T09:52:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62ceaf5928fe1154bf4c2036", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e7bc21282a2b1cf2ba7c", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender V", - "description": "Beat Jewelry Store 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cfe76028fe1154bf4c2822" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d7e7bc9e43fb000190d7ac", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484052, - "createdAt": "2023-01-30T15:52:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cfe76028fe1154bf4c2822", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e87d21282a2b1cf2ca50", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender VI", - "description": "Beat Jewelry Store 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e7bc21282a2b1cf2ba7c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d7e87d9e43fb000190d953", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484053, - "createdAt": "2023-01-30T15:55:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e7bc21282a2b1cf2ba7c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e8b621282a2b1cf2ca51", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender VII", - "description": "Beat Jewelry Store 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e87d21282a2b1cf2ca50" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d7e8b69e43fb000190d954", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484054, - "createdAt": "2023-01-30T15:56:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e87d21282a2b1cf2ca50", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d7e8f321282a2b1cf2cb2d", - "namespace": "pd3", - "name": "Jewelry Store Stealthy I: Repeat Offender VIII", - "description": "Beat Jewelry Store 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d7e8b621282a2b1cf2ca51" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d7e8f39e43fb000190d955", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Jewelry", - "Store" - ], - "orderNo": 2147484055, - "createdAt": "2023-01-30T15:57:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d7e8b621282a2b1cf2ca51", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e833828fe1154bf4b6fa1", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II", - "description": "Beat Jewelry Store on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e833830e7810001865451", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 7, - "createdAt": "2022-04-19T09:39:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625ebd7c28fe1154bf4b7139", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender I", - "description": "Beat Jewelry Store 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e833828fe1154bf4b6fa1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "625ebd7c30e78100018654a5", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 29, - "createdAt": "2022-04-19T13:47:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e833828fe1154bf4b6fa1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cfe8df28fe1154bf4c2823", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender II", - "description": "Beat Jewelry Store 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625ebd7c28fe1154bf4b7139" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62cfe8df07a95c00019075f9", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 196, - "createdAt": "2022-07-14T09:58:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625ebd7c28fe1154bf4b7139", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cfe9c328fe1154bf4c2824", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender III", - "description": "Beat Jewelry Store 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cfe8df28fe1154bf4c2823" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62cfe9c307a95c00019075fa", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Map", - "Stealth", - "Store" - ], - "orderNo": 197, - "createdAt": "2022-07-14T10:02:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cfe8df28fe1154bf4c2823", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cfead028fe1154bf4c2825", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender IV", - "description": "Beat Jewelry Store 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cfe9c328fe1154bf4c2824" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62cfead007a95c00019075fb", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Map", - "Stealth", - "Store" - ], - "orderNo": 198, - "createdAt": "2022-07-14T10:07:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cfe9c328fe1154bf4c2824", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8d81821282a2b1cf90005", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender V", - "description": "Beat Jewelry Store 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62cfead028fe1154bf4c2825" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d8d8189e43fb0001914f14", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484056, - "createdAt": "2023-01-31T08:58:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62cfead028fe1154bf4c2825", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8d85e21282a2b1cf9014a", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender VI", - "description": "Beat Jewelry Store 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8d81821282a2b1cf90005" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d8d85e9e43fb0001914f15", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484057, - "createdAt": "2023-01-31T08:59:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8d81821282a2b1cf90005", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8d8eb21282a2b1cf904b2", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender VII", - "description": "Beat Jewelry Store 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8d85e21282a2b1cf9014a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d8d8eb9e43fb0001914f1a", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484058, - "createdAt": "2023-01-31T09:01:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8d85e21282a2b1cf9014a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8d93621282a2b1cf905f6", - "namespace": "pd3", - "name": "Jewelry Store Stealthy II: Repeat Offender VIII", - "description": "Beat Jewelry Store 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8d8eb21282a2b1cf904b2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d8d9369e43fb0001914f1b", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Jewerly", - "Store", - "Hard" - ], - "orderNo": 2147484059, - "createdAt": "2023-01-31T09:02:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8d8eb21282a2b1cf904b2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e83af28fe1154bf4b6fa2", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III", - "description": "Beat Jewelry Store on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e83af30e7810001865452", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 8, - "createdAt": "2022-04-19T09:41:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d011cc28fe1154bf4c2a7d", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender I", - "description": "Beat Jewelry Store 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e83af28fe1154bf4b6fa2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62d011cc07a95c0001907656", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 199, - "createdAt": "2022-07-14T12:53:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e83af28fe1154bf4b6fa2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d0129228fe1154bf4c2a7e", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender II", - "description": "Beat Jewelry Store 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d011cc28fe1154bf4c2a7d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62d0129207a95c0001907657", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Map", - "Stealth", - "Store", - "Very" - ], - "orderNo": 200, - "createdAt": "2022-07-14T12:56:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d011cc28fe1154bf4c2a7d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d0140d28fe1154bf4c2a81", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender III", - "description": "Beat Jewelry Store 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d0129228fe1154bf4c2a7e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62d0140d07a95c000190765d", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Map", - "Stealth", - "Store", - "Very" - ], - "orderNo": 201, - "createdAt": "2022-07-14T13:03:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d0129228fe1154bf4c2a7e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d0153928fe1154bf4c2a82", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender IV", - "description": "Beat Jewelry Store 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d0140d28fe1154bf4c2a81" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62d0153907a95c000190765f", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Jewelry", - "Map", - "Stealth", - "Store", - "Very" - ], - "orderNo": 202, - "createdAt": "2022-07-14T13:08:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d0140d28fe1154bf4c2a81", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8dd7121282a2b1cf9396b", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender V", - "description": "Beat Jewelry Store 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d0153928fe1154bf4c2a82" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d8dd719e43fb000191530e", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484060, - "createdAt": "2023-01-31T09:20:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d0153928fe1154bf4c2a82", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8de3c21282a2b1cf94914", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender VI", - "description": "Beat Jewelry Store 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8dd7121282a2b1cf9396b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d8de3c9e43fb000191549f", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484061, - "createdAt": "2023-01-31T09:24:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8dd7121282a2b1cf9396b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8ded521282a2b1cf949f5", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender VII", - "description": "Beat Jewelry Store 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8de3c21282a2b1cf94914" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d8ded59e43fb00019154ab", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484062, - "createdAt": "2023-01-31T09:26:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8de3c21282a2b1cf94914", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8df5721282a2b1cf94a65", - "namespace": "pd3", - "name": "Jewelry Store Stealthy III: Repeat Offender VIII", - "description": "Beat Jewelry Store 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8ded521282a2b1cf949f5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d8df579e43fb00019154ac", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Jewelry", - "Store" - ], - "orderNo": 2147484063, - "createdAt": "2023-01-31T09:28:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8ded521282a2b1cf949f5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e848d28fe1154bf4b6fa3", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV", - "description": "Beat Jewelry Store on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e848d30e7810001865453", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 9, - "createdAt": "2022-04-19T09:44:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d016ba28fe1154bf4c2a83", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender I", - "description": "Beat Jewelry Store 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e848d28fe1154bf4b6fa3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62d016ba07a95c0001907661", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Overkill", - "Stealth", - "Store" - ], - "orderNo": 203, - "createdAt": "2022-07-14T13:14:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "625e848d28fe1154bf4b6fa3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d017b028fe1154bf4c2a84", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender II", - "description": "Beat Jewelry Store 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d016ba28fe1154bf4c2a83" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62d017b007a95c0001907663", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Overkill", - "Stealth", - "Store" - ], - "orderNo": 204, - "createdAt": "2022-07-14T13:18:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d016ba28fe1154bf4c2a83", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d0190c28fe1154bf4c2ad4", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender III", - "description": "Beat Jewelry Store 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d017b028fe1154bf4c2a84" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62d0190c07a95c0001907666", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Overkill", - "Stealth", - "Store" - ], - "orderNo": 205, - "createdAt": "2022-07-14T13:24:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d017b028fe1154bf4c2a84", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62d01a4f28fe1154bf4c2ad5", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender IV", - "description": "Beat Jewelry Store 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d0190c28fe1154bf4c2ad4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62d01a4f07a95c0001907667", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Jewelry", - "Map", - "Overkill", - "Stealth", - "Store" - ], - "orderNo": 206, - "createdAt": "2022-07-14T13:29:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d0190c28fe1154bf4c2ad4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e06b21282a2b1cf95bf3", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender V", - "description": "Beat Jewelry Store 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62d01a4f28fe1154bf4c2ad5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d8e06b9e43fb0001915652", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484064, - "createdAt": "2023-01-31T09:33:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62d01a4f28fe1154bf4c2ad5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e0b421282a2b1cf95c61", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender VI", - "description": "Beat Jewelry Store 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e06b21282a2b1cf95bf3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d8e0b49e43fb0001915653", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484065, - "createdAt": "2023-01-31T09:34:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e06b21282a2b1cf95bf3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e13921282a2b1cf960a2", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender VII", - "description": "Beat Jewelry Store 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e0b421282a2b1cf95c61" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d8e1399e43fb00019156f8", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Jewelry", - "Store" - ], - "orderNo": 2147484066, - "createdAt": "2023-01-31T09:36:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e0b421282a2b1cf95c61", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d8e1c321282a2b1cf96fdf", - "namespace": "pd3", - "name": "Jewelry Store Stealthy IV: Repeat Offender VIII", - "description": "Beat Jewelry Store 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d8e13921282a2b1cf960a2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d8e1c39e43fb000191584c", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Jewerly", - "Store" - ], - "orderNo": 2147484067, - "createdAt": "2023-01-31T09:39:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d8e13921282a2b1cf960a2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cbe0b828fe1154bf4c06ef", - "namespace": "pd3", - "name": "Jewelry Store: Full Payout", - "description": "Escape with the maximum payout", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cbe0b807a95c0001906774", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Jewelry", - "Store", - "Max", - "Heist" - ], - "orderNo": 171, - "createdAt": "2022-07-11T08:35:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cbe18e28fe1154bf4c06f0", - "namespace": "pd3", - "name": "Jewelry Store: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cbe18e07a95c0001906775", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Jewelry", - "Store", - "No", - "Down", - "Heist" - ], - "orderNo": 172, - "createdAt": "2022-07-11T08:38:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "jewelrystore-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff6087f0dd5f341f42955", - "namespace": "pd3", - "name": "Just in Time I", - "description": "Defeat a guard while he is detecting you.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cff608c9460a0001ef7ab1", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Detect", - "Kill" - ], - "orderNo": 2147483813, - "createdAt": "2023-01-24T15:15:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff6407f0dd5f341f42a48", - "namespace": "pd3", - "name": "Just in Time II", - "description": "Defeat 10 guards while they are detecting you.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff6087f0dd5f341f42955" - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63cff640c9460a0001ef7ab2", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Detect", - "Kill" - ], - "orderNo": 2147483814, - "createdAt": "2023-01-24T15:16:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff6087f0dd5f341f42955", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff6887f0dd5f341f42c30", - "namespace": "pd3", - "name": "Just in Time III", - "description": "Defeat 30 guards while they are detecting you.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff6407f0dd5f341f42a48" - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63cff688c9460a0001ef7b19", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Detect", - "Kill" - ], - "orderNo": 2147483815, - "createdAt": "2023-01-24T15:17:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff6407f0dd5f341f42a48", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff6c97f0dd5f341f42cb7", - "namespace": "pd3", - "name": "Just in Time IV", - "description": "Defeat 60 guards while they are detecting you.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff6887f0dd5f341f42c30" - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63cff6c9c9460a0001ef7b1a", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Detect", - "Kill" - ], - "orderNo": 2147483816, - "createdAt": "2023-01-24T15:18:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cff6887f0dd5f341f42c30", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "detected-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdc267f0dd5f341f3afdd", - "namespace": "pd3", - "name": "Keep Your Friends Close I", - "description": "Use human shields for a total of 60 seconds during an Assault.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "value": 180 - } - ] - }, - "reward": { - "rewardId": "63cfdc26c9460a0001ef6ac0", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Time" - ], - "orderNo": 2147483761, - "createdAt": "2023-01-24T13:24:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "currentValue": 0, - "targetValue": 180 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdc6a7f0dd5f341f3b07f", - "namespace": "pd3", - "name": "Keep Your Friends Close II", - "description": "Use human shields for a total of 240 seconds during an Assault.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdc267f0dd5f341f3afdd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "value": 600 - } - ] - }, - "reward": { - "rewardId": "63cfdc6ac9460a0001ef6ac1", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Time" - ], - "orderNo": 2147483762, - "createdAt": "2023-01-24T13:26:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdc267f0dd5f341f3afdd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "currentValue": 0, - "targetValue": 600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdcb17f0dd5f341f3b080", - "namespace": "pd3", - "name": "Keep Your Friends Close III", - "description": "Use human shields for a total of 480 seconds during an Assault.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdc6a7f0dd5f341f3b07f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "value": 1500 - } - ] - }, - "reward": { - "rewardId": "63cfdcb1c9460a0001ef6ac3", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Time" - ], - "orderNo": 2147483763, - "createdAt": "2023-01-24T13:27:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdc6a7f0dd5f341f3b07f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "currentValue": 0, - "targetValue": 1500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfdcec7f0dd5f341f3b081", - "namespace": "pd3", - "name": "Keep Your Friends Close IV", - "description": "Use human shields for a total of 720 seconds during an Assault.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfdcb17f0dd5f341f3b080" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "value": 3600 - } - ] - }, - "reward": { - "rewardId": "63cfdcecc9460a0001ef6ac5", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Human", - "Shield", - "Time" - ], - "orderNo": 2147483764, - "createdAt": "2023-01-24T13:28:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfdcb17f0dd5f341f3b080", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assault-human-shield-time", - "currentValue": 0, - "targetValue": 3600 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41fd628fe1154bf4bda4d", - "namespace": "pd3", - "name": "Kill Cloaker I", - "description": "Defeat a Cloaker enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c41fd607a95c000190471c", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Kill" - ], - "orderNo": 68, - "createdAt": "2022-07-05T11:26:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4208228fe1154bf4bda50", - "namespace": "pd3", - "name": "Kill Cloaker II", - "description": "Defeat 10 Cloaker enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41fd628fe1154bf4bda4d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c4208207a95c000190471e", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Kill" - ], - "orderNo": 69, - "createdAt": "2022-07-05T11:29:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41fd628fe1154bf4bda4d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c420e128fe1154bf4bda51", - "namespace": "pd3", - "name": "Kill Cloaker III", - "description": "Defeat 30 Cloaker enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4208228fe1154bf4bda50" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c420e107a95c0001904720", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Kill" - ], - "orderNo": 70, - "createdAt": "2022-07-05T11:30:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4208228fe1154bf4bda50", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4212b28fe1154bf4bda52", - "namespace": "pd3", - "name": "Kill Cloaker IV", - "description": "Defeat 60 Cloaker enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c420e128fe1154bf4bda51" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c4212b07a95c0001904722", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Cloaker", - "Kill" - ], - "orderNo": 71, - "createdAt": "2022-07-05T11:31:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c420e128fe1154bf4bda51", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cloaker-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c3f96f28fe1154bf4bd90d", - "namespace": "pd3", - "name": "Kill Dozer I", - "description": "Defeat a Dozer enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c3f96f07a95c0001904602", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Kill" - ], - "orderNo": 48, - "createdAt": "2022-07-05T08:42:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c3fa6e28fe1154bf4bd90f", - "namespace": "pd3", - "name": "Kill Dozer II", - "description": "Defeat 10 Dozer enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c3f96f28fe1154bf4bd90d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c3fa6e07a95c0001904609", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Kill" - ], - "orderNo": 49, - "createdAt": "2022-07-05T08:46:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c3f96f28fe1154bf4bd90d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c3fb3928fe1154bf4bd910", - "namespace": "pd3", - "name": "Kill Dozer III", - "description": "Defeat 30 Dozer enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c3fa6e28fe1154bf4bd90f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c3fb3907a95c000190460a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Kill" - ], - "orderNo": 50, - "createdAt": "2022-07-05T08:50:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c3fa6e28fe1154bf4bd90f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c3fbd828fe1154bf4bd911", - "namespace": "pd3", - "name": "Kill Dozer IV", - "description": "Defeat 60 Dozer enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c3fb3928fe1154bf4bd910" - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c3fbd807a95c000190460c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Dozer", - "Kill" - ], - "orderNo": 51, - "createdAt": "2022-07-05T08:52:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c3fb3928fe1154bf4bd910", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "dozer-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4078828fe1154bf4bd938", - "namespace": "pd3", - "name": "Kill Grenadier I", - "description": "Defeat a Grenadier enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c4078807a95c0001904632", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Grenadier", - "Kill" - ], - "orderNo": 56, - "createdAt": "2022-07-05T09:42:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c408ab28fe1154bf4bd94f", - "namespace": "pd3", - "name": "Kill Grenadier II", - "description": "Defeat 10 Grenadier enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4078828fe1154bf4bd938" - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c408ab07a95c000190463c", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Grenadier", - "Kill" - ], - "orderNo": 57, - "createdAt": "2022-07-05T09:47:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4078828fe1154bf4bd938", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4091f28fe1154bf4bd95a", - "namespace": "pd3", - "name": "Kill Grenadier III", - "description": "Defeat 30 Grenadier enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c408ab28fe1154bf4bd94f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c4091f07a95c000190463d", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Grenadier", - "Kill" - ], - "orderNo": 58, - "createdAt": "2022-07-05T09:49:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c408ab28fe1154bf4bd94f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4099728fe1154bf4bd95b", - "namespace": "pd3", - "name": "Kill Grenadier IV", - "description": "Defeat 60 Grenadier enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4091f28fe1154bf4bd95a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c4099707a95c000190463f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Grenadier", - "Kill" - ], - "orderNo": 59, - "createdAt": "2022-07-05T09:51:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4091f28fe1154bf4bd95a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "grenadier-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41b6028fe1154bf4bd988", - "namespace": "pd3", - "name": "Kill Shield I", - "description": "Defeat a Shield enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c41b6007a95c0001904662", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Shield", - "Kill" - ], - "orderNo": 60, - "createdAt": "2022-07-05T11:07:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41be728fe1154bf4bd989", - "namespace": "pd3", - "name": "Kill Shield II", - "description": "Defeat 10 Shield enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41b6028fe1154bf4bd988" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c41be707a95c0001904667", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Shield", - "Kill" - ], - "orderNo": 61, - "createdAt": "2022-07-05T11:09:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41b6028fe1154bf4bd988", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41c6628fe1154bf4bd98a", - "namespace": "pd3", - "name": "Kill Shield III", - "description": "Defeat 30 Shield enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41be728fe1154bf4bd989" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c41c6607a95c000190466a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Shield", - "Kill" - ], - "orderNo": 62, - "createdAt": "2022-07-05T11:11:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41be728fe1154bf4bd989", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41cd528fe1154bf4bd98b", - "namespace": "pd3", - "name": "Kill Shield IV", - "description": "Defeat 60 Shield enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41c6628fe1154bf4bd98a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c41cd507a95c000190466c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Shield", - "Kill" - ], - "orderNo": 63, - "createdAt": "2022-07-05T11:13:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41c6628fe1154bf4bd98a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shield-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41e2128fe1154bf4bd9e3", - "namespace": "pd3", - "name": "Kill Sniper I", - "description": "Defeat a Sniper enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c41e2107a95c00019046bd", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Sniper", - "Kill" - ], - "orderNo": 64, - "createdAt": "2022-07-05T11:18:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41eaf28fe1154bf4bda30", - "namespace": "pd3", - "name": "Kill Sniper II", - "description": "Defeat 10 Sniper enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41e2128fe1154bf4bd9e3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c41eaf07a95c00019046dd", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Sniper", - "Kill" - ], - "orderNo": 65, - "createdAt": "2022-07-05T11:21:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41e2128fe1154bf4bd9e3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41f1e28fe1154bf4bda43", - "namespace": "pd3", - "name": "Kill Sniper III", - "description": "Defeat 30 Sniper enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41eaf28fe1154bf4bda30" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c41f1e07a95c0001904703", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Sniper", - "Kill" - ], - "orderNo": 66, - "createdAt": "2022-07-05T11:23:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41eaf28fe1154bf4bda30", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c41f7528fe1154bf4bda48", - "namespace": "pd3", - "name": "Kill Sniper IV", - "description": "Defeat 60 Sniper enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c41f1e28fe1154bf4bda43" - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c41f7507a95c000190470e", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Sniper", - "Kill" - ], - "orderNo": 67, - "createdAt": "2022-07-05T11:24:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c41f1e28fe1154bf4bda43", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "sniper-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c3ffb328fe1154bf4bd91a", - "namespace": "pd3", - "name": "Kill Taser I", - "description": "Defeat a Taser enemy", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c3ffb307a95c0001904618", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Kill" - ], - "orderNo": 52, - "createdAt": "2022-07-05T09:09:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4014128fe1154bf4bd925", - "namespace": "pd3", - "name": "Kill Taser II", - "description": "Defeat 10 Taser enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c3ffb328fe1154bf4bd91a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c4014107a95c000190461e", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Kill" - ], - "orderNo": 53, - "createdAt": "2022-07-05T09:15:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c3ffb328fe1154bf4bd91a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c403b328fe1154bf4bd92c", - "namespace": "pd3", - "name": "Kill Taser III", - "description": "Defeat 30 Taser enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4014128fe1154bf4bd925" - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62c403b307a95c0001904626", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Kill" - ], - "orderNo": 54, - "createdAt": "2022-07-05T09:26:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4014128fe1154bf4bd925", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c404c928fe1154bf4bd92d", - "namespace": "pd3", - "name": "Kill Taser IV", - "description": "Defeat 60 Taser enemies", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c403b328fe1154bf4bd92c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62c404c907a95c000190462d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Taser", - "Kill" - ], - "orderNo": 55, - "createdAt": "2022-07-05T09:30:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c403b328fe1154bf4bd92c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "taser-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d28b6d7f0dd5f341fccead", - "namespace": "pd3", - "name": "KU59 Hip Fire I", - "description": "Defeat 20 enemies while firing from the hip with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d28b6d0c06b20001e7726b", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483872, - "createdAt": "2023-01-26T14:17:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d28bc97f0dd5f341fcdb31", - "namespace": "pd3", - "name": "KU59 Hip Fire II", - "description": "Defeat 50 enemies while firing from the hip with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d28b6d7f0dd5f341fccead" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d28bc90c06b20001e773fc", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483873, - "createdAt": "2023-01-26T14:18:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d28b6d7f0dd5f341fccead", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d28c437f0dd5f341fcdb32", - "namespace": "pd3", - "name": "KU59 Hip Fire III", - "description": "Defeat 100 enemies while firing from the hip with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d28bc97f0dd5f341fcdb31" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d28c430c06b20001e77409", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483874, - "createdAt": "2023-01-26T14:20:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d28bc97f0dd5f341fcdb31", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d28c9a7f0dd5f341fcdc05", - "namespace": "pd3", - "name": "KU59 Hip Fire IV", - "description": "Defeat 200 enemies while firing from the hip with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d28c9a0c06b20001e7740a", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483875, - "createdAt": "2023-01-26T14:22:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d28ce07f0dd5f341fcdcdf", - "namespace": "pd3", - "name": "KU59 Hip Fire V", - "description": "Defeat 400 enemies while firing from the hip with the KU59.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d28c9a7f0dd5f341fcdc05" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d28ce00c06b20001e7740b", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483876, - "createdAt": "2023-01-26T14:23:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d28c9a7f0dd5f341fcdc05", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-hipfire-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3dbe0640c786dc2682c24", - "namespace": "pd3", - "name": "KU59 I", - "description": "Defeat 50 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3dbe0f885db000189f0f0", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483952, - "createdAt": "2023-01-27T14:12:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3dc30640c786dc2682dd5", - "namespace": "pd3", - "name": "KU59 II", - "description": "Defeat 100 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3dbe0640c786dc2682c24" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3dc30f885db000189f0f2", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483953, - "createdAt": "2023-01-27T14:14:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3dbe0640c786dc2682c24", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3dc5a640c786dc2682dd6", - "namespace": "pd3", - "name": "KU59 III", - "description": "Defeat 200 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3dc30640c786dc2682dd5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3dc5af885db000189f0f6", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483954, - "createdAt": "2023-01-27T14:14:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3dc30640c786dc2682dd5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3dca0640c786dc268318c", - "namespace": "pd3", - "name": "KU59 IV", - "description": "Defeat 350 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3dc5a640c786dc2682dd6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "63d3dca0f885db000189f0f7", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483955, - "createdAt": "2023-01-27T14:16:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3dc5a640c786dc2682dd6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e509d87f4d322dc61d4f4e", - "namespace": "pd3", - "name": "KU59 Master", - "description": "Complete a heist with all base mods unlocked for the KU59 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e509d8ae93c90001c98f54", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL35", - "KU59", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484269, - "createdAt": "2023-02-09T14:57:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b0897f4d322dc6198648", - "namespace": "pd3", - "name": "KU59 Rookie", - "description": "Complete a heist using the KU59 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b089ae93c90001c9727f", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL35", - "KU59", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484231, - "createdAt": "2023-02-08T14:24:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3dce2640c786dc26831fb", - "namespace": "pd3", - "name": "KU59 V", - "description": "Defeat 500 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3dca0640c786dc268318c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63d3dce2f885db000189f0fd", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147483956, - "createdAt": "2023-01-27T14:17:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3dca0640c786dc268318c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3d11e7f4d322dc61a0995", - "namespace": "pd3", - "name": "KU59 Veteran", - "description": "Complete a heist with four mod slots filled on the KU59 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3d11eae93c90001c97620", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL35", - "KU59", - "Meta", - "Mod", - "Unlock" - ], - "orderNo": 2147484248, - "createdAt": "2023-02-08T16:43:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c1c683c1792981db86a4", - "namespace": "pd3", - "name": "KU59 VI", - "description": "Defeat 750 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3dce2640c786dc26831fb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411c1c6e2027d0001c0f231", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147484340, - "createdAt": "2023-03-15T13:01:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3dce2640c786dc26831fb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c20083c1792981db8f81", - "namespace": "pd3", - "name": "KU59 VII", - "description": "Defeat 1000 enemies with the KU59", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411c1c683c1792981db86a4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411c200e2027d0001c0f283", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL35", - "KU59", - "Kill" - ], - "orderNo": 2147484341, - "createdAt": "2023-03-15T13:02:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411c1c683c1792981db86a4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-ku59-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9ccf7f0dd5f341f2fa4c", - "namespace": "pd3", - "name": "Like a Hot Knife I", - "description": "Cut a glass panel.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ce9ccfc9460a0001ef580d", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Cutting", - "Tutorial" - ], - "orderNo": 2147483667, - "createdAt": "2023-01-23T14:42:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9d4c7f0dd5f341f2fa4d", - "namespace": "pd3", - "name": "Like a Hot Knife II", - "description": "Cut 20 glass panels.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9ccf7f0dd5f341f2fa4c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63ce9d4cc9460a0001ef5821", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Cutting" - ], - "orderNo": 2147483668, - "createdAt": "2023-01-23T14:44:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9ccf7f0dd5f341f2fa4c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9d9c7f0dd5f341f2fa4e", - "namespace": "pd3", - "name": "Like a Hot Knife III", - "description": "Cut 50 glass panels.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9d4c7f0dd5f341f2fa4d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63ce9d9cc9460a0001ef5822", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Cutting" - ], - "orderNo": 2147483669, - "createdAt": "2023-01-23T14:45:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9d4c7f0dd5f341f2fa4d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9de07f0dd5f341f2fa89", - "namespace": "pd3", - "name": "Like a Hot Knife IV", - "description": "Cut 100 glass panels.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9d9c7f0dd5f341f2fa4e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63ce9de0c9460a0001ef582f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Cutting" - ], - "orderNo": 2147483670, - "createdAt": "2023-01-23T14:46:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9d9c7f0dd5f341f2fa4e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9e147f0dd5f341f2fac1", - "namespace": "pd3", - "name": "Like a Hot Knife V", - "description": "Cut 300 glass panels.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9de07f0dd5f341f2fa89" - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ce9e14c9460a0001ef5832", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Cutting" - ], - "orderNo": 2147483671, - "createdAt": "2023-01-23T14:47:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce9de07f0dd5f341f2fa89", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "cut-objects", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c572ad28fe1154bf4be622", - "namespace": "pd3", - "name": "Mamba I", - "description": "Defeat 10 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62c572ad07a95c0001904dc8", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Mamba" - ], - "orderNo": 116, - "createdAt": "2022-07-06T11:31:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5732628fe1154bf4be623", - "namespace": "pd3", - "name": "Mamba II", - "description": "Defeat 50 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c572ad28fe1154bf4be622" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c5732607a95c0001904dc9", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Mamba" - ], - "orderNo": 117, - "createdAt": "2022-07-06T11:33:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c572ad28fe1154bf4be622", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5746d28fe1154bf4be638", - "namespace": "pd3", - "name": "Mamba III", - "description": "Defeat 100 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5732628fe1154bf4be623" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c5746d07a95c0001904dcc", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Mamba" - ], - "orderNo": 118, - "createdAt": "2022-07-06T11:39:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5732628fe1154bf4be623", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c574c228fe1154bf4be639", - "namespace": "pd3", - "name": "Mamba IV", - "description": "Defeat 200 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5746d28fe1154bf4be638" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c574c207a95c0001904dcd", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Mamba" - ], - "orderNo": 119, - "createdAt": "2022-07-06T11:40:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5746d28fe1154bf4be638", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d4ab640c786dc267ee1b", - "namespace": "pd3", - "name": "Mamba Two Kills I", - "description": "Defeat 2 enemies with one Mamba grenade, 5 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63d3d4abf885db000189eaae", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Two", - "One", - "Grenade", - "Kill" - ], - "orderNo": 2147483942, - "createdAt": "2023-01-27T13:42:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d4e0640c786dc267ef9b", - "namespace": "pd3", - "name": "Mamba Two Kills II", - "description": "Defeat 2 enemies with one Mamba grenade, 15 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d4ab640c786dc267ee1b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63d3d4e0f885db000189eaaf", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Two", - "One", - "Grenade", - "Kill" - ], - "orderNo": 2147483943, - "createdAt": "2023-01-27T13:42:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d4ab640c786dc267ee1b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d52e640c786dc267f00e", - "namespace": "pd3", - "name": "Mamba Two Kills III", - "description": "Defeat 2 enemies with one Mamba grenade, 30 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d4e0640c786dc267ef9b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d3d52ef885db000189eab0", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Two", - "One", - "Grenade", - "Kill" - ], - "orderNo": 2147483944, - "createdAt": "2023-01-27T13:44:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d4e0640c786dc267ef9b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d569640c786dc267f0f2", - "namespace": "pd3", - "name": "Mamba Two Kills IV", - "description": "Defeat 2 enemies with one Mamba grenade, 50 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d52e640c786dc267f00e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3d569f885db000189eab1", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Two", - "One", - "Grenade", - "Kill" - ], - "orderNo": 2147483945, - "createdAt": "2023-01-27T13:45:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d52e640c786dc267f00e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d5c3640c786dc267f167", - "namespace": "pd3", - "name": "Mamba Two Kills V", - "description": "Defeat 2 enemies with one Mamba grenade, 75 times", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d569640c786dc267f0f2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "value": 75 - } - ] - }, - "reward": { - "rewardId": "63d3d5c3f885db000189eab2", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Two", - "One", - "Grenade", - "Kill" - ], - "orderNo": 2147483946, - "createdAt": "2023-01-27T13:46:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3d569640c786dc267f0f2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-twoenemies-kills", - "currentValue": 0, - "targetValue": 75 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5752128fe1154bf4be648", - "namespace": "pd3", - "name": "Mamba V", - "description": "Defeat 300 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c574c228fe1154bf4be639" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "62c5752107a95c0001904dcf", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "Mamba" - ], - "orderNo": 120, - "createdAt": "2022-07-06T11:42:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c574c228fe1154bf4be639", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411dcb183c1792981dd5517", - "namespace": "pd3", - "name": "Mamba VI", - "description": "Defeat 400 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5752128fe1154bf4be648" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "6411dcb1e2027d0001c0f9a4", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Kill" - ], - "orderNo": 2147484368, - "createdAt": "2023-03-15T14:56:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c5752128fe1154bf4be648", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411dd0683c1792981dd5bf6", - "namespace": "pd3", - "name": "Mamba VII", - "description": "Defeat 500 enemies with the Mamba", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411dcb183c1792981dd5517" - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "6411dd06e2027d0001c0f9c5", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Mamba", - "Kill" - ], - "orderNo": 2147484369, - "createdAt": "2023-03-15T14:58:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411dcb183c1792981dd5517", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "overkill-mamba-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce7dcb7f0dd5f341f2dfb3", - "namespace": "pd3", - "name": "Master of Unlocking I", - "description": "Pick a locked door.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ce7dcbc9460a0001ef550a", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Lock", - "Tutorial" - ], - "orderNo": 2147483652, - "createdAt": "2023-01-23T12:30:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce7e4e7f0dd5f341f2e044", - "namespace": "pd3", - "name": "Master of Unlocking II", - "description": "Pick 20 locked doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce7dcb7f0dd5f341f2dfb3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63ce7e4ec9460a0001ef550b", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Lock" - ], - "orderNo": 2147483653, - "createdAt": "2023-01-23T12:32:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce7dcb7f0dd5f341f2dfb3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce7ebc7f0dd5f341f2e0a7", - "namespace": "pd3", - "name": "Master of Unlocking III", - "description": "Pick 50 locked doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce7e4e7f0dd5f341f2e044" - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63ce7ebcc9460a0001ef550c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Lock" - ], - "orderNo": 2147483654, - "createdAt": "2023-01-23T12:34:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce7e4e7f0dd5f341f2e044", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce7f907f0dd5f341f2e0a8", - "namespace": "pd3", - "name": "Master of Unlocking IV", - "description": "Pick 100 locked doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce7ebc7f0dd5f341f2e0a7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63ce7f90c9460a0001ef550d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Lock" - ], - "orderNo": 2147483655, - "createdAt": "2023-01-23T12:37:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce7ebc7f0dd5f341f2e0a7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce801f7f0dd5f341f2e10f", - "namespace": "pd3", - "name": "Master of Unlocking V", - "description": "Pick 300 locked doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce7f907f0dd5f341f2e0a8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63ce801fc9460a0001ef5513", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Lock" - ], - "orderNo": 2147483656, - "createdAt": "2023-01-23T12:39:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63ce7f907f0dd5f341f2e0a8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "lock-picked", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a0d47f0dd5f341fd0110", - "namespace": "pd3", - "name": "Mosconi12C Hip Fire I", - "description": "Defeat 20 enemies while firing from the hip with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d2a0d40c06b20001e7768f", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483897, - "createdAt": "2023-01-26T15:48:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a1127f0dd5f341fd0431", - "namespace": "pd3", - "name": "Mosconi12C Hip Fire II", - "description": "Defeat 50 enemies while firing from the hip with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a0d47f0dd5f341fd0110" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d2a1120c06b20001e776f4", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483898, - "createdAt": "2023-01-26T15:49:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a0d47f0dd5f341fd0110", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a1537f0dd5f341fd086b", - "namespace": "pd3", - "name": "Mosconi12C Hip Fire III", - "description": "Defeat 100 enemies while firing from the hip with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a1127f0dd5f341fd0431" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d2a1530c06b20001e77759", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483899, - "createdAt": "2023-01-26T15:50:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a1127f0dd5f341fd0431", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a1b17f0dd5f341fd0bf7", - "namespace": "pd3", - "name": "Mosconi12C Hip Fire IV", - "description": "Defeat 200 enemies while firing from the hip with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a1537f0dd5f341fd086b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d2a1b10c06b20001e777be", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483900, - "createdAt": "2023-01-26T15:52:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a1537f0dd5f341fd086b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a1ec7f0dd5f341fd0bf8", - "namespace": "pd3", - "name": "Mosconi12C Hip Fire V", - "description": "Defeat 400 enemies while firing from the hip with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a1b17f0dd5f341fd0bf7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d2a1ec0c06b20001e77823", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Hip", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483901, - "createdAt": "2023-01-26T15:53:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2a1b17f0dd5f341fd0bf7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-hipfire-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ea8621282a2b1cd9bf32", - "namespace": "pd3", - "name": "Mosconi12C I", - "description": "Defeat 50 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3ea86f885db000189fcad", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483967, - "createdAt": "2023-01-27T15:15:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3eadf21282a2b1cd9c8a2", - "namespace": "pd3", - "name": "Mosconi12C II", - "description": "Defeat 100 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ea8621282a2b1cd9bf32" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3eadff885db000189fcb3", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483968, - "createdAt": "2023-01-27T15:16:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3ea8621282a2b1cd9bf32", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3eb2221282a2b1cd9ca02", - "namespace": "pd3", - "name": "Mosconi12C III", - "description": "Defeat 200 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3eadf21282a2b1cd9c8a2" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3eb22f885db000189fcb4", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483969, - "createdAt": "2023-01-27T15:17:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3eadf21282a2b1cd9c8a2", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3eb5821282a2b1cd9ca8f", - "namespace": "pd3", - "name": "Mosconi12C IV", - "description": "Defeat 350 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3eb2221282a2b1cd9ca02" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "63d3eb58f885db000189fcbb", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483970, - "createdAt": "2023-01-27T15:18:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3eb2221282a2b1cd9ca02", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50c807f4d322dc61d6075", - "namespace": "pd3", - "name": "Mosconi12C Master", - "description": "Complete a heist with all base mods unlocked for the Mosconi12C with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50c80ae93c90001c98fdd", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL43", - "Meta", - "Mod", - "Mosconi12C", - "Unlock" - ], - "orderNo": 2147484274, - "createdAt": "2023-02-09T15:08:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b2fd7f4d322dc619987d", - "namespace": "pd3", - "name": "Mosconi12C Rookie", - "description": "Complete a heist using the Mosconi12C with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b2fdae93c90001c97360", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL43", - "Meta", - "Mod", - "Mosconi12C", - "Unlock" - ], - "orderNo": 2147484236, - "createdAt": "2023-02-08T14:34:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ebac21282a2b1cd9cb0b", - "namespace": "pd3", - "name": "Mosconi12C V", - "description": "Defeat 500 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3eb5821282a2b1cd9ca8f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63d3ebacf885db000189fcc5", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147483971, - "createdAt": "2023-01-27T15:20:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3eb5821282a2b1cd9ca8f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4eed37f4d322dc61ca3e6", - "namespace": "pd3", - "name": "Mosconi12C Veteran", - "description": "Complete a heist with four mod slots filled on the Mosconi12C with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4eed3ae93c90001c98a5e", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL43", - "Meta", - "Mod", - "Mosconi12C", - "Unlock" - ], - "orderNo": 2147484253, - "createdAt": "2023-02-09T13:02:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d07983c1792981dc80d8", - "namespace": "pd3", - "name": "Mosconi12C VI", - "description": "Defeat 750 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ebac21282a2b1cd9cb0b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411d079e2027d0001c0f601", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147484350, - "createdAt": "2023-03-15T14:04:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3ebac21282a2b1cd9cb0b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d0db83c1792981dc8c6f", - "namespace": "pd3", - "name": "Mosconi12C VII", - "description": "Defeat 1000 enemies with the Mosconi12C", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d07983c1792981dc80d8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411d0dbe2027d0001c0f66f", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL43", - "Kill", - "Mosconi12C" - ], - "orderNo": 2147484351, - "createdAt": "2023-03-15T14:06:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411d07983c1792981dc80d8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-mosconi12c-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84cd528fe1154bf4c04ac", - "namespace": "pd3", - "name": "Night Club Loud I", - "description": "Beat Night Club on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84cd507a95c0001905e9a", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 161, - "createdAt": "2022-07-08T15:27:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26b96a74ddca83bcf6972", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender I", - "description": "Beat Night Club 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84cd528fe1154bf4c04ac" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f26b9607a95c000190c7a6", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 303, - "createdAt": "2022-08-09T14:13:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84cd528fe1154bf4c04ac", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26c43a74ddca83bcf6973", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender II", - "description": "Beat Night Club 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26b96a74ddca83bcf6972" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62f26c4307a95c000190c7a8", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 304, - "createdAt": "2022-08-09T14:16:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f26b96a74ddca83bcf6972", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26d91a74ddca83bcf6974", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender III", - "description": "Beat Night Club 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26c43a74ddca83bcf6973" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62f26d9107a95c000190c7ad", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Normal" - ], - "orderNo": 305, - "createdAt": "2022-08-09T14:22:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f26c43a74ddca83bcf6973", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26ebda74ddca83bcf6987", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender IV", - "description": "Beat Night Club 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26d91a74ddca83bcf6974" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62f26ebd07a95c000190c7b1", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Normal" - ], - "orderNo": 306, - "createdAt": "2022-08-09T14:27:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f26d91a74ddca83bcf6974", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9301321282a2b1cfabcdc", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender V", - "description": "Beat Night Club 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26ebda74ddca83bcf6987" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d930139e43fb0001916044", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484100, - "createdAt": "2023-01-31T15:13:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f26ebda74ddca83bcf6987", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9305121282a2b1cfabcdd", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender VI", - "description": "Beat Night Club 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9301321282a2b1cfabcdc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d930519e43fb0001916045", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484101, - "createdAt": "2023-01-31T15:14:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9301321282a2b1cfabcdc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9309721282a2b1cfabf0e", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender VII", - "description": "Beat Night Club 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9305121282a2b1cfabcdd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d930979e43fb0001916046", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484102, - "createdAt": "2023-01-31T15:15:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9305121282a2b1cfabcdd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d930c321282a2b1cfabf0f", - "namespace": "pd3", - "name": "Night Club Loud I: Repeat Offender VIII", - "description": "Beat Night Club 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9309721282a2b1cfabf0e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d930c39e43fb0001916047", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484103, - "createdAt": "2023-01-31T15:16:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9309721282a2b1cfabf0e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84d2328fe1154bf4c04ad", - "namespace": "pd3", - "name": "Night Club Loud II", - "description": "Beat Night Club on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84d2307a95c0001905ea1", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 162, - "createdAt": "2022-07-08T15:28:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4e542a74ddca83bcf73b3", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender I", - "description": "Beat Night Club 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84d2328fe1154bf4c04ad" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4e54207a95c000190cb23", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 307, - "createdAt": "2022-08-11T11:17:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84d2328fe1154bf4c04ad", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4e647a74ddca83bcf73b4", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender II", - "description": "Beat Night Club 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4e542a74ddca83bcf73b3" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62f4e64707a95c000190cb25", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 308, - "createdAt": "2022-08-11T11:21:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4e542a74ddca83bcf73b3", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4e734a74ddca83bcf73bb", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender III", - "description": "Beat Night Club 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4e647a74ddca83bcf73b4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62f4e73407a95c000190cb2a", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Loud", - "Map", - "Night" - ], - "orderNo": 309, - "createdAt": "2022-08-11T11:25:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4e647a74ddca83bcf73b4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4e806a74ddca83bcf73bf", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender IV", - "description": "Beat Night Club 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4e734a74ddca83bcf73bb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62f4e80607a95c000190cb2f", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Loud", - "Map", - "Night" - ], - "orderNo": 310, - "createdAt": "2022-08-11T11:29:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4e734a74ddca83bcf73bb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93ae321282a2b1cfaeff5", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender V", - "description": "Beat Night Club 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4e806a74ddca83bcf73bf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d93ae39e43fb00019161fa", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484104, - "createdAt": "2023-01-31T15:59:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4e806a74ddca83bcf73bf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93b5521282a2b1cfaf100", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender VI", - "description": "Beat Night Club 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93ae321282a2b1cfaeff5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d93b559e43fb00019161fb", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484105, - "createdAt": "2023-01-31T16:01:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93ae321282a2b1cfaeff5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93bb621282a2b1cfaf101", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender VII", - "description": "Beat Night Club 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93b5521282a2b1cfaf100" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d93bb69e43fb00019161fc", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484106, - "createdAt": "2023-01-31T16:03:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93b5521282a2b1cfaf100", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93bf821282a2b1cfaf24b", - "namespace": "pd3", - "name": "Night Club Loud II: Repeat Offender VIII", - "description": "Beat Night Club 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93bb621282a2b1cfaf101" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d93bf89e43fb00019161fd", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484107, - "createdAt": "2023-01-31T16:04:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93bb621282a2b1cfaf101", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84d9628fe1154bf4c04ae", - "namespace": "pd3", - "name": "Night Club Loud III", - "description": "Beat Night Club on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84d9607a95c0001905ea3", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 163, - "createdAt": "2022-07-08T15:30:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4eb1da74ddca83bcf73e9", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender I", - "description": "Beat Night Club 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84d9628fe1154bf4c04ae" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62f4eb1d07a95c000190cb3f", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 311, - "createdAt": "2022-08-11T11:42:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84d9628fe1154bf4c04ae", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4ebada74ddca83bcf73eb", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender II", - "description": "Beat Night Club 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4eb1da74ddca83bcf73e9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4ebad07a95c000190cb48", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Loud", - "Map", - "Night", - "Very" - ], - "orderNo": 312, - "createdAt": "2022-08-11T11:44:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4eb1da74ddca83bcf73e9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4ec95a74ddca83bcf73ee", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender III", - "description": "Beat Night Club 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4ebada74ddca83bcf73eb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f4ec9507a95c000190cb49", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Loud", - "Map", - "Night", - "Very" - ], - "orderNo": 313, - "createdAt": "2022-08-11T11:48:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4ebada74ddca83bcf73eb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4ed1da74ddca83bcf73f0", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender IV", - "description": "Beat Night Club 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4ec95a74ddca83bcf73ee" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62f4ed1d07a95c000190cb4b", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Loud", - "Map", - "Night", - "Very" - ], - "orderNo": 314, - "createdAt": "2022-08-11T11:50:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4ec95a74ddca83bcf73ee", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93e4c21282a2b1cfafa14", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender V", - "description": "Beat Night Club 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4ed1da74ddca83bcf73f0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63d93e4c9e43fb0001916262", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484108, - "createdAt": "2023-01-31T16:14:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4ed1da74ddca83bcf73f0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93eb321282a2b1cfafab6", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender VI", - "description": "Beat Night Club 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93e4c21282a2b1cfafa14" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d93eb39e43fb0001916263", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484109, - "createdAt": "2023-01-31T16:15:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93e4c21282a2b1cfafa14", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93eef21282a2b1cfafab7", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender VII", - "description": "Beat Night Club 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93eb321282a2b1cfafab6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63d93eef9e43fb0001916264", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484110, - "createdAt": "2023-01-31T16:16:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93eb321282a2b1cfafab6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d93f2621282a2b1cfafab8", - "namespace": "pd3", - "name": "Night Club Loud III: Repeat Offender VIII", - "description": "Beat Night Club 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d93eef21282a2b1cfafab7" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d93f269e43fb0001916265", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484111, - "createdAt": "2023-01-31T16:17:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d93eef21282a2b1cfafab7", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84dff28fe1154bf4c04af", - "namespace": "pd3", - "name": "Night Club Loud IV", - "description": "Beat Night Club on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84dff07a95c0001905ea6", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 164, - "createdAt": "2022-07-08T15:32:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4ee48a74ddca83bcf73ff", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender I", - "description": "Beat Night Club 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84dff28fe1154bf4c04af" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62f4ee4807a95c000190cb52", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Overkill" - ], - "orderNo": 315, - "createdAt": "2022-08-11T11:55:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84dff28fe1154bf4c04af", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4eefda74ddca83bcf7400", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender II", - "description": "Beat Night Club 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4ee48a74ddca83bcf73ff" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62f4eefd07a95c000190cb54", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Overkill" - ], - "orderNo": 316, - "createdAt": "2022-08-11T11:58:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4ee48a74ddca83bcf73ff", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4ef6fa74ddca83bcf7401", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender III", - "description": "Beat Night Club 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4eefda74ddca83bcf7400" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4ef6f07a95c000190cb55", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Overkill" - ], - "orderNo": 317, - "createdAt": "2022-08-11T12:00:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4eefda74ddca83bcf7400", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4efd5a74ddca83bcf7402", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender IV", - "description": "Beat Night Club 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4ef6fa74ddca83bcf7401" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f4efd507a95c000190cb56", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Loud", - "Map", - "Night", - "Overkill" - ], - "orderNo": 318, - "createdAt": "2022-08-11T12:02:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4ef6fa74ddca83bcf7401", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9427121282a2b1cfb02dd", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender V", - "description": "Beat Night Club 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4efd5a74ddca83bcf7402" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d942719e43fb0001916267", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484112, - "createdAt": "2023-01-31T16:31:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4efd5a74ddca83bcf7402", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d942b721282a2b1cfb02de", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender VI", - "description": "Beat Night Club 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9427121282a2b1cfb02dd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63d942b79e43fb0001916268", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484113, - "createdAt": "2023-01-31T16:32:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9427121282a2b1cfb02dd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9433c21282a2b1cfb02df", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender VII", - "description": "Beat Night Club 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d942b721282a2b1cfb02de" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d9433c9e43fb000191626f", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484114, - "createdAt": "2023-01-31T16:35:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d942b721282a2b1cfb02de", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9437221282a2b1cfb02e0", - "namespace": "pd3", - "name": "Night Club Loud IV: Repeat Offender VIII", - "description": "Beat Night Club 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9433c21282a2b1cfb02df" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63d943729e43fb0001916270", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484115, - "createdAt": "2023-01-31T16:36:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9433c21282a2b1cfb02df", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee29c38f18e8f29186a3a4", - "namespace": "pd3", - "name": "Night Club Optional Objective I - The Silent Dancer", - "description": "Complete Nightclub before the assault has started without raising any alarms.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee29c3e2027d0001bf37a6", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Night", - "Club", - "Optional" - ], - "orderNo": 2147484292, - "createdAt": "2023-02-16T13:04:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2a1f8f18e8f29186a5df", - "namespace": "pd3", - "name": "Night Club Optional Objective II - Self Invited", - "description": "Before the assault has started, access the VIP area with a self-printed invitation.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2a1fe2027d0001bf37a7", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Night", - "Club", - "Optional" - ], - "orderNo": 2147484293, - "createdAt": "2023-02-16T13:05:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2a818f18e8f29186a5e0", - "namespace": "pd3", - "name": "Night Club Optional Objective III - DJ of the Night", - "description": "Before the assault has started, Access the VIP area without any VIP identification.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2a81e2027d0001bf3812", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Night", - "Club", - "Optional" - ], - "orderNo": 2147484294, - "createdAt": "2023-02-16T13:07:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84e6028fe1154bf4c04b0", - "namespace": "pd3", - "name": "Night Club Stealthy I", - "description": "Beat Night Club on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84e6007a95c0001905ea8", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 165, - "createdAt": "2022-07-08T15:33:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f0f6a74ddca83bcf7403", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender I", - "description": "Beat Night Club 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84e6028fe1154bf4c04b0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f4f0f607a95c000190cb5f", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 319, - "createdAt": "2022-08-11T12:07:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84e6028fe1154bf4c04b0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f1c2a74ddca83bcf7411", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender II", - "description": "Beat Night Club 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f0f6a74ddca83bcf7403" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62f4f1c207a95c000190cb62", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 320, - "createdAt": "2022-08-11T12:10:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f0f6a74ddca83bcf7403", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f35aa74ddca83bcf7412", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender III", - "description": "Beat Night Club 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f1c2a74ddca83bcf7411" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "62f4f35a07a95c000190cb6a", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Normal", - "Stealth" - ], - "orderNo": 321, - "createdAt": "2022-08-11T12:17:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f1c2a74ddca83bcf7411", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f3f0a74ddca83bcf7536", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender IV", - "description": "Beat Night Club 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f35aa74ddca83bcf7412" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "62f4f3f007a95c000190cb75", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Normal", - "Stealth" - ], - "orderNo": 322, - "createdAt": "2022-08-11T12:20:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f35aa74ddca83bcf7412", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d945b421282a2b1cfb0ee9", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender V", - "description": "Beat Night Club 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f3f0a74ddca83bcf7536" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63d945b49e43fb0001916272", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484116, - "createdAt": "2023-01-31T16:45:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f3f0a74ddca83bcf7536", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d945e421282a2b1cfb0eea", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender VI", - "description": "Beat Night Club 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d945b421282a2b1cfb0ee9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d945e49e43fb0001916273", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484117, - "createdAt": "2023-01-31T16:46:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d945b421282a2b1cfb0ee9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9463c21282a2b1cfb1413", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender VII", - "description": "Beat Night Club 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d945e421282a2b1cfb0eea" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63d9463c9e43fb0001916274", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Night", - "Club" - ], - "orderNo": 2147484118, - "createdAt": "2023-01-31T16:47:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d945e421282a2b1cfb0eea", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9466621282a2b1cfb1414", - "namespace": "pd3", - "name": "Night Club Stealthy I: Repeat Offender VIII", - "description": "Beat Night Club 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63d946669e43fb0001916275", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Normal", - "Stealth" - ], - "orderNo": 2147484119, - "createdAt": "2023-01-31T16:48:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84ee628fe1154bf4c04be", - "namespace": "pd3", - "name": "Night Club Stealthy II", - "description": "Beat Night Club on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84ee607a95c0001905ea9", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 166, - "createdAt": "2022-07-08T15:36:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f4b9a74ddca83bcf7537", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender I", - "description": "Beat Night Club 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84ee628fe1154bf4c04be" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4f4b907a95c000190cb77", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 323, - "createdAt": "2022-08-11T12:23:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84ee628fe1154bf4c04be", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f55aa74ddca83bcf7567", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender II", - "description": "Beat Night Club 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f4b9a74ddca83bcf7537" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "62f4f55a07a95c000190cb7b", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 324, - "createdAt": "2022-08-11T12:26:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f4b9a74ddca83bcf7537", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f601a74ddca83bcf757a", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender III", - "description": "Beat Night Club 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f55aa74ddca83bcf7567" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "62f4f60107a95c000190cb89", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Map", - "Night", - "Stealth" - ], - "orderNo": 325, - "createdAt": "2022-08-11T12:28:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f55aa74ddca83bcf7567", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f67aa74ddca83bcf757b", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender IV", - "description": "Beat Night Club 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f601a74ddca83bcf757a" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "62f4f67a07a95c000190cb8a", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Map", - "Night", - "Stealth" - ], - "orderNo": 326, - "createdAt": "2022-08-11T12:30:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f601a74ddca83bcf757a", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9477a21282a2b1cfb1f5b", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender V", - "description": "Beat Night Club 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f67aa74ddca83bcf757b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63d9477a9e43fb00019162da", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484120, - "createdAt": "2023-01-31T16:53:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f67aa74ddca83bcf757b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d947b521282a2b1cfb2734", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender VI", - "description": "Beat Night Club 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d9477a21282a2b1cfb1f5b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63d947b59e43fb000191633f", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484121, - "createdAt": "2023-01-31T16:54:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d9477a21282a2b1cfb1f5b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d947f021282a2b1cfb2735", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender VII", - "description": "Beat Night Club 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d947b521282a2b1cfb2734" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63d947f09e43fb0001916340", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484122, - "createdAt": "2023-01-31T16:55:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d947b521282a2b1cfb2734", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d9483b21282a2b1cfb2aa0", - "namespace": "pd3", - "name": "Night Club Stealthy II: Repeat Offender VIII", - "description": "Beat Night Club 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d947f021282a2b1cfb2735" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d9483b9e43fb0001916341", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484123, - "createdAt": "2023-01-31T16:56:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d947f021282a2b1cfb2735", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84f3b28fe1154bf4c04bf", - "namespace": "pd3", - "name": "Night Club Stealthy III", - "description": "Beat Night Club on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84f3b07a95c0001905eaa", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 167, - "createdAt": "2022-07-08T15:37:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f778a74ddca83bcf757c", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender I", - "description": "Beat Night Club 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84f3b28fe1154bf4c04bf" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "62f4f77807a95c000190cb8d", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 327, - "createdAt": "2022-08-11T12:35:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84f3b28fe1154bf4c04bf", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f7fea74ddca83bcf757d", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender II", - "description": "Beat Night Club 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f778a74ddca83bcf757c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4f7fe07a95c000190cb91", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Map", - "Night", - "Stealth", - "Very" - ], - "orderNo": 328, - "createdAt": "2022-08-11T12:37:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f778a74ddca83bcf757c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f873a74ddca83bcf7594", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender III", - "description": "Beat Night Club 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f7fea74ddca83bcf757d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f4f87307a95c000190cb93", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Map", - "Night", - "Stealth", - "Very" - ], - "orderNo": 329, - "createdAt": "2022-08-11T12:39:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f7fea74ddca83bcf757d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4f8f2a74ddca83bcf7595", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender IV", - "description": "Beat Night Club 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f873a74ddca83bcf7594" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "62f4f8f207a95c000190cb97", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Hard", - "Heist", - "Map", - "Night", - "Stealth", - "Very" - ], - "orderNo": 330, - "createdAt": "2022-08-11T12:41:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f873a74ddca83bcf7594", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da425721282a2b1cff5e04", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender V", - "description": "Beat Night Club 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4f8f2a74ddca83bcf7595" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63da42579e43fb0001916d7b", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484124, - "createdAt": "2023-02-01T10:43:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4f8f2a74ddca83bcf7595", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da42a521282a2b1cff5f4b", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender VI", - "description": "Beat Night Club 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da425721282a2b1cff5e04" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63da42a59e43fb0001916d7e", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484125, - "createdAt": "2023-02-01T10:44:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da425721282a2b1cff5e04", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da42f321282a2b1cff6096", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender VII", - "description": "Beat Night Club 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da42a521282a2b1cff5f4b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63da42f39e43fb0001916d7f", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484126, - "createdAt": "2023-02-01T10:46:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da42a521282a2b1cff5f4b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da433921282a2b1cff6251", - "namespace": "pd3", - "name": "Night Club Stealthy III: Repeat Offender VIII", - "description": "Beat Night Club 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da42f321282a2b1cff6096" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da43399e43fb0001916d81", - "stats": [ - { - "statCode": "infamy-point", - "value": 300 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Night", - "Club" - ], - "orderNo": 2147484127, - "createdAt": "2023-02-01T10:47:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da42f321282a2b1cff6096", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c84fc228fe1154bf4c04c0", - "namespace": "pd3", - "name": "Night Club Stealthy IV", - "description": "Beat Night Club on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62c84fc207a95c0001905ead", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 168, - "createdAt": "2022-07-08T15:39:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4fa0aa74ddca83bcf75b5", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender I", - "description": "Beat Night Club 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c84fc228fe1154bf4c04c0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "62f4fa0a07a95c000190cb9f", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Overkill", - "Stealth" - ], - "orderNo": 331, - "createdAt": "2022-08-11T12:46:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c84fc228fe1154bf4c04c0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4fabca74ddca83bcf75e8", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender II", - "description": "Beat Night Club 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4fa0aa74ddca83bcf75b5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "62f4fabc07a95c000190cba3", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Overkill", - "Stealth" - ], - "orderNo": 332, - "createdAt": "2022-08-11T12:49:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4fa0aa74ddca83bcf75b5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4fb2da74ddca83bcf75e9", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender III", - "description": "Beat Night Club 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4fabca74ddca83bcf75e8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "62f4fb2d07a95c000190cbaa", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Overkill", - "Stealth" - ], - "orderNo": 333, - "createdAt": "2022-08-11T12:50:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4fabca74ddca83bcf75e8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f4fb93a74ddca83bcf7605", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender IV", - "description": "Beat Night Club 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4fb2da74ddca83bcf75e9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "62f4fb9307a95c000190cbab", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Club", - "Heist", - "Map", - "Night", - "Overkill", - "Stealth" - ], - "orderNo": 334, - "createdAt": "2022-08-11T12:52:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4fb2da74ddca83bcf75e9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da5c3021282a2b1c000301", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender V", - "description": "Beat Night Club 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f4fb93a74ddca83bcf7605" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63da5c309e43fb0001916fc0", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484128, - "createdAt": "2023-02-01T12:33:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f4fb93a74ddca83bcf7605", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da5c6921282a2b1c0003df", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender VI", - "description": "Beat Night Club 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da5c3021282a2b1c000301" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63da5c699e43fb0001916fc1", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484129, - "createdAt": "2023-02-01T12:34:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da5c3021282a2b1c000301", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da5cde21282a2b1c0004be", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender VII", - "description": "Beat Night Club 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da5c6921282a2b1c0003df" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63da5cde9e43fb0001916fc2", - "stats": [ - { - "statCode": "infamy-point", - "value": 290 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484130, - "createdAt": "2023-02-01T12:36:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da5c6921282a2b1c0003df", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da5d2a21282a2b1c00089b", - "namespace": "pd3", - "name": "Night Club Stealthy IV: Repeat Offender VIII", - "description": "Beat Night Club 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da5cde21282a2b1c0004be" - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63da5d2a9e43fb0001916fc3", - "stats": [ - { - "statCode": "infamy-point", - "value": 310 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Night", - "Club" - ], - "orderNo": 2147484131, - "createdAt": "2023-02-01T12:38:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da5cde21282a2b1c0004be", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc09f628fe1154bf4c0909", - "namespace": "pd3", - "name": "Night Club: Full Payout", - "description": "Escape with the maximum payout", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc09f607a95c00019067f1", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Night", - "Club", - "Max", - "Heist" - ], - "orderNo": 175, - "createdAt": "2022-07-11T11:31:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc0a4a28fe1154bf4c090d", - "namespace": "pd3", - "name": "Night Club: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc0a4a07a95c00019067f4", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Night", - "Club", - "No", - "Down", - "Heist" - ], - "orderNo": 176, - "createdAt": "2022-07-11T11:32:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "nightclub-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4367d28fe1154bf4bdbc9", - "namespace": "pd3", - "name": "NWB9 I", - "description": "Defeat 50 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c4367d07a95c000190479c", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 76, - "createdAt": "2022-07-05T13:02:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c437f328fe1154bf4bdbca", - "namespace": "pd3", - "name": "NWB9 II", - "description": "Defeat 100 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4367d28fe1154bf4bdbc9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "62c437f307a95c000190479d", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 77, - "createdAt": "2022-07-05T13:09:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c4367d28fe1154bf4bdbc9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c438f928fe1154bf4bdbcb", - "namespace": "pd3", - "name": "NWB9 III", - "description": "Defeat 200 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c437f328fe1154bf4bdbca" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "62c438f907a95c000190479e", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 78, - "createdAt": "2022-07-05T13:13:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c437f328fe1154bf4bdbca", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c439c228fe1154bf4bdbcc", - "namespace": "pd3", - "name": "NWB9 IV", - "description": "Defeat 350 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c438f928fe1154bf4bdbcb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "62c439c207a95c000190479f", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 79, - "createdAt": "2022-07-05T13:16:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c438f928fe1154bf4bdbcb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e508ad7f4d322dc61d4a5e", - "namespace": "pd3", - "name": "NWB9 Master", - "description": "Complete a heist with all base mods unlocked for the NWB9 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e508adae93c90001c98f4a", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL21", - "Meta", - "Mod", - "NWB9", - "Unlock" - ], - "orderNo": 2147484266, - "createdAt": "2023-02-09T14:52:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3aed67f4d322dc61976e6", - "namespace": "pd3", - "name": "NWB9 Rookie", - "description": "Complete a heist using the NWB9 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3aed6ae93c90001c9723a", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL21", - "Meta", - "Mod", - "NWB9", - "Tutorial", - "Unlock" - ], - "orderNo": 2147484228, - "createdAt": "2023-02-08T14:16:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d27bd07f0dd5f341fc2ad6", - "namespace": "pd3", - "name": "NWB9 Single Clip I", - "description": "With the NWB9, defeat 3 enemies without reloading, 5 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63d27bd00c06b20001e76412", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kills", - "NWB9", - "No", - "Reload" - ], - "orderNo": 2147483857, - "createdAt": "2023-01-26T13:10:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d27c1d7f0dd5f341fc2d49", - "namespace": "pd3", - "name": "NWB9 Single Clip II", - "description": "With the NWB9, defeat 3 enemies without reloading, 15 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d27bd07f0dd5f341fc2ad6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63d27c1d0c06b20001e76413", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9", - "No", - "Reload" - ], - "orderNo": 2147483858, - "createdAt": "2023-01-26T13:11:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d27bd07f0dd5f341fc2ad6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d27c5a7f0dd5f341fc3b20", - "namespace": "pd3", - "name": "NWB9 Single Clip III", - "description": "With the NWB9, defeat 3 enemies without reloading, 30 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d27c1d7f0dd5f341fc2d49" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63d27c5a0c06b20001e765a4", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9", - "No", - "Reload" - ], - "orderNo": 2147483859, - "createdAt": "2023-01-26T13:12:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d27c1d7f0dd5f341fc2d49", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d27ca77f0dd5f341fc42f6", - "namespace": "pd3", - "name": "NWB9 Single Clip IV", - "description": "With the NWB9, defeat 3 enemies without reloading, 50 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d27c5a7f0dd5f341fc3b20" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d27ca70c06b20001e76609", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9", - "No", - "Reload" - ], - "orderNo": 2147483860, - "createdAt": "2023-01-26T13:14:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d27c5a7f0dd5f341fc3b20", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d27ce67f0dd5f341fc43d0", - "namespace": "pd3", - "name": "NWB9 Single Clip V", - "description": "With the NWB9, defeat 3 enemies without reloading, 75 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d27ca77f0dd5f341fc42f6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "value": 75 - } - ] - }, - "reward": { - "rewardId": "63d27ce60c06b20001e7660a", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9", - "No", - "Reload" - ], - "orderNo": 2147483861, - "createdAt": "2023-01-26T13:15:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d27ca77f0dd5f341fc42f6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-noreload-kills", - "currentValue": 0, - "targetValue": 75 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c43a2e28fe1154bf4bdbfb", - "namespace": "pd3", - "name": "NWB9 V", - "description": "Defeat 500 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c439c228fe1154bf4bdbcc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c43a2e07a95c00019047a2", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 80, - "createdAt": "2022-07-05T13:18:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c439c228fe1154bf4bdbcc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3cfef7f4d322dc61a0840", - "namespace": "pd3", - "name": "NWB9 Veteran", - "description": "Complete a heist with four mod slots filled on the NWB9 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3cfefae93c90001c9761d", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL21", - "Meta", - "Mod", - "NWB9", - "Unlock" - ], - "orderNo": 2147484245, - "createdAt": "2023-02-08T16:38:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411b9c983c1792981dad870", - "namespace": "pd3", - "name": "NWB9 VI", - "description": "Defeat 750 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c43a2e28fe1154bf4bdbfb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411b9c9e2027d0001c0ef9c", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 2147484334, - "createdAt": "2023-03-15T12:27:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62c43a2e28fe1154bf4bdbfb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411ba1683c1792981daddb7", - "namespace": "pd3", - "name": "NWB9 VII", - "description": "Defeat 1000 enemies with the NWB9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411b9c983c1792981dad870" - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411ba16e2027d0001c0ef9d", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL21", - "Kill", - "NWB9" - ], - "orderNo": 2147484335, - "createdAt": "2023-03-15T12:29:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411b9c983c1792981dad870", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-nwb9-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea6627f0dd5f341f2ffec", - "namespace": "pd3", - "name": "Patrol I", - "description": "Mark a Security Guard.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cea662c9460a0001ef58da", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Guard", - "Tutorial" - ], - "orderNo": 2147483682, - "createdAt": "2023-01-23T15:23:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea6a87f0dd5f341f30023", - "namespace": "pd3", - "name": "Patrol II", - "description": "Mark 50 different Security Guards.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea6627f0dd5f341f2ffec" - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63cea6a8c9460a0001ef58db", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Guard" - ], - "orderNo": 2147483683, - "createdAt": "2023-01-23T15:24:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cea6627f0dd5f341f2ffec", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea6d87f0dd5f341f300b5", - "namespace": "pd3", - "name": "Patrol III", - "description": "Mark 150 different Security Guards.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea6a87f0dd5f341f30023" - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63cea6d8c9460a0001ef58de", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Guard" - ], - "orderNo": 2147483684, - "createdAt": "2023-01-23T15:25:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cea6a87f0dd5f341f30023", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea7177f0dd5f341f30128", - "namespace": "pd3", - "name": "Patrol IV", - "description": "Mark 300 different Security Guards.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea6d87f0dd5f341f300b5" - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "value": 300 - } - ] - }, - "reward": { - "rewardId": "63cea717c9460a0001ef58df", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Guard" - ], - "orderNo": 2147483685, - "createdAt": "2023-01-23T15:26:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cea6d87f0dd5f341f300b5", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "currentValue": 0, - "targetValue": 300 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea74f7f0dd5f341f30129", - "namespace": "pd3", - "name": "Patrol V", - "description": "Mark 500 different Security Guards.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea7177f0dd5f341f30128" - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63cea74fc9460a0001ef58e0", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Guard" - ], - "orderNo": 2147483686, - "createdAt": "2023-01-23T15:27:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cea7177f0dd5f341f30128", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "mark-guard", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d295107f0dd5f341fcf1e0", - "namespace": "pd3", - "name": "PC9 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d295100c06b20001e775c3", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483882, - "createdAt": "2023-01-26T14:58:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d295827f0dd5f341fcf2d8", - "namespace": "pd3", - "name": "PC9 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d295107f0dd5f341fcf1e0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d295820c06b20001e775c6", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483883, - "createdAt": "2023-01-26T15:00:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d295107f0dd5f341fcf1e0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d295d87f0dd5f341fcf2d9", - "namespace": "pd3", - "name": "PC9 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d295827f0dd5f341fcf2d8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d295d80c06b20001e775c7", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483884, - "createdAt": "2023-01-26T15:01:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d295827f0dd5f341fcf2d8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2961b7f0dd5f341fcf2da", - "namespace": "pd3", - "name": "PC9 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d295d87f0dd5f341fcf2d9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d2961b0c06b20001e775ca", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483885, - "createdAt": "2023-01-26T15:02:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d295d87f0dd5f341fcf2d9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d296747f0dd5f341fcf2db", - "namespace": "pd3", - "name": "PC9 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the PC9.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2961b7f0dd5f341fcf2da" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "value": 400 - } - ] - }, - "reward": { - "rewardId": "63d296740c06b20001e775cb", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483886, - "createdAt": "2023-01-26T15:04:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d2961b7f0dd5f341fcf2da", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e92c21282a2b1cd9a32f", - "namespace": "pd3", - "name": "PC9 I", - "description": "Defeat 50 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3e92cf885db000189fbbf", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483962, - "createdAt": "2023-01-27T15:09:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e95e21282a2b1cd9a39c", - "namespace": "pd3", - "name": "PC9 II", - "description": "Defeat 100 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e92c21282a2b1cd9a32f" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63d3e95ef885db000189fbd4", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483963, - "createdAt": "2023-01-27T15:10:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e92c21282a2b1cd9a32f", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e99c21282a2b1cd9ba8d", - "namespace": "pd3", - "name": "PC9 III", - "description": "Defeat 200 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e95e21282a2b1cd9a39c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 200 - } - ] - }, - "reward": { - "rewardId": "63d3e99cf885db000189fc3f", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483964, - "createdAt": "2023-01-27T15:11:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e95e21282a2b1cd9a39c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 200 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3e9e221282a2b1cd9bafc", - "namespace": "pd3", - "name": "PC9 IV", - "description": "Defeat 350 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e99c21282a2b1cd9ba8d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 350 - } - ] - }, - "reward": { - "rewardId": "63d3e9e2f885db000189fc43", - "stats": [ - { - "statCode": "infamy-point", - "value": 70 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483965, - "createdAt": "2023-01-27T15:12:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e99c21282a2b1cd9ba8d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50b507f4d322dc61d56c9", - "namespace": "pd3", - "name": "PC9 Master", - "description": "Complete a heist with all base mods unlocked for the PC9 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50b50ae93c90001c98f59", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL18", - "Meta", - "Mod", - "PC9", - "Unlock" - ], - "orderNo": 2147484271, - "createdAt": "2023-02-09T15:03:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b1bd7f4d322dc619907b", - "namespace": "pd3", - "name": "PC9 Rookie", - "description": "Complete a heist using the PC9 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b1bdae93c90001c972f4", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL18", - "Meta", - "Mod", - "PC9", - "Unlock" - ], - "orderNo": 2147484233, - "createdAt": "2023-02-08T14:29:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ea1621282a2b1cd9bafd", - "namespace": "pd3", - "name": "PC9 V", - "description": "Defeat 500 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3e9e221282a2b1cd9bafc" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "63d3ea16f885db000189fc46", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147483966, - "createdAt": "2023-01-27T15:13:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3e9e221282a2b1cd9bafc", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4ed457f4d322dc61c9b76", - "namespace": "pd3", - "name": "PC9 Veteran", - "description": "Complete a heist with four mod slots filled on the PC9 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4ed45ae93c90001c98a57", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL18", - "Meta", - "Mod", - "PC9", - "Unlock" - ], - "orderNo": 2147484250, - "createdAt": "2023-02-09T12:55:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c50183c1792981dbc394", - "namespace": "pd3", - "name": "PC9 VI", - "description": "Defeat 750 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ea1621282a2b1cd9bafd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411c502e2027d0001c0f2e2", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147484344, - "createdAt": "2023-03-15T13:15:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63d3ea1621282a2b1cd9bafd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411c53a83c1792981dbc5d3", - "namespace": "pd3", - "name": "PC9 VII", - "description": "Defeat 1000 enemies with the PC9", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411c50183c1792981dbc394" - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "value": 1000 - } - ] - }, - "reward": { - "rewardId": "6411c53ae2027d0001c0f2e3", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL18", - "Kill", - "PC9" - ], - "orderNo": 2147484345, - "createdAt": "2023-03-15T13:16:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6411c50183c1792981dbc394", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "smg-pc9-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779a3429040c967e3f6bfd", - "namespace": "pd3", - "name": "Penthouse Loud I", - "description": "Beat Penthouse on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779a34e23efe0001fd332c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 391, - "createdAt": "2022-11-18T14:44:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63872c672bae600787674a6c", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender I", - "description": "Beat Penthouse 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779a3429040c967e3f6bfd" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "63872c67d9135d000161ca9d", - "stats": [ - { - "statCode": "infamy-point", - "value": 110 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 453, - "createdAt": "2022-11-30T10:11:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63779a3429040c967e3f6bfd", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63872ceb2bae600787674d86", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender II", - "description": "Beat Penthouse 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63872c672bae600787674a6c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63872cebd9135d000161cacd", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 454, - "createdAt": "2022-11-30T10:14:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63872c672bae600787674a6c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63872e112bae600787674fff", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender III", - "description": "Beat Penthouse 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63872ceb2bae600787674d86" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "63872e11d9135d000161cb50", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Normal", - "Penthouse" - ], - "orderNo": 455, - "createdAt": "2022-11-30T10:18:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63872ceb2bae600787674d86", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63872eca2bae600787675134", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender IV", - "description": "Beat Penthouse 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63872e112bae600787674fff" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 60 - } - ] - }, - "reward": { - "rewardId": "63872ecad9135d000161cb71", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Normal", - "Penthouse" - ], - "orderNo": 456, - "createdAt": "2022-11-30T10:22:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63872e112bae600787674fff", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8e7421282a2b1c01faac", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender V", - "description": "Beat Penthouse 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63872eca2bae600787675134" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da8e749e43fb0001917547", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484196, - "createdAt": "2023-02-01T16:08:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63872eca2bae600787675134", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8ebf21282a2b1c01fe13", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender VI", - "description": "Beat Penthouse 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8e7421282a2b1c01faac" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da8ebf9e43fb0001917548", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484197, - "createdAt": "2023-02-01T16:09:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8e7421282a2b1c01faac", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8ef321282a2b1c01fe14", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender VII", - "description": "Beat Penthouse 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8ebf21282a2b1c01fe13" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63da8ef39e43fb0001917549", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484198, - "createdAt": "2023-02-01T16:10:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8ebf21282a2b1c01fe13", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8f2c21282a2b1c01fef0", - "namespace": "pd3", - "name": "Penthouse Loud I: Repeat Offender VIII", - "description": "Beat Penthouse 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8ef321282a2b1c01fe14" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "value": 150 - } - ] - }, - "reward": { - "rewardId": "63da8f2c9e43fb000191754a", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484199, - "createdAt": "2023-02-01T16:11:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8ef321282a2b1c01fe14", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779a8d29040c967e3f6cba", - "namespace": "pd3", - "name": "Penthouse Loud II", - "description": "Beat Penthouse on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779a8de23efe0001fd332d", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse" - ], - "orderNo": 392, - "createdAt": "2022-11-18T14:45:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63872f742bae600787675165", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender I", - "description": "Beat Penthouse 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779a8d29040c967e3f6cba" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63872f74d9135d000161cb86", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 457, - "createdAt": "2022-11-30T10:24:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63779a8d29040c967e3f6cba", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63874a1fce9f3b5ae57ddcc6", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender II", - "description": "Beat Penthouse 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63872f742bae600787675165" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63874a1f5c6de200011aa88d", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 458, - "createdAt": "2022-11-30T12:18:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63872f742bae600787675165", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63874ab2ce9f3b5ae57ddde1", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender III", - "description": "Beat Penthouse 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63874a1fce9f3b5ae57ddcc6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "63874ab25c6de200011aa894", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse" - ], - "orderNo": 459, - "createdAt": "2022-11-30T12:21:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63874a1fce9f3b5ae57ddcc6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63874bacce9f3b5ae57de0e6", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender IV", - "description": "Beat Penthouse 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63874ab2ce9f3b5ae57ddde1" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63874bac5c6de200011aa8c3", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse" - ], - "orderNo": 460, - "createdAt": "2022-11-30T12:25:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63874ab2ce9f3b5ae57ddde1", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8f8621282a2b1c020186", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender V", - "description": "Beat Penthouse 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63874bacce9f3b5ae57de0e6" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 55 - } - ] - }, - "reward": { - "rewardId": "63da8f869e43fb000191755d", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484200, - "createdAt": "2023-02-01T16:12:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63874bacce9f3b5ae57de0e6", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 55 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8fb221282a2b1c020260", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender VI", - "description": "Beat Penthouse 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8f8621282a2b1c020186" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 70 - } - ] - }, - "reward": { - "rewardId": "63da8fb29e43fb000191755e", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484201, - "createdAt": "2023-02-01T16:13:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8f8621282a2b1c020186", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 70 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da8fe821282a2b1c02033b", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender VII", - "description": "Beat Penthouse 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8fb221282a2b1c020260" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 85 - } - ] - }, - "reward": { - "rewardId": "63da8fe89e43fb000191755f", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484202, - "createdAt": "2023-02-01T16:14:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8fb221282a2b1c020260", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 85 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da902e21282a2b1c020418", - "namespace": "pd3", - "name": "Penthouse Loud II: Repeat Offender VIII", - "description": "Beat Penthouse 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da8fe821282a2b1c02033b" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "value": 100 - } - ] - }, - "reward": { - "rewardId": "63da902e9e43fb0001917560", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484203, - "createdAt": "2023-02-01T16:15:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da8fe821282a2b1c02033b", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779b1f29040c967e3f6da8", - "namespace": "pd3", - "name": "Penthouse Loud III", - "description": "Beat Penthouse on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779b1fe23efe0001fd332f", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse", - "Very" - ], - "orderNo": 393, - "createdAt": "2022-11-18T14:47:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63874fbdce9f3b5ae57de812", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender I", - "description": "Beat Penthouse 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779b1f29040c967e3f6da8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63874fbd5c6de200011aa93a", - "stats": [ - { - "statCode": "infamy-point", - "value": 130 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 461, - "createdAt": "2022-11-30T12:42:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63779b1f29040c967e3f6da8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 5 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63875031ce9f3b5ae57dea2d", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender II", - "description": "Beat Penthouse 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63874fbdce9f3b5ae57de812" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "638750315c6de200011aa968", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse", - "Very" - ], - "orderNo": 462, - "createdAt": "2022-11-30T12:44:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63874fbdce9f3b5ae57de812", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638750b3ce9f3b5ae57ded07", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender III", - "description": "Beat Penthouse 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63875031ce9f3b5ae57dea2d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "638750b35c6de200011aa996", - "stats": [ - { - "statCode": "infamy-point", - "value": 170 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse", - "Very" - ], - "orderNo": 463, - "createdAt": "2022-11-30T12:46:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63875031ce9f3b5ae57dea2d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63875161ce9f3b5ae57df0b4", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender IV", - "description": "Beat Penthouse 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638750b3ce9f3b5ae57ded07" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "638751615c6de200011aa9cc", - "stats": [ - { - "statCode": "infamy-point", - "value": 190 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Loud", - "Map", - "Penthouse", - "Very" - ], - "orderNo": 464, - "createdAt": "2022-11-30T12:49:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638750b3ce9f3b5ae57ded07", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da909a21282a2b1c02060e", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender V", - "description": "Beat Penthouse 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63875161ce9f3b5ae57df0b4" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 35 - } - ] - }, - "reward": { - "rewardId": "63da909a9e43fb0001917561", - "stats": [ - { - "statCode": "infamy-point", - "value": 210 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484204, - "createdAt": "2023-02-01T16:17:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63875161ce9f3b5ae57df0b4", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 35 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da90d821282a2b1c0206e9", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender VI", - "description": "Beat Penthouse 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da909a21282a2b1c02060e" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63da90d89e43fb0001917562", - "stats": [ - { - "statCode": "infamy-point", - "value": 230 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484205, - "createdAt": "2023-02-01T16:18:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da909a21282a2b1c02060e", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da911821282a2b1c020781", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender VII", - "description": "Beat Penthouse 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da90d821282a2b1c0206e9" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 65 - } - ] - }, - "reward": { - "rewardId": "63da91189e43fb0001917563", - "stats": [ - { - "statCode": "infamy-point", - "value": 250 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484206, - "createdAt": "2023-02-01T16:19:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da90d821282a2b1c0206e9", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 65 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da915221282a2b1c020782", - "namespace": "pd3", - "name": "Penthouse Loud III: Repeat Offender VIII", - "description": "Beat Penthouse 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da911821282a2b1c020781" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da91529e43fb0001917565", - "stats": [ - { - "statCode": "infamy-point", - "value": 270 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484207, - "createdAt": "2023-02-01T16:20:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da911821282a2b1c020781", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-veryhard", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779b8429040c967e3f6e9c", - "namespace": "pd3", - "name": "Penthouse Loud IV", - "description": "Beat Penthouse on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779b84e23efe0001fd3330", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Penthouse" - ], - "orderNo": 394, - "createdAt": "2022-11-18T14:49:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638752f5ce9f3b5ae57df1de", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender I", - "description": "Beat Penthouse 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779b8429040c967e3f6e9c" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 3 - } - ] - }, - "reward": { - "rewardId": "638752f55c6de200011aa9db", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Penthouse" - ], - "orderNo": 465, - "createdAt": "2022-11-30T12:56:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63779b8429040c967e3f6e9c", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 3 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6387535ace9f3b5ae57df23d", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender II", - "description": "Beat Penthouse 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638752f5ce9f3b5ae57df1de" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 6 - } - ] - }, - "reward": { - "rewardId": "6387535a5c6de200011aa9fc", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Penthouse" - ], - "orderNo": 466, - "createdAt": "2022-11-30T12:58:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638752f5ce9f3b5ae57df1de", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 6 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638753c7ce9f3b5ae57df365", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender III", - "description": "Beat Penthouse 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6387535ace9f3b5ae57df23d" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "638753c75c6de200011aa9fd", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Penthouse" - ], - "orderNo": 467, - "createdAt": "2022-11-30T12:59:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "6387535ace9f3b5ae57df23d", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63875434ce9f3b5ae57df452", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender IV", - "description": "Beat Penthouse 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638753c7ce9f3b5ae57df365" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 15 - } - ] - }, - "reward": { - "rewardId": "638754345c6de200011aa9fe", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } + "namespace": "pd3", + "key": "challenges", + "set_by": "SERVER", + "value": { + "BlockArray": { + "SlotArray": [ + { + "ChallengeDescription": "Reach infamy experience 10000", + "ChallengeID": "61ea5d79f0d84f0ed6e883e0", + "ChallengeName": "professionalcriminal", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "infamyexperience", + "TargetProgress": 10000 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelbyteItemId": "f693f83bf5074e50be6329ec77e21730", + "Quantity": 1 + } + ], + "Tags": [ + "infamy" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Normal or higher difficulty after the Assault has started", + "ChallengeID": "625e7c1c28fe1154bf4b6f80", + "ChallengeName": "Jewelry Store Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Hard or higher difficulty after the Assault has started", + "ChallengeID": "625e7e4028fe1154bf4b6f83", + "ChallengeName": "Jewelry Store Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "625e7f0628fe1154bf4b6f84", + "ChallengeName": "Jewelry Store Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "625e81a328fe1154bf4b6f8d", + "ChallengeName": "Jewelry Store Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Normal or higher difficulty before the Assault has started", + "ChallengeID": "625e827528fe1154bf4b6f92", + "ChallengeName": "Jewelry Store Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Hard or higher difficulty before the Assault has started", + "ChallengeID": "625e833828fe1154bf4b6fa1", + "ChallengeName": "Jewelry Store Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "625e83af28fe1154bf4b6fa2", + "ChallengeName": "Jewelry Store Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "625e848d28fe1154bf4b6fa3", + "ChallengeName": "Jewelry Store Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Normal or higher difficulty after the Assault has started", + "ChallengeID": "625e858228fe1154bf4b6fa4", + "ChallengeName": "Art Gallery Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Hard or higher difficulty after the Assault has started", + "ChallengeID": "625e865e28fe1154bf4b6fb7", + "ChallengeName": "Art Gallery Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "625e86d728fe1154bf4b6fb8", + "ChallengeName": "Art Gallery Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "625e872828fe1154bf4b6fb9", + "ChallengeName": "Art Gallery Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Normal or higher difficulty before the Assault has started", + "ChallengeID": "625e993728fe1154bf4b6fd4", + "ChallengeName": "Art Gallery Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Hard or higher difficulty before the Assault has started", + "ChallengeID": "625e99a928fe1154bf4b6fd6", + "ChallengeName": "Art Gallery Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "625e9a1b28fe1154bf4b6fd7", + "ChallengeName": "Art Gallery Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat Art Gallery on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "625e9c5628fe1154bf4b6fe7", + "ChallengeName": "Art Gallery Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Normal or higher difficulty after the Assault has started", + "ChallengeID": "625e9d3228fe1154bf4b6ff7", + "ChallengeName": "Sharke Bank (FP) Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Hard or higher difficulty after the Assault has started", + "ChallengeID": "625eb30528fe1154bf4b708c", + "ChallengeName": "Sharke Bank (FP) Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "625eb38c28fe1154bf4b708e", + "ChallengeName": "Sharke Bank (FP) Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "625eb3e828fe1154bf4b708f", + "ChallengeName": "Sharke Bank (FP) Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Normal or higher difficulty before the Assault has started", + "ChallengeID": "625eb43c28fe1154bf4b7090", + "ChallengeName": "Sharke Bank (FP) Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Hard or higher difficulty before the Assault has started", + "ChallengeID": "625eb49828fe1154bf4b7091", + "ChallengeName": "Sharke Bank (FP) Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "625eb4e628fe1154bf4b70a8", + "ChallengeName": "Sharke Bank (FP) Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat First Playable Bank on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "625eb57028fe1154bf4b70a9", + "ChallengeName": "Sharke Bank (FP) Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "625eb99828fe1154bf4b70fc", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "625e7c1c28fe1154bf4b6f80" ], - "items": [] - }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Penthouse" - ], - "orderNo": 468, - "createdAt": "2022-11-30T13:01:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638753c7ce9f3b5ae57df365", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da924f21282a2b1c020beb", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender V", - "description": "Beat Penthouse 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63875434ce9f3b5ae57df452" + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "625ebbda28fe1154bf4b7119", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-loud-overkill", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63da924f9e43fb0001917566", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484208, - "createdAt": "2023-02-01T16:24:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63875434ce9f3b5ae57df452", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da928521282a2b1c020bec", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender VI", - "description": "Beat Penthouse 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da924f21282a2b1c020beb" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 25 - } - ] - }, - "reward": { - "rewardId": "63da92859e43fb0001917567", - "stats": [ - { - "statCode": "infamy-point", - "value": 240 - } + "PrerequisiteChallengeIds": [ + "625e7e4028fe1154bf4b6f83" ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484209, - "createdAt": "2023-02-01T16:25:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da924f21282a2b1c020beb", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 25 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da92ce21282a2b1c020ce0", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender VII", - "description": "Beat Penthouse 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da928521282a2b1c020bec" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 30 - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63da92ce9e43fb0001917568", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "625ebc6928fe1154bf4b711c", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 15 } ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484210, - "createdAt": "2023-02-01T16:26:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da928521282a2b1c020bec", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da930c21282a2b1c020e10", - "namespace": "pd3", - "name": "Penthouse Loud IV: Repeat Offender VIII", - "description": "Beat Penthouse 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da92ce21282a2b1c020ce0" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "value": 40 - } - ] - }, - "reward": { - "rewardId": "63da930c9e43fb0001917569", - "stats": [ - { - "statCode": "infamy-point", - "value": 280 - } + "PrerequisiteChallengeIds": [ + "625e827528fe1154bf4b6f92" ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484211, - "createdAt": "2023-02-01T16:27:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da92ce21282a2b1c020ce0", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2c5e8f18e8f29186ace2", - "namespace": "pd3", - "name": "Penthouse Optional Objective I - Live and Let live", - "description": "Complete the Penthouse in stealth without killing anyone on Overkill", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2c5ee2027d0001bf383f", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Penthouse", - "Optional" - ], - "orderNo": 2147484300, - "createdAt": "2023-02-16T13:15:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2ca58f18e8f29186ad58", - "namespace": "pd3", - "name": "Penthouse Optional Objective II - Busy Signal", - "description": "Kidnap Mason while he is talking on the phone, scan his iris and complete the level in stealth without harming him.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2ca5e2027d0001bf3840", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Penthouse", - "Optional" - ], - "orderNo": 2147484301, - "createdAt": "2023-02-16T13:16:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2cec8f18e8f29186add4", - "namespace": "pd3", - "name": "Penthouse Optional Objective III - Eye Catching", - "description": "Complete all the mandatory objectives in loud and open the panic room by taking mason to the Iris scanner without killing him.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2cece2027d0001bf3841", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Penthouse", - "Optional" - ], - "orderNo": 2147484302, - "createdAt": "2023-02-16T13:17:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779c7129040c967e3f6fee", - "namespace": "pd3", - "name": "Penthouse Stealthy I", - "description": "Beat Penthouse on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779c71e23efe0001fd3336", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 395, - "createdAt": "2022-11-18T14:53:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63875547ce9f3b5ae57df638", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender I", - "description": "Beat Penthouse 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779c7129040c967e3f6fee" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 15 - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "638755475c6de200011aaa10", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "625ebd7c28fe1154bf4b7139", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 469, - "createdAt": "2022-11-30T13:06:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63779c7129040c967e3f6fee", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 15 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638756e5ce9f3b5ae57df8c8", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender II", - "description": "Beat Penthouse 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63875547ce9f3b5ae57df638" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 30 - } - ] - }, - "reward": { - "rewardId": "638756e55c6de200011aaab8", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } + "PrerequisiteChallengeIds": [ + "625e833828fe1154bf4b6fa1" ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 470, - "createdAt": "2022-11-30T13:13:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63875547ce9f3b5ae57df638", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 30 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876abf1c49e9669d114213", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender III", - "description": "Beat Penthouse 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638756e5ce9f3b5ae57df8c8" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 45 - } - ] - }, - "reward": { - "rewardId": "63876abf5c6de2000132a5da", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the M4A1", + "ChallengeID": "625ebe0628fe1154bf4b7147", + "ChallengeName": "DEPRECATED M4A1 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "m4a1-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "M4A1" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the M4A1", + "ChallengeID": "625ebeea28fe1154bf4b7149", + "ChallengeName": "DEPRECATED M4A1 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "m4a1-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "M4A1" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the M4A1", + "ChallengeID": "625ebf8928fe1154bf4b7163", + "ChallengeName": "DEPRECATED M4A1 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "m4a1-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "M4A1" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the Remington R700", + "ChallengeID": "625ec06b28fe1154bf4b7165", + "ChallengeName": "DEPRECATED Remington R700 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r700-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R700" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the Remington R700", + "ChallengeID": "625ec12c28fe1154bf4b7166", + "ChallengeName": "DEPRECATED Remington R700 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r700-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R700" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the Remington R700", + "ChallengeID": "625ec17128fe1154bf4b7167", + "ChallengeName": "DEPRECATED Remington R700 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r700-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R700" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the H&K MP7", + "ChallengeID": "625ec3c928fe1154bf4b7192", + "ChallengeName": "DEPRECATED H&K MP7 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "mp7-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "HK MP7" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the H&K MP7", + "ChallengeID": "625ec44a28fe1154bf4b71a6", + "ChallengeName": "DEPRECATED H&K MP7 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "mp7-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "HK MP7" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the H&K MP7", + "ChallengeID": "625ec52c28fe1154bf4b71b5", + "ChallengeName": "DEPRECATED H&K MP7 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "mp7-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "HK MP7" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the Remington R870", + "ChallengeID": "625ec5dd28fe1154bf4b71cf", + "ChallengeName": "DEPRECATED Remington R870 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r870-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R870" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the Remington R870", + "ChallengeID": "625ed90a28fe1154bf4b7221", + "ChallengeName": "DEPRECATED Remington R870 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r870-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R870" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the Remington R870", + "ChallengeID": "625ed95328fe1154bf4b7222", + "ChallengeName": "DEPRECATED Remington R870 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "remington-r870-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Remington R870" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the P226 Legion", + "ChallengeID": "625eda3028fe1154bf4b7225", + "ChallengeName": "DEPRECATED P226 Legion Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "p226-legion-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "P226 Legion" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the P226 Legion", + "ChallengeID": "625eda6d28fe1154bf4b7226", + "ChallengeName": "DEPRECATED P226 Legion Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "p226-legion-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "P226 Legion" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the P226 Legion", + "ChallengeID": "625edbe028fe1154bf4b722c", + "ChallengeName": "DEPRECATED P226 Legion Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "p226-legion-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "P226 Legion" + ] + }, + { + "ChallengeDescription": "Unlock a base mod for the Smith & Wesson M29", + "ChallengeID": "625edc4228fe1154bf4b722e", + "ChallengeName": "DEPRECATED Smith & Wesson M29 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smith-wesson-m29-unlock-mod", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Smith and Wesson M29" + ] + }, + { + "ChallengeDescription": "Unlock 5 base mods for the Smith & Wesson M29", + "ChallengeID": "625edc7c28fe1154bf4b722f", + "ChallengeName": "DEPRECATED Smith & Wesson M29 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smith-wesson-m29-unlock-mod", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Smith and Wesson M29" + ] + }, + { + "ChallengeDescription": "Unlock all base mods for the Smith & Wesson M29", + "ChallengeID": "625edcbc28fe1154bf4b7232", + "ChallengeName": "DEPRECATED Smith & Wesson M29 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smith-wesson-m29-unlock-mod", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Smith and Wesson M29" + ] + }, + { + "ChallengeDescription": "Defeat a Dozer enemy", + "ChallengeID": "62c3f96f28fe1154bf4bd90d", + "ChallengeName": "Kill Dozer I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "dozer-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 Dozer enemies", + "ChallengeID": "62c3fa6e28fe1154bf4bd90f", + "ChallengeName": "Kill Dozer II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "dozer-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c3f96f28fe1154bf4bd90d" ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Normal", - "Stealth" - ], - "orderNo": 471, - "createdAt": "2022-11-30T14:37:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "638756e5ce9f3b5ae57df8c8", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876b441c49e9669d114272", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender IV", - "description": "Beat Penthouse 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876abf1c49e9669d114213" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 60 - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Kill" ] }, - "reward": { - "rewardId": "63876b445c6de2000132a5db", - "stats": [ + { + "ChallengeDescription": "Defeat 30 Dozer enemies", + "ChallengeID": "62c3fb3928fe1154bf4bd910", + "ChallengeName": "Kill Dozer III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "dozer-kills", + "TargetProgress": 30 } ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Normal", - "Penthouse", - "Stealth" - ], - "orderNo": 472, - "createdAt": "2022-11-30T14:40:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63876abf1c49e9669d114213", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da939421282a2b1c020e11", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender V", - "description": "Beat Penthouse 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876b441c49e9669d114272" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 80 - } - ] - }, - "reward": { - "rewardId": "63da93949e43fb000191756a", - "stats": [ - { - "statCode": "infamy-point", - "value": 220 - } + "PrerequisiteChallengeIds": [ + "62c3fa6e28fe1154bf4bd90f" ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484212, - "createdAt": "2023-02-01T16:30:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63876b441c49e9669d114272", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 80 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da93c121282a2b1c020e12", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender VI", - "description": "Beat Penthouse 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da939421282a2b1c020e11" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 100 - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Kill" ] }, - "reward": { - "rewardId": "63da93c19e43fb000191756b", - "stats": [ + { + "ChallengeDescription": "Defeat 60 Dozer enemies", + "ChallengeID": "62c3fbd828fe1154bf4bd911", + "ChallengeName": "Kill Dozer IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "dozer-kills", + "TargetProgress": 60 } ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484213, - "createdAt": "2023-02-01T16:30:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da939421282a2b1c020e11", - "isCompleted": false - } - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da93fa21282a2b1c020e13", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender VII", - "description": "Beat Penthouse 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da93c121282a2b1c020e12" - ] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-normal", - "value": 120 - } - ] - }, - "reward": { - "rewardId": "63da93fa9e43fb000191756c", - "stats": [ - { - "statCode": "infamy-point", - "value": 260 - } + "PrerequisiteChallengeIds": [ + "62c3fb3928fe1154bf4bd910" ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484214, - "createdAt": "2023-02-01T16:31:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63da93c121282a2b1c020e12", - "isCompleted": false - } + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat a Taser enemy", + "ChallengeID": "62c3ffb328fe1154bf4bd91a", + "ChallengeName": "Kill Taser I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 120 + "StatId": "taser-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da944e21282a2b1c020ef1", - "namespace": "pd3", - "name": "Penthouse Stealthy I: Repeat Offender VIII", - "description": "Beat Penthouse 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da93fa21282a2b1c020e13" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 Taser enemies", + "ChallengeID": "62c4014128fe1154bf4bd925", + "ChallengeName": "Kill Taser II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-normal", - "value": 150 + "StatId": "taser-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62c3ffb328fe1154bf4bd91a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Kill" ] }, - "reward": { - "rewardId": "63da944e9e43fb000191756d", - "stats": [ + { + "ChallengeDescription": "Defeat 30 Taser enemies", + "ChallengeID": "62c403b328fe1154bf4bd92c", + "ChallengeName": "Kill Taser III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "taser-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c4014128fe1154bf4bd925" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Penthouse" - ], - "orderNo": 2147484215, - "createdAt": "2023-02-01T16:33:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 Taser enemies", + "ChallengeID": "62c404c928fe1154bf4bd92d", + "ChallengeName": "Kill Taser IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da93fa21282a2b1c020e13", - "isCompleted": false + "StatId": "taser-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62c403b328fe1154bf4bd92c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat a Grenadier enemy", + "ChallengeID": "62c4078828fe1154bf4bd938", + "ChallengeName": "Kill Grenadier I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-normal", - "currentValue": 0, - "targetValue": 150 + "StatId": "grenadier-kills", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Grenadier", + "Kill" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779cf429040c967e3f7083", - "namespace": "pd3", - "name": "Penthouse Stealthy II", - "description": "Beat Penthouse on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779cf4e23efe0001fd3337", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth" - ], - "orderNo": 396, - "createdAt": "2022-11-18T14:55:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Defeat 10 Grenadier enemies", + "ChallengeID": "62c408ab28fe1154bf4bd94f", + "ChallengeName": "Kill Grenadier II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "grenadier-kills", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876bc91c49e9669d114363", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender I", - "description": "Beat Penthouse 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779cf429040c967e3f7083" + ], + "PrerequisiteChallengeIds": [ + "62c4078828fe1154bf4bd938" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Grenadier", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 Grenadier enemies", + "ChallengeID": "62c4091f28fe1154bf4bd95a", + "ChallengeName": "Kill Grenadier III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 10 + "StatId": "grenadier-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c408ab28fe1154bf4bd94f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Grenadier", + "Kill" ] }, - "reward": { - "rewardId": "63876bc95c6de2000132a5dc", - "stats": [ + { + "ChallengeDescription": "Defeat 60 Grenadier enemies", + "ChallengeID": "62c4099728fe1154bf4bd95b", + "ChallengeName": "Kill Grenadier IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "grenadier-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c4091f28fe1154bf4bd95a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Grenadier", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 473, - "createdAt": "2022-11-30T14:42:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat a Shield enemy", + "ChallengeID": "62c41b6028fe1154bf4bd988", + "ChallengeName": "Kill Shield I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63779cf429040c967e3f7083", - "isCompleted": false + "StatId": "shield-kills", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Shield", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 Shield enemies", + "ChallengeID": "62c41be728fe1154bf4bd989", + "ChallengeName": "Kill Shield II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 10 + "StatId": "shield-kills", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876c451c49e9669d114428", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender II", - "description": "Beat Penthouse 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876bc91c49e9669d114363" + ], + "PrerequisiteChallengeIds": [ + "62c41b6028fe1154bf4bd988" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Shield", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 Shield enemies", + "ChallengeID": "62c41c6628fe1154bf4bd98a", + "ChallengeName": "Kill Shield III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 20 + "StatId": "shield-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c41be728fe1154bf4bd989" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Shield", + "Kill" ] }, - "reward": { - "rewardId": "63876c455c6de2000132a5dd", - "stats": [ + { + "ChallengeDescription": "Defeat 60 Shield enemies", + "ChallengeID": "62c41cd528fe1154bf4bd98b", + "ChallengeName": "Kill Shield IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "shield-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c41c6628fe1154bf4bd98a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Shield", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 474, - "createdAt": "2022-11-30T14:44:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat a Sniper enemy", + "ChallengeID": "62c41e2128fe1154bf4bd9e3", + "ChallengeName": "Kill Sniper I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63876bc91c49e9669d114363", - "isCompleted": false + "StatId": "sniper-kills", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Sniper", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 Sniper enemies", + "ChallengeID": "62c41eaf28fe1154bf4bda30", + "ChallengeName": "Kill Sniper II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 20 + "StatId": "sniper-kills", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876cbc1c49e9669d114429", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender III", - "description": "Beat Penthouse 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876c451c49e9669d114428" + ], + "PrerequisiteChallengeIds": [ + "62c41e2128fe1154bf4bd9e3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Sniper", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 Sniper enemies", + "ChallengeID": "62c41f1e28fe1154bf4bda43", + "ChallengeName": "Kill Sniper III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 30 + "StatId": "sniper-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c41eaf28fe1154bf4bda30" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Sniper", + "Kill" ] }, - "reward": { - "rewardId": "63876cbc5c6de2000132a5de", - "stats": [ + { + "ChallengeDescription": "Defeat 60 Sniper enemies", + "ChallengeID": "62c41f7528fe1154bf4bda48", + "ChallengeName": "Kill Sniper IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "sniper-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c41f1e28fe1154bf4bda43" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Sniper", + "Kill" + ] }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth" - ], - "orderNo": 475, - "createdAt": "2022-11-30T14:46:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat a Cloaker enemy", + "ChallengeID": "62c41fd628fe1154bf4bda4d", + "ChallengeName": "Kill Cloaker I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63876c451c49e9669d114428", - "isCompleted": false + "StatId": "cloaker-kills", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 Cloaker enemies", + "ChallengeID": "62c4208228fe1154bf4bda50", + "ChallengeName": "Kill Cloaker II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 30 + "StatId": "cloaker-kills", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63876d321c49e9669d114559", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender IV", - "description": "Beat Penthouse 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876cbc1c49e9669d114429" + ], + "PrerequisiteChallengeIds": [ + "62c41fd628fe1154bf4bda4d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 Cloaker enemies", + "ChallengeID": "62c420e128fe1154bf4bda51", + "ChallengeName": "Kill Cloaker III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 40 + "StatId": "cloaker-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c4208228fe1154bf4bda50" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Kill" ] }, - "reward": { - "rewardId": "63876d325c6de2000132a5df", - "stats": [ + { + "ChallengeDescription": "Defeat 60 Cloaker enemies", + "ChallengeID": "62c4212b28fe1154bf4bda52", + "ChallengeName": "Kill Cloaker IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "cloaker-kills", + "TargetProgress": 60 } ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth" - ], - "orderNo": 476, - "createdAt": "2022-11-30T14:48:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [ + "62c420e128fe1154bf4bda51" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat a Droner enemy", + "ChallengeID": "62c4217d28fe1154bf4bda53", + "ChallengeName": "Kill Droner I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63876cbc1c49e9669d114429", - "isCompleted": false + "StatId": "droner-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Droner", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 Droner enemies", + "ChallengeID": "62c421e728fe1154bf4bda82", + "ChallengeName": "Kill Droner II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "droner-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c4217d28fe1154bf4bda53" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Droner", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 30 Droner enemies", + "ChallengeID": "62c4224728fe1154bf4bda83", + "ChallengeName": "Kill Droner III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "droner-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "62c421e728fe1154bf4bda82" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Droner", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 60 Droner enemies", + "ChallengeID": "62c422a328fe1154bf4bda84", + "ChallengeName": "Kill Droner IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "droner-kills", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "62c4224728fe1154bf4bda83" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Droner", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the NWB9", + "ChallengeID": "62c4367d28fe1154bf4bdbc9", + "ChallengeName": "NWB9 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "NWB9", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the NWB9", + "ChallengeID": "62c437f328fe1154bf4bdbca", + "ChallengeName": "NWB9 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 40 + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da94c921282a2b1c020ef2", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender V", - "description": "Beat Penthouse 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63876d321c49e9669d114559" + ], + "PrerequisiteChallengeIds": [ + "62c4367d28fe1154bf4bdbc9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "NWB9", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the NWB9", + "ChallengeID": "62c438f928fe1154bf4bdbcb", + "ChallengeName": "NWB9 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 55 + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "62c437f328fe1154bf4bdbca" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "NWB9", + "IL21" ] }, - "reward": { - "rewardId": "63da94c99e43fb000191756e", - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the NWB9", + "ChallengeID": "62c439c228fe1154bf4bdbcc", + "ChallengeName": "NWB9 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 350 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c438f928fe1154bf4bdbcb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "NWB9", + "IL21" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484216, - "createdAt": "2023-02-01T16:35:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 500 enemies with the NWB9", + "ChallengeID": "62c43a2e28fe1154bf4bdbfb", + "ChallengeName": "NWB9 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63876d321c49e9669d114559", - "isCompleted": false + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "62c439c228fe1154bf4bdbcc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "NWB9", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the CAR4", + "ChallengeID": "62c43b5e28fe1154bf4bdbfc", + "ChallengeName": "CAR4 I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 55 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da951821282a2b1c021277", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender VI", - "description": "Beat Penthouse 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da94c921282a2b1c020ef2" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "CAR4" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the CAR4", + "ChallengeID": "62c43c0928fe1154bf4bdc50", + "ChallengeName": "CAR4 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 70 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "62c43b5e28fe1154bf4bdbfc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "CAR4" ] }, - "reward": { - "rewardId": "63da95189e43fb000191756f", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the CAR4", + "ChallengeID": "62c43cc928fe1154bf4bdc5f", + "ChallengeName": "CAR4 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c43c0928fe1154bf4bdc50" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "CAR4" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484217, - "createdAt": "2023-02-01T16:36:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 350 enemies with the CAR4", + "ChallengeID": "62c43da828fe1154bf4bdc6a", + "ChallengeName": "CAR4 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da94c921282a2b1c020ef2", - "isCompleted": false + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "62c43cc928fe1154bf4bdc5f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "CAR4" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the CAR4", + "ChallengeID": "62c43e2828fe1154bf4bdc6b", + "ChallengeName": "CAR4 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 70 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 500 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da955021282a2b1c021278", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender VII", - "description": "Beat Penthouse 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da951821282a2b1c021277" + ], + "PrerequisiteChallengeIds": [ + "62c43da828fe1154bf4bdc6a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "CAR4" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Compact7", + "ChallengeID": "62c43f4628fe1154bf4bdce9", + "ChallengeName": "Compact7 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 85 + "StatId": "smg-compact7-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Compact7", + "IL65" ] }, - "reward": { - "rewardId": "63da95509e43fb0001917570", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Compact7", + "ChallengeID": "62c43fea28fe1154bf4bdcfc", + "ChallengeName": "Compact7 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "smg-compact7-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c43f4628fe1154bf4bdce9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Compact7", + "IL65" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484218, - "createdAt": "2023-02-01T16:37:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Compact7", + "ChallengeID": "62c4404a28fe1154bf4bdcfd", + "ChallengeName": "Compact7 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da951821282a2b1c021277", - "isCompleted": false + "StatId": "smg-compact7-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "62c43fea28fe1154bf4bdcfc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Compact7", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Compact7", + "ChallengeID": "62c4420b28fe1154bf4bdd27", + "ChallengeName": "Compact7 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 85 + "StatId": "smg-compact7-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da958c21282a2b1c021279", - "namespace": "pd3", - "name": "Penthouse Stealthy II: Repeat Offender VIII", - "description": "Beat Penthouse 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da955021282a2b1c021278" + ], + "PrerequisiteChallengeIds": [ + "62c4404a28fe1154bf4bdcfd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Compact7", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Compact7", + "ChallengeID": "62c4426128fe1154bf4bdd28", + "ChallengeName": "Compact7 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "value": 100 + "StatId": "smg-compact7-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "62c4420b28fe1154bf4bdd27" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Compact7", + "IL65" ] }, - "reward": { - "rewardId": "63da958c9e43fb0001917571", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the R880", + "ChallengeID": "62c4561428fe1154bf4be0b3", + "ChallengeName": "R880 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "shotgun-r880-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R880", + "IL2" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Penthouse" - ], - "orderNo": 2147484219, - "createdAt": "2023-02-01T16:38:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the R880", + "ChallengeID": "62c456a828fe1154bf4be0d5", + "ChallengeName": "R880 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da955021282a2b1c021278", - "isCompleted": false + "StatId": "shotgun-r880-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "62c4561428fe1154bf4be0b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R880", + "IL2" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the R880", + "ChallengeID": "62c4572a28fe1154bf4be0d6", + "ChallengeName": "R880 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-hard", - "currentValue": 0, - "targetValue": 100 + "StatId": "shotgun-r880-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "62c456a828fe1154bf4be0d5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R880", + "IL2" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779dc429040c967e3f7143", - "namespace": "pd3", - "name": "Penthouse Stealthy III", - "description": "Beat Penthouse on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779dc4e23efe0001fd333e", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth", - "Very" - ], - "orderNo": 397, - "createdAt": "2022-11-18T14:59:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Defeat 350 enemies with the R880", + "ChallengeID": "62c457f728fe1154bf4be0e9", + "ChallengeName": "R880 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638db3429248292658eaf4c4", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender I", - "description": "Beat Penthouse 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779dc429040c967e3f7143" + ], + "PrerequisiteChallengeIds": [ + "62c4572a28fe1154bf4be0d6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the R880", + "ChallengeID": "62c4585a28fe1154bf4be0ea", + "ChallengeName": "R880 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the A114", + "ChallengeID": "62c459a628fe1154bf4be122", + "ChallengeName": "A114 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the A114", + "ChallengeID": "62c45a2728fe1154bf4be123", + "ChallengeName": "A114 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "62c459a628fe1154bf4be122" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "A114", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the A114", + "ChallengeID": "62c45d2828fe1154bf4be124", + "ChallengeName": "A114 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 5 + "StatId": "marksman-a114-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "62c45a2728fe1154bf4be123" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "A114", + "IL15" ] }, - "reward": { - "rewardId": "638db3423ec0980001844246", - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the A114", + "ChallengeID": "62c45d8f28fe1154bf4be125", + "ChallengeName": "A114 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "marksman-a114-kills", + "TargetProgress": 350 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c45d2828fe1154bf4be124" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "A114", + "IL15" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 477, - "createdAt": "2022-12-05T09:00:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 500 enemies with the A114", + "ChallengeID": "62c45dfb28fe1154bf4be126", + "ChallengeName": "A114 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63779dc429040c967e3f7143", - "isCompleted": false + "StatId": "marksman-a114-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "62c45d8f28fe1154bf4be125" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "A114", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the R900S", + "ChallengeID": "62c45ef528fe1154bf4be127", + "ChallengeName": "R900S I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 + "StatId": "marksman-r900s-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638db3ba9248292658eaf581", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender II", - "description": "Beat Penthouse 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638db3429248292658eaf4c4" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R900S", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the R900S", + "ChallengeID": "62c45f6228fe1154bf4be128", + "ChallengeName": "R900S II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 10 + "StatId": "marksman-r900s-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "62c45ef528fe1154bf4be127" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R900S", + "IL53" ] }, - "reward": { - "rewardId": "638db3ba3ec0980001844248", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the R900S", + "ChallengeID": "62c4600f28fe1154bf4be135", + "ChallengeName": "R900S III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "marksman-r900s-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c456a828fe1154bf4be0d5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R900S", + "IL53" + ] }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth", - "Very" - ], - "orderNo": 478, - "createdAt": "2022-12-05T09:02:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 350 enemies with the R900S", + "ChallengeID": "62c545a128fe1154bf4be4f4", + "ChallengeName": "R900S IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638db3429248292658eaf4c4", - "isCompleted": false + "StatId": "marksman-r900s-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "62c4600f28fe1154bf4be135" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R900S", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the R900S", + "ChallengeID": "62c546b228fe1154bf4be4f5", + "ChallengeName": "R900S V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 + "StatId": "marksman-r900s-kills", + "TargetProgress": 500 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638db6489248292658eaf868", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender III", - "description": "Beat Penthouse 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638db3ba9248292658eaf581" + ], + "PrerequisiteChallengeIds": [ + "62c545a128fe1154bf4be4f4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "R900S", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the S40", + "ChallengeID": "62c54eae28fe1154bf4be504", + "ChallengeName": "S40 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 15 + "StatId": "pistol-s40-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "S40" ] }, - "reward": { - "rewardId": "638db6483ec098000184427c", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the S40", + "ChallengeID": "62c5565a28fe1154bf4be56a", + "ChallengeName": "S40 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "pistol-s40-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c54eae28fe1154bf4be504" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "S40" + ] }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth", - "Very" - ], - "orderNo": 479, - "createdAt": "2022-12-05T09:13:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the S40", + "ChallengeID": "62c5577c28fe1154bf4be56d", + "ChallengeName": "S40 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638db3ba9248292658eaf581", - "isCompleted": false + "StatId": "pistol-s40-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "62c5565a28fe1154bf4be56a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "S40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the S40", + "ChallengeID": "62c559d828fe1154bf4be570", + "ChallengeName": "S40 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 + "StatId": "pistol-s40-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638db7179248292658eaf8cb", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender IV", - "description": "Beat Penthouse 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638db6489248292658eaf868" + ], + "PrerequisiteChallengeIds": [ + "62c5577c28fe1154bf4be56d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "S40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the S40", + "ChallengeID": "62c55c3028fe1154bf4be5b7", + "ChallengeName": "S40 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 25 + "StatId": "pistol-s40-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "62c559d828fe1154bf4be570" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "S40" ] }, - "reward": { - "rewardId": "638db7173ec09800018442ec", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Castigo44", + "ChallengeID": "62c56f2e28fe1154bf4be5f6", + "ChallengeName": "Castigo44 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "revolver-castigo44-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Castigo44", + "IL10" + ] }, - "tags": [ - "Hard", - "Heist", - "Map", - "Penthouse", - "Stealth", - "Very" - ], - "orderNo": 480, - "createdAt": "2022-12-05T09:17:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Castigo44", + "ChallengeID": "62c56fac28fe1154bf4be5f7", + "ChallengeName": "Castigo44 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638db6489248292658eaf868", - "isCompleted": false + "StatId": "revolver-castigo44-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "62c56f2e28fe1154bf4be5f6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Castigo44", + "IL10" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Castigo44", + "ChallengeID": "62c5706a28fe1154bf4be5f8", + "ChallengeName": "Castigo44 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 + "StatId": "revolver-castigo44-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da95f421282a2b1c02127a", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender V", - "description": "Beat Penthouse 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63875161ce9f3b5ae57df0b4" + ], + "PrerequisiteChallengeIds": [ + "62c56fac28fe1154bf4be5f7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Castigo44", + "IL10" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Castigo44", + "ChallengeID": "62c570b828fe1154bf4be5f9", + "ChallengeName": "Castigo44 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 35 + "StatId": "revolver-castigo44-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "62c5706a28fe1154bf4be5f8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Castigo44", + "IL10" ] }, - "reward": { - "rewardId": "63da95f49e43fb0001917572", - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Castigo44", + "ChallengeID": "62c5719528fe1154bf4be616", + "ChallengeName": "Castigo44 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "revolver-castigo44-kills", + "TargetProgress": 500 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c570b828fe1154bf4be5f9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Castigo44", + "IL10" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484220, - "createdAt": "2023-02-01T16:40:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 10 enemies with the Mamba", + "ChallengeID": "62c572ad28fe1154bf4be622", + "ChallengeName": "Mamba I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63875161ce9f3b5ae57df0b4", - "isCompleted": false + "StatId": "overkill-mamba-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Mamba" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Mamba", + "ChallengeID": "62c5732628fe1154bf4be623", + "ChallengeName": "Mamba II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 + "StatId": "overkill-mamba-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da962821282a2b1c021397", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender VI", - "description": "Beat Penthouse 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da95f421282a2b1c02127a" + ], + "PrerequisiteChallengeIds": [ + "62c572ad28fe1154bf4be622" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Mamba" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Mamba", + "ChallengeID": "62c5746d28fe1154bf4be638", + "ChallengeName": "Mamba III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 50 + "StatId": "overkill-mamba-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "62c5732628fe1154bf4be623" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Mamba" ] }, - "reward": { - "rewardId": "63da96289e43fb0001917573", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Mamba", + "ChallengeID": "62c574c228fe1154bf4be639", + "ChallengeName": "Mamba IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "overkill-mamba-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c5746d28fe1154bf4be638" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Mamba" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484221, - "createdAt": "2023-02-01T16:41:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 300 enemies with the Mamba", + "ChallengeID": "62c5752128fe1154bf4be648", + "ChallengeName": "Mamba V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da95f421282a2b1c02127a", - "isCompleted": false + "StatId": "overkill-mamba-kills", + "TargetProgress": 300 } + ], + "PrerequisiteChallengeIds": [ + "62c574c228fe1154bf4be639" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Mamba" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy by headshot with the CAR4", + "ChallengeID": "62c5adfc28fe1154bf4bea8d", + "ChallengeName": "Headshot CAR4 I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 + "StatId": "assaultrifle-car4-headshot-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da966a21282a2b1c021471", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender VII", - "description": "Beat Penthouse 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da962821282a2b1c021397" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "CAR4" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the CAR4", + "ChallengeID": "62c5af5a28fe1154bf4beaf3", + "ChallengeName": "Headshot CAR4 II", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 65 + "StatId": "assaultrifle-car4-headshot-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62c5adfc28fe1154bf4bea8d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "CAR4" ] }, - "reward": { - "rewardId": "63da966a9e43fb0001917574", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the CAR4", + "ChallengeID": "62c5b05528fe1154bf4beaf8", + "ChallengeName": "Headshot CAR4 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "assaultrifle-car4-headshot-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c5af5a28fe1154bf4beaf3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "CAR4" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484222, - "createdAt": "2023-02-01T16:42:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the CAR4", + "ChallengeID": "62c5b0e728fe1154bf4beaf9", + "ChallengeName": "Headshot CAR4 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da962821282a2b1c021397", - "isCompleted": false + "StatId": "assaultrifle-car4-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62c5b05528fe1154bf4beaf8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "CAR4" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Compact7", + "ChallengeID": "62c5b21d28fe1154bf4beafa", + "ChallengeName": "Headshot Compact7 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Compact7", + "IL65" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Compact7", + "ChallengeID": "62c5b2b028fe1154bf4beb00", + "ChallengeName": "Headshot Compact7 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c5b21d28fe1154bf4beafa" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Compact7", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Compact7", + "ChallengeID": "62c5b33b28fe1154bf4beb06", + "ChallengeName": "Headshot Compact7 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 + "StatId": "smg-compact7-headshot-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da96b021282a2b1c021472", - "namespace": "pd3", - "name": "Penthouse Stealthy III: Repeat Offender VIII", - "description": "Beat Penthouse 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da966a21282a2b1c021471" + ], + "PrerequisiteChallengeIds": [ + "62c5b2b028fe1154bf4beb00" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Compact7", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Compact7", + "ChallengeID": "62c5b43628fe1154bf4beb07", + "ChallengeName": "Headshot Compact7 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "value": 80 + "StatId": "smg-compact7-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62c5b33b28fe1154bf4beb06" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Compact7", + "IL65" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the R880", + "ChallengeID": "62c69a0028fe1154bf4beea2", + "ChallengeName": "Headshot R880 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the R880", + "ChallengeID": "62c6aa6b28fe1154bf4bef6c", + "ChallengeName": "Headshot R880 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c69a0028fe1154bf4beea2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R880", + "IL2" ] }, - "reward": { - "rewardId": "63da96b09e43fb0001917575", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the R880", + "ChallengeID": "62c6c1dd28fe1154bf4bf19c", + "ChallengeName": "Headshot R880 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 300 + "StatId": "shotgun-r880-headshot-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c6aa6b28fe1154bf4bef6c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R880", + "IL2" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Penthouse" - ], - "orderNo": 2147484223, - "createdAt": "2023-02-01T16:43:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the R880", + "ChallengeID": "62c6c23628fe1154bf4bf1a0", + "ChallengeName": "Headshot R880 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da966a21282a2b1c021471", - "isCompleted": false + "StatId": "shotgun-r880-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62c6c1dd28fe1154bf4bf19c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the A114", + "ChallengeID": "62c6c32528fe1154bf4bf1a1", + "ChallengeName": "Headshot A114 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the A114", + "ChallengeID": "62c6c49e28fe1154bf4bf1ac", + "ChallengeName": "Headshot A114 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c6c32528fe1154bf4bf1a1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "A114", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the A114", + "ChallengeID": "62c6c57728fe1154bf4bf1ae", + "ChallengeName": "Headshot A114 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 + "StatId": "marksman-a114-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c6c49e28fe1154bf4bf1ac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "A114", + "IL15" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779e2e29040c967e3f7363", - "namespace": "pd3", - "name": "Penthouse Stealthy IV", - "description": "Beat Penthouse on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779e2ee23efe0001fd3376", - "stats": [ - { - "statCode": "infamy-point", - "value": 200 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Map", - "Overkill", - "Penthouse", - "Stealth" - ], - "orderNo": 398, - "createdAt": "2022-11-18T15:01:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the A114", + "ChallengeID": "62c6c5e528fe1154bf4bf1be", + "ChallengeName": "Headshot A114 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-headshot-kills", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638dbc8f9248292658eb0587", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender I", - "description": "Beat Penthouse 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63779e2e29040c967e3f7363" + ], + "PrerequisiteChallengeIds": [ + "62c6c57728fe1154bf4bf1ae" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the R900S", + "ChallengeID": "62c6cced28fe1154bf4bf27c", + "ChallengeName": "Headshot R900S I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R900S", + "IL53" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the R900S", + "ChallengeID": "62c6cdc328fe1154bf4bf27d", + "ChallengeName": "Headshot R900S II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c6cced28fe1154bf4bf27c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R900S", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the R900S", + "ChallengeID": "62c6ce3a28fe1154bf4bf2bd", + "ChallengeName": "Headshot R900S III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 3 + "StatId": "marksman-r900s-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c6cdc328fe1154bf4bf27d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R900S", + "IL53" ] }, - "reward": { - "rewardId": "638dbc8f3ec0980001844517", - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the R900S", + "ChallengeID": "62c6cec328fe1154bf4bf2be", + "ChallengeName": "Headshot R900S IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "marksman-r900s-headshot-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c6ce3a28fe1154bf4bf2bd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "R900S", + "IL53" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the S40", + "ChallengeID": "62c6eee228fe1154bf4bf416", + "ChallengeName": "Headshot S40 I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S40" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the S40", + "ChallengeID": "62c6f12c28fe1154bf4bf41b", + "ChallengeName": "Headshot S40 II", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c6eee228fe1154bf4bf416" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S40" + ] }, - "tags": [ - "Heist", - "Map", - "Overkill", - "Penthouse", - "Stealth" - ], - "orderNo": 481, - "createdAt": "2022-12-05T09:40:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the S40", + "ChallengeID": "62c6f1a728fe1154bf4bf422", + "ChallengeName": "Headshot S40 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63779e2e29040c967e3f7363", - "isCompleted": false + "StatId": "pistol-s40-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c6f12c28fe1154bf4bf41b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the S40", + "ChallengeID": "62c6f21828fe1154bf4bf425", + "ChallengeName": "Headshot S40 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 3 + "StatId": "pistol-s40-headshot-kills", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638dbd759248292658eb09f4", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender II", - "description": "Beat Penthouse 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638dbc8f9248292658eb0587" + ], + "PrerequisiteChallengeIds": [ + "62c6f1a728fe1154bf4bf422" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S40" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Castigo44", + "ChallengeID": "62c6f35f28fe1154bf4bf426", + "ChallengeName": "Headshot Castigo44 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Castigo44", + "IL10" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Castigo44", + "ChallengeID": "62c6f3ce28fe1154bf4bf433", + "ChallengeName": "Headshot Castigo44 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "62c6f35f28fe1154bf4bf426" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Castigo44", + "IL10" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Castigo44", + "ChallengeID": "62c6f45c28fe1154bf4bf465", + "ChallengeName": "Headshot Castigo44 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 6 + "StatId": "revolver-castigo44-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62c6f3ce28fe1154bf4bf433" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Castigo44", + "IL10" ] }, - "reward": { - "rewardId": "638dbd753ec098000184457b", - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Castigo44", + "ChallengeID": "62c6f4b928fe1154bf4bf466", + "ChallengeName": "Headshot Castigo44 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "revolver-castigo44-headshot-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c6f45c28fe1154bf4bf465" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Castigo44", + "IL10" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Mamba", + "ChallengeID": "62c6f58528fe1154bf4bf46f", + "ChallengeName": "Headshot Mamba I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mamba" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Mamba", + "ChallengeID": "62c6f65228fe1154bf4bf470", + "ChallengeName": "Headshot Mamba II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mamba" + ] + }, + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Mamba", + "ChallengeID": "62c6f6e228fe1154bf4bf471", + "ChallengeName": "Headshot Mamba III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-headshot-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mamba" + ] + }, + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Mamba", + "ChallengeID": "62c6f74e28fe1154bf4bf472", + "ChallengeName": "Headshot Mamba IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-headshot-kills", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mamba" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62c82f6428fe1154bf4bfe57", + "ChallengeName": "Branch Bank Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62c8301228fe1154bf4bfe58", + "ChallengeName": "Branch Bank Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62c830c028fe1154bf4bfe99", + "ChallengeName": "Branch Bank Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62c8312628fe1154bf4bfe9a", + "ChallengeName": "Branch Bank Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62c833ea28fe1154bf4bfe9f", + "ChallengeName": "Branch Bank Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62c834a728fe1154bf4bfea0", + "ChallengeName": "Branch Bank Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62c8359728fe1154bf4bfeb3", + "ChallengeName": "Branch Bank Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Branch Bank on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62c8361628fe1154bf4bfebb", + "ChallengeName": "Branch Bank Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62c84cd528fe1154bf4c04ac", + "ChallengeName": "Night Club Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62c84d2328fe1154bf4c04ad", + "ChallengeName": "Night Club Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62c84d9628fe1154bf4c04ae", + "ChallengeName": "Night Club Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62c84dff28fe1154bf4c04af", + "ChallengeName": "Night Club Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62c84e6028fe1154bf4c04b0", + "ChallengeName": "Night Club Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62c84ee628fe1154bf4c04be", + "ChallengeName": "Night Club Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62c84f3b28fe1154bf4c04bf", + "ChallengeName": "Night Club Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62c84fc228fe1154bf4c04c0", + "ChallengeName": "Night Club Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Escape with the maximum payout", + "ChallengeID": "62cbdf6728fe1154bf4c06ed", + "ChallengeName": "Branch Bank: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Branch", + "Bank", + "Max", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "62cbe00d28fe1154bf4c06ee", + "ChallengeName": "Branch Bank: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Branch", + "Bank", + "No", + "Down", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape with the maximum payout", + "ChallengeID": "62cbe0b828fe1154bf4c06ef", + "ChallengeName": "Jewelry Store: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Jewelry", + "Store", + "Max", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "62cbe18e28fe1154bf4c06f0", + "ChallengeName": "Jewelry Store: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Jewelry", + "Store", + "No", + "Down", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape with the maximum payout", + "ChallengeID": "62cc088328fe1154bf4c08fd", + "ChallengeName": "Art Gallery: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Art", + "Gallery", + "Max", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "62cc093428fe1154bf4c08fe", + "ChallengeName": "Art Gallery: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Art", + "Gallery", + "No", + "Down", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape with the maximum payout", + "ChallengeID": "62cc09f628fe1154bf4c0909", + "ChallengeName": "Night Club: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Night", + "Club", + "Max", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "62cc0a4a28fe1154bf4c090d", + "ChallengeName": "Night Club: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Night", + "Club", + "No", + "Down", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape with the maximum payout", + "ChallengeID": "62cc0b1328fe1154bf4c0912", + "ChallengeName": "Sharke Bank (FP): Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Sharke", + "Bank", + "Max", + "Heist" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "62cc0b8c28fe1154bf4c0913", + "ChallengeName": "Sharke Bank (FP): On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Sharke", + "Bank", + "No", + "Down", + "Heist" + ] + }, + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62cd5bdd28fe1154bf4c1369", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "625eb99828fe1154bf4b70fc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" + ] }, - "tags": [ - "Heist", - "Map", - "Overkill", - "Penthouse", - "Stealth" - ], - "orderNo": 482, - "createdAt": "2022-12-05T09:44:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62cd5cfc28fe1154bf4c136d", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638dbc8f9248292658eb0587", - "isCompleted": false + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 45 } + ], + "PrerequisiteChallengeIds": [ + "62cd5bdd28fe1154bf4c1369" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62cd5e0d28fe1154bf4c1374", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 6 + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638dbe099248292658eb0a8c", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender III", - "description": "Beat Penthouse 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638dbd759248292658eb09f4" + ], + "PrerequisiteChallengeIds": [ + "62cd5cfc28fe1154bf4c136d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd607e28fe1154bf4c137c", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 10 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "625ebbda28fe1154bf4b7119" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "638dbe093ec09800018445a9", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd647e28fe1154bf4c1435", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62cd607e28fe1154bf4c137c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Heist", - "Map", - "Overkill", - "Penthouse", - "Stealth" - ], - "orderNo": 483, - "createdAt": "2022-12-05T09:46:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd660128fe1154bf4c143b", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638dbd759248292658eb09f4", - "isCompleted": false + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62cd647e28fe1154bf4c1435" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd7f8a28fe1154bf4c15f2", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 10 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "638dbe5d9248292658eb0e83", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender IV", - "description": "Beat Penthouse 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638dbe099248292658eb0a8c" + ], + "PrerequisiteChallengeIds": [ + "625e7f0628fe1154bf4b6f84" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd804c28fe1154bf4c15f4", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 15 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62cd7f8a28fe1154bf4c15f2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "638dbe5d3ec09800018445d8", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd814b28fe1154bf4c15f5", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62cd804c28fe1154bf4c15f4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Heist", - "Map", - "Overkill", - "Penthouse", - "Stealth" - ], - "orderNo": 484, - "createdAt": "2022-12-05T09:48:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62cd827f28fe1154bf4c1609", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638dbe099248292658eb0a8c", - "isCompleted": false + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62cd814b28fe1154bf4c15f5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62cd836c28fe1154bf4c160a", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 15 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da971221282a2b1c021663", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender V", - "description": "Beat Penthouse 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "638dbe5d9248292658eb0e83" + ], + "PrerequisiteChallengeIds": [ + "625e81a328fe1154bf4b6f8d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62cd849d28fe1154bf4c1614", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 20 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62cd836c28fe1154bf4c160a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63da97129e43fb0001917576", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62cd8ae328fe1154bf4c1647", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62cd849d28fe1154bf4c1614" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484224, - "createdAt": "2023-02-01T16:45:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62cd8b8728fe1154bf4c1648", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "638dbe5d9248292658eb0e83", - "isCompleted": false + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62cd8ae328fe1154bf4c1647" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ceae6428fe1154bf4c1eb2", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 20 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da974d21282a2b1c021664", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender VI", - "description": "Beat Penthouse 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da971221282a2b1c021663" + ], + "PrerequisiteChallengeIds": [ + "625ebc6928fe1154bf4b711c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ceaf5928fe1154bf4c2036", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 25 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 45 } + ], + "PrerequisiteChallengeIds": [ + "62ceae6428fe1154bf4c1eb2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63da974d9e43fb0001917577", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62cfe76028fe1154bf4c2822", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ceaf5928fe1154bf4c2036" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484225, - "createdAt": "2023-02-01T16:46:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62cfe8df28fe1154bf4c2823", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da971221282a2b1c021663", - "isCompleted": false + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "625ebd7c28fe1154bf4b7139" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62cfe9c328fe1154bf4c2824", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 25 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da978921282a2b1c021b3f", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender VII", - "description": "Beat Penthouse 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da974d21282a2b1c021664" + ], + "PrerequisiteChallengeIds": [ + "62cfe8df28fe1154bf4c2823" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62cfead028fe1154bf4c2825", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 30 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62cfe9c328fe1154bf4c2824" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63da97899e43fb00019175dc", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62d011cc28fe1154bf4c2a7d", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 5 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e83af28fe1154bf4b6fa2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484226, - "createdAt": "2023-02-01T16:47:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62d0129228fe1154bf4c2a7e", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da974d21282a2b1c021664", - "isCompleted": false + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62d011cc28fe1154bf4c2a7d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62d0140d28fe1154bf4c2a81", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 30 + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da97c421282a2b1c021b40", - "namespace": "pd3", - "name": "Penthouse Stealthy IV: Repeat Offender VIII", - "description": "Beat Penthouse 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da978921282a2b1c021b3f" + ], + "PrerequisiteChallengeIds": [ + "62d0129228fe1154bf4c2a7e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62d0153928fe1154bf4c2a82", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "value": 40 + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62d0140d28fe1154bf4c2a81" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63da97c49e43fb00019175dd", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62d016ba28fe1154bf4c2a83", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 310 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 3 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e848d28fe1154bf4b6fa3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Penthouse" - ], - "orderNo": 2147484227, - "createdAt": "2023-02-01T16:48:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62d017b028fe1154bf4c2a84", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da978921282a2b1c021b3f", - "isCompleted": false + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62d016ba28fe1154bf4c2a83" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62d0190c28fe1154bf4c2ad4", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "penthouse-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779ea529040c967e3f7682", - "namespace": "pd3", - "name": "Penthouse: Full Payout", - "description": "Escape with the maximum amount of bags", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779ea5e23efe0001fd3469", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Penthouse", - "Max" - ], - "orderNo": 399, - "createdAt": "2022-11-18T15:03:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63779ef929040c967e3f7891", - "namespace": "pd3", - "name": "Penthouse: On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63779ef9e23efe0001fd368c", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Penthouse", - "No", - "Down" - ], - "orderNo": 400, - "createdAt": "2022-11-18T15:04:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "penthouse-no-downs", - "currentValue": 0, - "targetValue": 1 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9fc17f0dd5f341f2fbe2", - "namespace": "pd3", - "name": "Pics or it didn't happen I", - "description": "Place a Micro Camera.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "use-microcamera", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ce9fc1c9460a0001ef5848", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Tutorial", - "Micro" - ], - "orderNo": 2147483672, - "createdAt": "2023-01-23T14:54:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "use-microcamera", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ce9ffa7f0dd5f341f2fc2b", - "namespace": "pd3", - "name": "Pics or it didn't happen II", - "description": "Place 20 Micro Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9fc17f0dd5f341f2fbe2" + ], + "PrerequisiteChallengeIds": [ + "62d017b028fe1154bf4c2a84" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62d01a4f28fe1154bf4c2ad5", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "value": 10 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62d0190c28fe1154bf4c2ad4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "63ce9ffac9460a0001ef5849", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62e8e003a74ddca83bcf3fa8", + "ChallengeName": "Art Gallery Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "artgallery-loud-normal", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e858228fe1154bf4b6fa4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" + ] }, - "tags": [ - "Heist", - "Micro" - ], - "orderNo": 2147483673, - "createdAt": "2023-01-23T14:55:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62e8e1afa74ddca83bcf3fad", + "ChallengeName": "Art Gallery Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ce9fc17f0dd5f341f2fbe2", - "isCompleted": false + "StatId": "artgallery-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62e8e003a74ddca83bcf3fa8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62e8eaeca74ddca83bcf3fb7", + "ChallengeName": "Art Gallery Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "currentValue": 0, - "targetValue": 10 + "StatId": "artgallery-loud-normal", + "TargetProgress": 45 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea0377f0dd5f341f2fc2c", - "namespace": "pd3", - "name": "Pics or it didn't happen III", - "description": "Place 50 Micro Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ce9ffa7f0dd5f341f2fc2b" + ], + "PrerequisiteChallengeIds": [ + "62e8e1afa74ddca83bcf3fad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62e8ec64a74ddca83bcf3fb9", + "ChallengeName": "Art Gallery Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "value": 30 + "StatId": "artgallery-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62e8eaeca74ddca83bcf3fb7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cea037c9460a0001ef584d", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8ecfaa74ddca83bcf3fbb", + "ChallengeName": "Art Gallery Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "artgallery-loud-hard", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e865e28fe1154bf4b6fb7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Heist", - "Micro" - ], - "orderNo": 2147483674, - "createdAt": "2023-01-23T14:56:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8ee0ea74ddca83bcf3fc1", + "ChallengeName": "Art Gallery Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ce9ffa7f0dd5f341f2fc2b", - "isCompleted": false + "StatId": "artgallery-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62e8ecfaa74ddca83bcf3fbb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8f07ca74ddca83bcf3fcd", + "ChallengeName": "Art Gallery Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "currentValue": 0, - "targetValue": 30 + "StatId": "artgallery-loud-hard", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea0747f0dd5f341f2fc2d", - "namespace": "pd3", - "name": "Pics or it didn't happen IV", - "description": "Place 100 Micro Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea0377f0dd5f341f2fc2c" + ], + "PrerequisiteChallengeIds": [ + "62e8ee0ea74ddca83bcf3fc1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8f11ba74ddca83bcf3fce", + "ChallengeName": "Art Gallery Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "value": 60 + "StatId": "artgallery-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62e8f07ca74ddca83bcf3fcd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cea074c9460a0001ef584e", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8f276a74ddca83bcf3fd7", + "ChallengeName": "Art Gallery Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 5 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e86d728fe1154bf4b6fb8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Heist", - "Micro" - ], - "orderNo": 2147483675, - "createdAt": "2023-01-23T14:57:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8f3f1a74ddca83bcf3fe1", + "ChallengeName": "Art Gallery Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cea0377f0dd5f341f2fc2c", - "isCompleted": false + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62e8f276a74ddca83bcf3fd7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62e8f4c7a74ddca83bcf3fe2", + "ChallengeName": "Art Gallery Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "currentValue": 0, - "targetValue": 60 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea1487f0dd5f341f2fc6f", - "namespace": "pd3", - "name": "Pics or it didn't happen V", - "description": "Place 300 Micro Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea0747f0dd5f341f2fc2d" + ], + "PrerequisiteChallengeIds": [ + "62e8f3f1a74ddca83bcf3fe1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62ea42eaa74ddca83bcf4219", + "ChallengeName": "Art Gallery Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "value": 100 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62e8f4c7a74ddca83bcf3fe2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cea148c9460a0001ef5868", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62ea43baa74ddca83bcf421a", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "artgallery-loud-overkill", + "TargetProgress": 3 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "625e872828fe1154bf4b6fb9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" + ] }, - "tags": [ - "Heist", - "Micro" - ], - "orderNo": 2147483676, - "createdAt": "2023-01-23T15:01:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62ea445ca74ddca83bcf421b", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cea0747f0dd5f341f2fc2d", - "isCompleted": false + "StatId": "artgallery-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62ea43baa74ddca83bcf421a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62ea450ba74ddca83bcf421c", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "use-microcamera", - "currentValue": 0, - "targetValue": 100 + "StatId": "artgallery-loud-overkill", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62ea445ca74ddca83bcf421b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfebfc7f0dd5f341f3e411", - "namespace": "pd3", - "name": "Pineapple I", - "description": "Defeat an enemy with a frag grenade.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "frag-grenade-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfebfcc9460a0001ef7190", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Frag", - "Grenade", - "Kill", - "Tutorial" - ], - "orderNo": 2147483785, - "createdAt": "2023-01-24T14:32:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "frag-grenade-kills", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Beat Art Gallery 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62ea457aa74ddca83bcf421d", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-loud-overkill", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfec397f0dd5f341f3e4cd", - "namespace": "pd3", - "name": "Pineapple II", - "description": "Defeat 20 enemies with frag grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfebfc7f0dd5f341f3e411" + ], + "PrerequisiteChallengeIds": [ + "62ea450ba74ddca83bcf421c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ea5819a74ddca83bcf4237", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "value": 20 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "625e993728fe1154bf4b6fd4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cfec39c9460a0001ef7193", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ea58e8a74ddca83bcf4238", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ea5819a74ddca83bcf4237" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" + ] }, - "tags": [ - "Combat", - "Kill", - "Frag", - "Grenade" - ], - "orderNo": 2147483786, - "createdAt": "2023-01-24T14:33:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ea5bfaa74ddca83bcf4247", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfebfc7f0dd5f341f3e411", - "isCompleted": false + "StatId": "artgallery-stealth-normal", + "TargetProgress": 45 } + ], + "PrerequisiteChallengeIds": [ + "62ea58e8a74ddca83bcf4238" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ea5d78a74ddca83bcf427e", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "currentValue": 0, - "targetValue": 20 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfec737f0dd5f341f3e4ce", - "namespace": "pd3", - "name": "Pineapple III", - "description": "Defeat 50 enemies with frag grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfec397f0dd5f341f3e4cd" + ], + "PrerequisiteChallengeIds": [ + "62ea5bfaa74ddca83bcf4247" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea5f3ba74ddca83bcf4283", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "value": 50 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "625e99a928fe1154bf4b6fd6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cfec73c9460a0001ef7194", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea5fd3a74ddca83bcf4284", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ea5f3ba74ddca83bcf4283" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Combat", - "Frag", - "Grenade", - "Kill" - ], - "orderNo": 2147483787, - "createdAt": "2023-01-24T14:34:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea60e7a74ddca83bcf4285", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfec397f0dd5f341f3e4cd", - "isCompleted": false + "StatId": "artgallery-stealth-hard", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62ea5fd3a74ddca83bcf4284" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea6181a74ddca83bcf4286", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfecb87f0dd5f341f3ef4b", - "namespace": "pd3", - "name": "Pineapple IV", - "description": "Defeat 100 enemies with frag grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfec737f0dd5f341f3e4ce" + ], + "PrerequisiteChallengeIds": [ + "62ea60e7a74ddca83bcf4285" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea7817a74ddca83bcf4498", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "value": 100 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 5 } + ], + "PrerequisiteChallengeIds": [ + "625e9a1b28fe1154bf4b6fd7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63cfecb8c9460a0001ef7326", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea78c1a74ddca83bcf4499", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ea7817a74ddca83bcf4498" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Combat", - "Frag", - "Grenade", - "Kill" - ], - "orderNo": 2147483788, - "createdAt": "2023-01-24T14:35:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea796da74ddca83bcf449a", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfec737f0dd5f341f3e4ce", - "isCompleted": false + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62ea78c1a74ddca83bcf4499" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ea7be9a74ddca83bcf44bf", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "frag-grenade-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62ea796da74ddca83bcf449a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29caa7f0dd5f341fcf99f", - "namespace": "pd3", - "name": "R880 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the R880.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d29caa0c06b20001e77611", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147483892, - "createdAt": "2023-01-26T15:30:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-ads-kills", - "currentValue": 0, - "targetValue": 20 + }, + { + "ChallengeDescription": "Beat Art Gallery 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62ea7ddfa74ddca83bcf45a2", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29cea7f0dd5f341fcfa17", - "namespace": "pd3", - "name": "R880 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d29caa7f0dd5f341fcf99f" + ], + "PrerequisiteChallengeIds": [ + "625e9c5628fe1154bf4b6fe7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62ea7e94a74ddca83bcf45a3", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "value": 50 + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62ea7ddfa74ddca83bcf45a2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "63d29cea0c06b20001e77612", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62ea7f18a74ddca83bcf45a4", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ea7e94a74ddca83bcf45a3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" + ] }, - "tags": [ - "ADS", - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147483893, - "createdAt": "2023-01-26T15:31:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62ea7f97a74ddca83bcf45a5", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d29caa7f0dd5f341fcf99f", - "isCompleted": false + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62ea7f18a74ddca83bcf45a4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62eb7f61a74ddca83bcf49ad", + "ChallengeName": "Branch Bank Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "branchbank-loud-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29d277f0dd5f341fcfa18", - "namespace": "pd3", - "name": "R880 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the R880.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d29cea7f0dd5f341fcfa17" + ], + "PrerequisiteChallengeIds": [ + "62c82f6428fe1154bf4bfe57" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62eb8002a74ddca83bcf49b1", + "ChallengeName": "Branch Bank Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "value": 100 + "StatId": "branchbank-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62eb7f61a74ddca83bcf49ad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d29d270c06b20001e77613", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62eb80f0a74ddca83bcf49b2", + "ChallengeName": "Branch Bank Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "branchbank-loud-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62eb8002a74ddca83bcf49b1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" + ] }, - "tags": [ - "ADS", - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147483894, - "createdAt": "2023-01-26T15:32:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62eb81f1a74ddca83bcf49c6", + "ChallengeName": "Branch Bank Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d29cea7f0dd5f341fcfa17", - "isCompleted": false + "StatId": "branchbank-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62eb80f0a74ddca83bcf49b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb847da74ddca83bcf49eb", + "ChallengeName": "Branch Bank Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "branchbank-loud-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29d617f0dd5f341fcfa19", - "namespace": "pd3", - "name": "R880 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d29d277f0dd5f341fcfa18" + ], + "PrerequisiteChallengeIds": [ + "62c8301228fe1154bf4bfe58" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb85b6a74ddca83bcf4a14", + "ChallengeName": "Branch Bank Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "value": 200 + "StatId": "branchbank-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62eb847da74ddca83bcf49eb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d29d610c06b20001e77614", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb872aa74ddca83bcf4a3d", + "ChallengeName": "Branch Bank Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "branchbank-loud-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62eb85b6a74ddca83bcf4a14" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "ADS", - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147483895, - "createdAt": "2023-01-26T15:33:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb8849a74ddca83bcf4a3e", + "ChallengeName": "Branch Bank Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d29d277f0dd5f341fcfa18", - "isCompleted": false + "StatId": "branchbank-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62eb872aa74ddca83bcf4a3d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb890ca74ddca83bcf4a3f", + "ChallengeName": "Branch Bank Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d29d987f0dd5f341fcfa1a", - "namespace": "pd3", - "name": "R880 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d29d617f0dd5f341fcfa19" + ], + "PrerequisiteChallengeIds": [ + "62c830c028fe1154bf4bfe99" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb8c11a74ddca83bcf4a5b", + "ChallengeName": "Branch Bank Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "value": 400 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62eb890ca74ddca83bcf4a3f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d29d980c06b20001e77615", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb8ce7a74ddca83bcf4a5d", + "ChallengeName": "Branch Bank Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62eb8c11a74ddca83bcf4a5b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "ADS", - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147483896, - "createdAt": "2023-01-26T15:34:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62eb8d61a74ddca83bcf4a67", + "ChallengeName": "Branch Bank Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d29d617f0dd5f341fcfa19", - "isCompleted": false + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62eb8ce7a74ddca83bcf4a5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62eb8e36a74ddca83bcf4a6f", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-ads-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4561428fe1154bf4be0b3", - "namespace": "pd3", - "name": "R880 I", - "description": "Defeat 50 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c4561407a95c0001904925", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 91, - "createdAt": "2022-07-05T15:17:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 50 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c456a828fe1154bf4be0d5", - "namespace": "pd3", - "name": "R880 II", - "description": "Defeat 100 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4561428fe1154bf4be0b3" + ], + "PrerequisiteChallengeIds": [ + "62c8312628fe1154bf4bfe9a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62eb8ee7a74ddca83bcf4a70", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "value": 100 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62eb8e36a74ddca83bcf4a6f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "62c456a807a95c000190496b", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62eb8f50a74ddca83bcf4a71", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62eb8ee7a74ddca83bcf4a70" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 92, - "createdAt": "2022-07-05T15:20:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62eb8fbba74ddca83bcf4a77", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c4561428fe1154bf4be0b3", - "isCompleted": false + "StatId": "branchbank-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62eb8f50a74ddca83bcf4a71" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ed3486a74ddca83bcf565d", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4572a28fe1154bf4be0d6", - "namespace": "pd3", - "name": "R880 III", - "description": "Defeat 200 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c456a828fe1154bf4be0d5" + ], + "PrerequisiteChallengeIds": [ + "62c833ea28fe1154bf4bfe9f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ed3532a74ddca83bcf565e", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "value": 200 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62ed3486a74ddca83bcf565d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "62c4572a07a95c0001904976", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ed363ea74ddca83bcf565f", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ed3532a74ddca83bcf565e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 93, - "createdAt": "2022-07-05T15:22:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62ed3738a74ddca83bcf5666", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c456a828fe1154bf4be0d5", - "isCompleted": false + "StatId": "branchbank-stealth-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62ed363ea74ddca83bcf565f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ed3851a74ddca83bcf5673", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c457f728fe1154bf4be0e9", - "namespace": "pd3", - "name": "R880 IV", - "description": "Defeat 350 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4572a28fe1154bf4be0d6" + ], + "PrerequisiteChallengeIds": [ + "62c834a728fe1154bf4bfea0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ed38cca74ddca83bcf5674", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "value": 350 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62ed3851a74ddca83bcf5673" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "62c457f707a95c0001904979", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62ed3ab0a74ddca83bcf5677", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62ed38cca74ddca83bcf5674" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 94, - "createdAt": "2022-07-05T15:25:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f0f3a5a74ddca83bcf5b39", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c4572a28fe1154bf4be0d6", - "isCompleted": false + "StatId": "branchbank-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62ed3ab0a74ddca83bcf5677" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f0f449a74ddca83bcf5b3d", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50c1c7f4d322dc61d5dba", - "namespace": "pd3", - "name": "R880 Master", - "description": "Complete a heist with all base mods unlocked for the R880 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50c1cae93c90001c98f7a", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL2", - "Meta", - "Mod", - "R880", - "Unlock" - ], - "orderNo": 2147484273, - "createdAt": "2023-02-09T15:07:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b2667f4d322dc619979b", - "namespace": "pd3", - "name": "R880 Rookie", - "description": "Complete a heist using the R880 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b266ae93c90001c9735f", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL2", - "Meta", - "Mod", - "R880", - "Unlock" - ], - "orderNo": 2147484235, - "createdAt": "2023-02-08T14:32:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4585a28fe1154bf4be0ea", - "namespace": "pd3", - "name": "R880 V", - "description": "Defeat 500 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "62c4585a07a95c000190497a", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 95, - "createdAt": "2022-07-05T15:27:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4ee267f4d322dc61c9d3c", - "namespace": "pd3", - "name": "R880 Veteran", - "description": "Complete a heist with four mod slots filled on the R880 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4ee26ae93c90001c98a5c", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL2", - "Meta", - "Mod", - "R880", - "Unlock" - ], - "orderNo": 2147484252, - "createdAt": "2023-02-09T12:59:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411cd5583c1792981dc4e97", - "namespace": "pd3", - "name": "R880 VI", - "description": "Defeat 750 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "value": 750 - } - ] - }, - "reward": { - "rewardId": "6411cd55e2027d0001c0f54f", - "stats": [ - { - "statCode": "infamy-point", - "value": 90 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147484348, - "createdAt": "2023-03-15T13:51:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 750 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411ce6183c1792981dc5e98", - "namespace": "pd3", - "name": "R880 VII", - "description": "Defeat 1000 enemies with the R880", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411cd5583c1792981dc4e97" + ], + "PrerequisiteChallengeIds": [ + "62c8359728fe1154bf4bfeb3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f0f4fda74ddca83bcf5b49", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "value": 1000 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62f0f449a74ddca83bcf5b3d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "6411ce61e2027d0001c0f5cc", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f0f5d4a74ddca83bcf5b53", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f0f4fda74ddca83bcf5b49" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL2", - "Kill", - "R880" - ], - "orderNo": 2147484349, - "createdAt": "2023-03-15T13:55:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f0f6c1a74ddca83bcf5b55", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "6411cd5583c1792981dc4e97", - "isCompleted": false + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62f0f5d4a74ddca83bcf5b53" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f0f7b9a74ddca83bcf5b56", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "shotgun-r880-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45ef528fe1154bf4be127", - "namespace": "pd3", - "name": "R900S I", - "description": "Defeat 50 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c45ef507a95c0001904998", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 101, - "createdAt": "2022-07-05T15:55:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c45f6228fe1154bf4be128", - "namespace": "pd3", - "name": "R900S II", - "description": "Defeat 100 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c45ef528fe1154bf4be127" + ], + "PrerequisiteChallengeIds": [ + "62c8361628fe1154bf4bfebb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f0f8b0a74ddca83bcf5b61", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 100 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62f0f7b9a74ddca83bcf5b56" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "62c45f6207a95c0001904999", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f0f947a74ddca83bcf5b69", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f0f8b0a74ddca83bcf5b61" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 102, - "createdAt": "2022-07-05T15:57:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f0f9c9a74ddca83bcf5b7a", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c45ef528fe1154bf4be127", - "isCompleted": false + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62f0f947a74ddca83bcf5b69" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f0ffaaa74ddca83bcf5b84", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c4600f28fe1154bf4be135", - "namespace": "pd3", - "name": "R900S III", - "description": "Defeat 200 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c456a828fe1154bf4be0d5" + ], + "PrerequisiteChallengeIds": [ + "625e9d3228fe1154bf4b6ff7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f10285a74ddca83bcf5b96", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 200 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62f0ffaaa74ddca83bcf5b84" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "62c4600f07a95c00019049a0", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f10361a74ddca83bcf5b97", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f10285a74ddca83bcf5b96" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 103, - "createdAt": "2022-07-05T16:00:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f10488a74ddca83bcf5ca9", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c456a828fe1154bf4be0d5", - "isCompleted": false + "StatId": "firstplayable-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62f10361a74ddca83bcf5b97" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f105aba74ddca83bcf5caa", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c545a128fe1154bf4be4f4", - "namespace": "pd3", - "name": "R900S IV", - "description": "Defeat 350 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c4600f28fe1154bf4be135" + ], + "PrerequisiteChallengeIds": [ + "625eb30528fe1154bf4b708c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f1072ea74ddca83bcf5cab", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 350 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62f105aba74ddca83bcf5caa" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "62c545a107a95c0001904ca8", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f107c5a74ddca83bcf5cbb", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f1072ea74ddca83bcf5cab" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 104, - "createdAt": "2022-07-06T08:19:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f108e5a74ddca83bcf5ce2", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c4600f28fe1154bf4be135", - "isCompleted": false + "StatId": "firstplayable-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62f107c5a74ddca83bcf5cbb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f10aeda74ddca83bcf5cee", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a7567f0dd5f341fd1f4b", - "namespace": "pd3", - "name": "R900S Long Range I", - "description": "Defeat 10 enemies with the R900S from over 50 metres away", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-longrange-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2a7560c06b20001e779be", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL53", - "Kill", - "Long", - "R900S", - "Range" - ], - "orderNo": 2147483907, - "createdAt": "2023-01-26T16:16:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-longrange-kills", - "currentValue": 0, - "targetValue": 10 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a7ab7f0dd5f341fd1f4c", - "namespace": "pd3", - "name": "R900S Long Range II", - "description": "Defeat 50 enemies with the R900S from over 50 metres away", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a7567f0dd5f341fd1f4b" + ], + "PrerequisiteChallengeIds": [ + "625eb38c28fe1154bf4b708e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f10ba6a74ddca83bcf5cef", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "value": 50 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62f10aeda74ddca83bcf5cee" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d2a7ab0c06b20001e779bf", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f10cc0a74ddca83bcf5cf0", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f10ba6a74ddca83bcf5cef" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "Long", - "R900S", - "Range" - ], - "orderNo": 2147483908, - "createdAt": "2023-01-26T16:17:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f10dfea74ddca83bcf5cf1", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2a7567f0dd5f341fd1f4b", - "isCompleted": false + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62f10cc0a74ddca83bcf5cf0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f134c2a74ddca83bcf5e99", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a7de7f0dd5f341fd1f4d", - "namespace": "pd3", - "name": "R900S Long Range III", - "description": "Defeat 100 enemies with the R900S from over 50 metres away", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a7ab7f0dd5f341fd1f4c" + ], + "PrerequisiteChallengeIds": [ + "625eb3e828fe1154bf4b708f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f1354ea74ddca83bcf5e9a", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "value": 100 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62f134c2a74ddca83bcf5e99" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d2a7de0c06b20001e779c0", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f135e3a74ddca83bcf5e9d", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f1354ea74ddca83bcf5e9a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "Long", - "R900S", - "Range" - ], - "orderNo": 2147483909, - "createdAt": "2023-01-26T16:18:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f13650a74ddca83bcf5e9e", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2a7ab7f0dd5f341fd1f4c", - "isCompleted": false + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62f135e3a74ddca83bcf5e9d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f24e86a74ddca83bcf68b9", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a8307f0dd5f341fd1f4e", - "namespace": "pd3", - "name": "R900S Long Range IV", - "description": "Defeat 200 enemies with the R900S from over 50 metres away", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a7de7f0dd5f341fd1f4d" + ], + "PrerequisiteChallengeIds": [ + "625eb43c28fe1154bf4b7090" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f24fb5a74ddca83bcf68ba", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "value": 200 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62f24e86a74ddca83bcf68b9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d2a8300c06b20001e779c1", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f250dea74ddca83bcf68bb", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f24fb5a74ddca83bcf68ba" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "Long", - "R900S", - "Range" - ], - "orderNo": 2147483910, - "createdAt": "2023-01-26T16:20:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f251b8a74ddca83bcf68c2", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2a7de7f0dd5f341fd1f4d", - "isCompleted": false + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62f250dea74ddca83bcf68bb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f25f57a74ddca83bcf68e1", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2a8677f0dd5f341fd1f4f", - "namespace": "pd3", - "name": "R900S Long Range V", - "description": "Defeat 400 enemies with the R900S from over 50 metres away", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2a8307f0dd5f341fd1f4e" + ], + "PrerequisiteChallengeIds": [ + "625eb49828fe1154bf4b7091" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f2603ea74ddca83bcf68e8", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "value": 400 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62f25f57a74ddca83bcf68e1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d2a8670c06b20001e779c2", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f260e6a74ddca83bcf68e9", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f2603ea74ddca83bcf68e8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "Long", - "R900S", - "Range" - ], - "orderNo": 2147483911, - "createdAt": "2023-01-26T16:20:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f26185a74ddca83bcf68f1", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2a8307f0dd5f341fd1f4e", - "isCompleted": false + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62f260e6a74ddca83bcf68e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f26265a74ddca83bcf68f2", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-longrange-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50cf97f4d322dc61d67d0", - "namespace": "pd3", - "name": "R900S Master", - "description": "Complete a heist with all base mods unlocked for the R900S with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50cf9ae93c90001c98ff8", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL53", - "Meta", - "Mod", - "R900S", - "Unlock" - ], - "orderNo": 2147484276, - "createdAt": "2023-02-09T15:10:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b3ea7f4d322dc6199e08", - "namespace": "pd3", - "name": "R900S Rookie", - "description": "Complete a heist using the R900S with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b3eaae93c90001c9736b", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL53", - "Meta", - "Mod", - "R900S", - "Unlock" - ], - "orderNo": 2147484238, - "createdAt": "2023-02-08T14:38:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c546b228fe1154bf4be4f5", - "namespace": "pd3", - "name": "R900S V", - "description": "Defeat 500 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c545a128fe1154bf4be4f4" + ], + "PrerequisiteChallengeIds": [ + "625eb4e628fe1154bf4b70a8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f2633ea74ddca83bcf68f8", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 500 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62f26265a74ddca83bcf68f2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "62c546b207a95c0001904cb5", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f263f6a74ddca83bcf68f9", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f2633ea74ddca83bcf68f8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 105, - "createdAt": "2022-07-06T08:24:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f26466a74ddca83bcf6925", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c545a128fe1154bf4be4f4", - "isCompleted": false + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62f263f6a74ddca83bcf68f9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f26514a74ddca83bcf6935", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f07d7f4d322dc61ca696", - "namespace": "pd3", - "name": "R900S Veteran", - "description": "Complete a heist with four mod slots filled on the R900S with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f07dae93c90001c98a7d", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL53", - "Meta", - "Mod", - "R900S", - "Unlock" - ], - "orderNo": 2147484255, - "createdAt": "2023-02-09T13:09:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "marksman-r900s-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d32183c1792981dcaee3", - "namespace": "pd3", - "name": "R900S VI", - "description": "Defeat 750 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c546b228fe1154bf4be4f5" + ], + "PrerequisiteChallengeIds": [ + "625eb57028fe1154bf4b70a9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f265aba74ddca83bcf6936", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 750 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62f26514a74ddca83bcf6935" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "6411d321e2027d0001c0f724", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f26630a74ddca83bcf6939", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f265aba74ddca83bcf6936" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 2147484354, - "createdAt": "2023-03-15T14:16:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f266f6a74ddca83bcf6948", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c546b228fe1154bf4be4f5", - "isCompleted": false + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62f26630a74ddca83bcf6939" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f26b96a74ddca83bcf6972", + "ChallengeName": "Night Club Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "nightclub-loud-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d37583c1792981dcb765", - "namespace": "pd3", - "name": "R900S VII", - "description": "Defeat 1000 enemies with the R900S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d32183c1792981dcaee3" + ], + "PrerequisiteChallengeIds": [ + "62c84cd528fe1154bf4c04ac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f26c43a74ddca83bcf6973", + "ChallengeName": "Night Club Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "value": 1000 + "StatId": "nightclub-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62f26b96a74ddca83bcf6972" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "reward": { - "rewardId": "6411d375e2027d0001c0f778", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f26d91a74ddca83bcf6974", + "ChallengeName": "Night Club Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "nightclub-loud-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f26c43a74ddca83bcf6973" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" + ] }, - "tags": [ - "Combat", - "IL53", - "Kill", - "R900S" - ], - "orderNo": 2147484355, - "createdAt": "2023-03-15T14:17:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "62f26ebda74ddca83bcf6987", + "ChallengeName": "Night Club Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "6411d32183c1792981dcaee3", - "isCompleted": false + "StatId": "nightclub-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62f26d91a74ddca83bcf6974" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4e542a74ddca83bcf73b3", + "ChallengeName": "Night Club Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "marksman-r900s-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb05d7f0dd5f341f307cc", - "namespace": "pd3", - "name": "Rush through Door I", - "description": "Sprint through 5 different doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "door-sprint", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63ceb05dc9460a0001ef5915", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Door", - "Sprint" - ], - "orderNo": 2147483697, - "createdAt": "2023-01-23T16:05:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "door-sprint", - "currentValue": 0, - "targetValue": 5 + "StatId": "nightclub-loud-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb0907f0dd5f341f307cd", - "namespace": "pd3", - "name": "Rush through Door II", - "description": "Sprint through 20 different doors.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb05d7f0dd5f341f307cc" + ], + "PrerequisiteChallengeIds": [ + "62c84d2328fe1154bf4c04ad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4e647a74ddca83bcf73b4", + "ChallengeName": "Night Club Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "value": 20 + "StatId": "nightclub-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62f4e542a74ddca83bcf73b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "63ceb090c9460a0001ef5916", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4e734a74ddca83bcf73bb", + "ChallengeName": "Night Club Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "nightclub-loud-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4e647a74ddca83bcf73b4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Heist", - "Sprint", - "Door" - ], - "orderNo": 2147483698, - "createdAt": "2023-01-23T16:06:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4e806a74ddca83bcf73bf", + "ChallengeName": "Night Club Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb05d7f0dd5f341f307cc", - "isCompleted": false + "StatId": "nightclub-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62f4e734a74ddca83bcf73bb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4eb1da74ddca83bcf73e9", + "ChallengeName": "Night Club Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "currentValue": 0, - "targetValue": 20 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb0ca7f0dd5f341f307ce", - "namespace": "pd3", - "name": "Rush through Door III", - "description": "Sprint through 50 different doors", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb0907f0dd5f341f307cd" + ], + "PrerequisiteChallengeIds": [ + "62c84d9628fe1154bf4c04ae" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4ebada74ddca83bcf73eb", + "ChallengeName": "Night Club Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "value": 50 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62f4eb1da74ddca83bcf73e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "63ceb0cac9460a0001ef5917", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4ec95a74ddca83bcf73ee", + "ChallengeName": "Night Club Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4ebada74ddca83bcf73eb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Heist", - "Door", - "Sprint" - ], - "orderNo": 2147483699, - "createdAt": "2023-01-23T16:07:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "62f4ed1da74ddca83bcf73f0", + "ChallengeName": "Night Club Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb0907f0dd5f341f307cd", - "isCompleted": false + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62f4ec95a74ddca83bcf73ee" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f4ee48a74ddca83bcf73ff", + "ChallengeName": "Night Club Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "currentValue": 0, - "targetValue": 50 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb1137f0dd5f341f307cf", - "namespace": "pd3", - "name": "Rush through Door IV", - "description": "Sprint through 100 different doors", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb0ca7f0dd5f341f307ce" + ], + "PrerequisiteChallengeIds": [ + "62c84dff28fe1154bf4c04af" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f4eefda74ddca83bcf7400", + "ChallengeName": "Night Club Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "value": 100 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62f4ee48a74ddca83bcf73ff" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "reward": { - "rewardId": "63ceb113c9460a0001ef5918", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f4ef6fa74ddca83bcf7401", + "ChallengeName": "Night Club Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4eefda74ddca83bcf7400" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" + ] }, - "tags": [ - "Heist", - "Door", - "Sprint" - ], - "orderNo": 2147483700, - "createdAt": "2023-01-23T16:08:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "62f4efd5a74ddca83bcf7402", + "ChallengeName": "Night Club Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb0ca7f0dd5f341f307ce", - "isCompleted": false + "StatId": "nightclub-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62f4ef6fa74ddca83bcf7401" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f4f0f6a74ddca83bcf7403", + "ChallengeName": "Night Club Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "currentValue": 0, - "targetValue": 100 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb1467f0dd5f341f307d0", - "namespace": "pd3", - "name": "Rush through Door V", - "description": "Sprint through 250 different doors", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb1137f0dd5f341f307cf" + ], + "PrerequisiteChallengeIds": [ + "62c84e6028fe1154bf4c04b0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f4f1c2a74ddca83bcf7411", + "ChallengeName": "Night Club Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "value": 250 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "62f4f0f6a74ddca83bcf7403" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" ] }, - "reward": { - "rewardId": "63ceb146c9460a0001ef5919", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f4f35aa74ddca83bcf7412", + "ChallengeName": "Night Club Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4f1c2a74ddca83bcf7411" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" + ] }, - "tags": [ - "Heist", - "Door", - "Sprint" - ], - "orderNo": 2147483701, - "createdAt": "2023-01-23T16:09:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "62f4f3f0a74ddca83bcf7536", + "ChallengeName": "Night Club Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb1137f0dd5f341f307cf", - "isCompleted": false + "StatId": "nightclub-stealth-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "62f4f35aa74ddca83bcf7412" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f4b9a74ddca83bcf7537", + "ChallengeName": "Night Club Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "door-sprint", - "currentValue": 0, - "targetValue": 250 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c54eae28fe1154bf4be504", - "namespace": "pd3", - "name": "S40 I", - "description": "Defeat 50 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "62c54eae07a95c0001904cca", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "S40" - ], - "orderNo": 106, - "createdAt": "2022-07-06T08:58:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "nightclub-stealth-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5565a28fe1154bf4be56a", - "namespace": "pd3", - "name": "S40 II", - "description": "Defeat 100 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c54eae28fe1154bf4be504" + ], + "PrerequisiteChallengeIds": [ + "62c84ee628fe1154bf4c04be" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f55aa74ddca83bcf7567", + "ChallengeName": "Night Club Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "value": 100 + "StatId": "nightclub-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62f4f4b9a74ddca83bcf7537" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "62c5565a07a95c0001904d11", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f601a74ddca83bcf757a", + "ChallengeName": "Night Club Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "nightclub-stealth-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4f55aa74ddca83bcf7567" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Combat", - "Kill", - "S40" - ], - "orderNo": 107, - "createdAt": "2022-07-06T09:31:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f67aa74ddca83bcf757b", + "ChallengeName": "Night Club Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c54eae28fe1154bf4be504", - "isCompleted": false + "StatId": "nightclub-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "62f4f601a74ddca83bcf757a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f778a74ddca83bcf757c", + "ChallengeName": "Night Club Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c5577c28fe1154bf4be56d", - "namespace": "pd3", - "name": "S40 III", - "description": "Defeat 200 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5565a28fe1154bf4be56a" + ], + "PrerequisiteChallengeIds": [ + "62c84f3b28fe1154bf4c04bf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f7fea74ddca83bcf757d", + "ChallengeName": "Night Club Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "value": 200 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "62f4f778a74ddca83bcf757c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "62c5577c07a95c0001904d1e", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f873a74ddca83bcf7594", + "ChallengeName": "Night Club Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4f7fea74ddca83bcf757d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Combat", - "Kill", - "S40" - ], - "orderNo": 108, - "createdAt": "2022-07-06T09:35:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "62f4f8f2a74ddca83bcf7595", + "ChallengeName": "Night Club Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c5565a28fe1154bf4be56a", - "isCompleted": false + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "62f4f873a74ddca83bcf7594" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f4fa0aa74ddca83bcf75b5", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c559d828fe1154bf4be570", - "namespace": "pd3", - "name": "S40 IV", - "description": "Defeat 350 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c5577c28fe1154bf4be56d" + ], + "PrerequisiteChallengeIds": [ + "62c84fc228fe1154bf4c04c0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f4fabca74ddca83bcf75e8", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "value": 350 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "62f4fa0aa74ddca83bcf75b5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "reward": { - "rewardId": "62c559d807a95c0001904d27", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f4fb2da74ddca83bcf75e9", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4fabca74ddca83bcf75e8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" + ] }, - "tags": [ - "Combat", - "Kill", - "S40" - ], - "orderNo": 109, - "createdAt": "2022-07-06T09:46:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "62f4fb93a74ddca83bcf7605", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62c5577c28fe1154bf4be56d", - "isCompleted": false + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "62f4fb2da74ddca83bcf75e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "630da092ecb00f7e7e857528", + "ChallengeName": "Magnus Test Challenge", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50dd57f4d322dc61d6edb", - "namespace": "pd3", - "name": "S40 Master", - "description": "Complete a heist with all base mods unlocked for the S40 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50dd5ae93c90001c9901e", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "S40" - ], - "orderNo": 2147484279, - "createdAt": "2023-02-09T15:14:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b4be7f4d322dc619a0cb", - "namespace": "pd3", - "name": "S40 Rookie", - "description": "Complete a heist using the S40 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b4beae93c90001c9736e", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "S40" - ], - "orderNo": 2147484241, - "createdAt": "2023-02-08T14:42:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-mod-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ae937f0dd5f341fd2049", - "namespace": "pd3", - "name": "S40 Suppressed I", - "description": "Defeat 10 enemies with the suppressor equipped on the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-suppressor-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2ae930c06b20001e779d2", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Suppressor", - "Kill" - ], - "orderNo": 2147483922, - "createdAt": "2023-01-26T16:47:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-suppressor-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2af047f0dd5f341fd204a", - "namespace": "pd3", - "name": "S40 Suppressed II", - "description": "Defeat 50 enemies with the suppressor equipped on the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2ae937f0dd5f341fd2049" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-suppressor-kills", - "value": 50 + "AccelbyteItemId": "0e091c01715242029912616da7191590", + "Quantity": 1 } - ] + ], + "Tags": [] }, - "reward": { - "rewardId": "63d2af040c06b20001e779d4", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "630eebdaecb00f7e7e858c76", + "ChallengeName": "accelbyte_test_challenge", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "local-exp-for-test", + "TargetProgress": 400 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Suppressor", - "Kill" - ], - "orderNo": 2147483923, - "createdAt": "2023-01-26T16:49:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2ae937f0dd5f341fd2049", - "isCompleted": false + "AccelbyteItemId": "38983384c9074848aecb81bfb5c7a05a", + "Quantity": 1 } + ], + "Tags": [ + "test" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 4", + "ChallengeID": "632983f41db0ef9df33a6a10", + "ChallengeName": "Infamy Gold MS 1", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-suppressor-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "infamy-point", + "TargetProgress": 300 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2af5b7f0dd5f341fd204b", - "namespace": "pd3", - "name": "S40 Suppressed III", - "description": "Defeat 100 enemies with the suppressor equipped on the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2af047f0dd5f341fd204a" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-suppressor-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2af5b0c06b20001e779d5", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 14", + "ChallengeID": "632984dd1db0ef9df33a6a13", + "ChallengeName": "Infamy Gold MS 2", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "infamy-point", + "TargetProgress": 2600 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Suppressor", - "Kill" - ], - "orderNo": 2147483924, - "createdAt": "2023-01-26T16:50:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2af047f0dd5f341fd204a", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 21", + "ChallengeID": "632985301db0ef9df33a6a15", + "ChallengeName": "Infamy Gold MS 3", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-suppressor-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "infamy-point", + "TargetProgress": 4700 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2af987f0dd5f341fd204c", - "namespace": "pd3", - "name": "S40 Suppressed IV", - "description": "Defeat 200 enemies with the suppressor equipped on the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2af5b7f0dd5f341fd204b" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-suppressor-kills", - "value": 200 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2af980c06b20001e779dc", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 34", + "ChallengeID": "632985841db0ef9df33a6a19", + "ChallengeName": "Infamy Gold MS 4", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "infamy-point", + "TargetProgress": 8600 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Suppressor", - "Kill" - ], - "orderNo": 2147483925, - "createdAt": "2023-01-26T16:51:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2af5b7f0dd5f341fd204b", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 46", + "ChallengeID": "632985da1db0ef9df33a6a1a", + "ChallengeName": "Infamy Gold MS 5", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-suppressor-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "infamy-point", + "TargetProgress": 13000 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2afcf7f0dd5f341fd20d1", - "namespace": "pd3", - "name": "S40 Suppressed V", - "description": "Defeat 400 enemies with the suppressor equipped on the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2af987f0dd5f341fd204c" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-suppressor-kills", - "value": 400 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2afcf0c06b20001e779dd", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 52", + "ChallengeID": "6329863b1db0ef9df33a6a1b", + "ChallengeName": "Infamy Gold MS 6", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "infamy-point", + "TargetProgress": 16000 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Suppressor", - "Kill" - ], - "orderNo": 2147483926, - "createdAt": "2023-01-26T16:52:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2af987f0dd5f341fd204c", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 58", + "ChallengeID": "632986ba1db0ef9df33a6b59", + "ChallengeName": "Infamy Gold MS 7", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-suppressor-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "infamy-point", + "TargetProgress": 19600 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62c55c3028fe1154bf4be5b7", - "namespace": "pd3", - "name": "S40 V", - "description": "Defeat 500 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c559d828fe1154bf4be570" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-kills", - "value": 500 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "62c55c3007a95c0001904d3a", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 62", + "ChallengeID": "632987141db0ef9df33a6b5b", + "ChallengeName": "Infamy Gold MS 8", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "infamy-point", + "TargetProgress": 22000 } ], - "items": [] - }, - "tags": [ - "Combat", - "Kill", - "S40" - ], - "orderNo": 110, - "createdAt": "2022-07-06T09:56:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "62c559d828fe1154bf4be570", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 71", + "ChallengeID": "632987e61db0ef9df33a6cc4", + "ChallengeName": "Infamy Gold MS 9", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f2a57f4d322dc61caf1a", - "namespace": "pd3", - "name": "S40 Veteran", - "description": "Complete a heist with four mod slots filled on the S40 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f2a5ae93c90001c98ae4", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "S40", - "Unlock" - ], - "orderNo": 2147484258, - "createdAt": "2023-02-09T13:18:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s40-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "infamy-point", + "TargetProgress": 27800 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d6d283c1792981dce085", - "namespace": "pd3", - "name": "S40 VI", - "description": "Defeat 750 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62c55c3028fe1154bf4be5b7" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-kills", - "value": 750 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "6411d6d2e2027d0001c0f806", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 75", + "ChallengeID": "6329885e1db0ef9df33a6cc8", + "ChallengeName": "Infamy Gold MS 10", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "infamy-point", + "TargetProgress": 30600 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Kill" - ], - "orderNo": 2147484360, - "createdAt": "2023-03-15T14:31:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "62c55c3028fe1154bf4be5b7", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 84", + "ChallengeID": "632988cb1db0ef9df33a6cd4", + "ChallengeName": "Infamy Gold MS 11", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "infamy-point", + "TargetProgress": 37300 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d70b83c1792981dce24e", - "namespace": "pd3", - "name": "S40 VII", - "description": "Defeat 1000 enemies with the S40", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d6d283c1792981dce085" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s40-kills", - "value": 1000 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "6411d70be2027d0001c0f807", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 90", + "ChallengeID": "632989281db0ef9df33a6cd7", + "ChallengeName": "Infamy Gold MS 12", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "infamy-point", + "TargetProgress": 42100 } ], - "items": [] - }, - "tags": [ - "Combat", - "S40", - "Kill" - ], - "orderNo": 2147484361, - "createdAt": "2023-03-15T14:32:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "6411d6d283c1792981dce085", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 99", + "ChallengeID": "6329896e1db0ef9df33a6e41", + "ChallengeName": "Infamy Gold MS 13", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s40-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2ef68f18e8f29186bc16", - "namespace": "pd3", - "name": "S403 I", - "description": "Defeat 50 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63ee2ef6e2027d0001bf38c8", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484303, - "createdAt": "2023-02-16T13:26:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "infamy-point", + "TargetProgress": 49300 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2f698f18e8f29186bd66", - "namespace": "pd3", - "name": "S403 II", - "description": "Defeat 100 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee2ef68f18e8f29186bc16" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 5 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63ee2f69e2027d0001bf38cb", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 7", + "ChallengeID": "63299ff11db0ef9df33a741d", + "ChallengeName": "DEPRECATED Infamy PayDay Credits MS 1", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "infamy-point", + "TargetProgress": 800 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484304, - "createdAt": "2023-02-16T13:28:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ee2ef68f18e8f29186bc16", - "isCompleted": false + "AccelByteSku": "pd3_coin_paydaycredits", + "AccelbyteItemId": "a429582c433444d592485f59311be1ff", + "Quantity": 100 } - ] + ], + "Tags": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 71", + "ChallengeID": "6329a0511db0ef9df33a741e", + "ChallengeName": "DEPRECATED Infamy PayDay Credits MS 2", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "infamy-point", + "TargetProgress": 27800 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2fd68f18e8f29186be5a", - "namespace": "pd3", - "name": "S403 III", - "description": "Defeat 200 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee2f698f18e8f29186bd66" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 200 + "AccelByteSku": "pd3_coin_paydaycredits", + "AccelbyteItemId": "a429582c433444d592485f59311be1ff", + "Quantity": 100 } - ] + ], + "Tags": [] }, - "reward": { - "rewardId": "63ee2fd6e2027d0001bf38cc", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 100", + "ChallengeID": "6329a0d71db0ef9df33a741f", + "ChallengeName": "Infamy Gold MS 14", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "infamy-point", + "TargetProgress": 50100 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484305, - "createdAt": "2023-02-16T13:29:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ee2f698f18e8f29186bd66", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 101", + "ChallengeID": "6329a14e1db0ef9df33a7423", + "ChallengeName": "Infamy Gold MS 15", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "infamy-point", + "TargetProgress": 50900 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee30658f18e8f29186bfbb", - "namespace": "pd3", - "name": "S403 IV", - "description": "Defeat 350 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee2fd68f18e8f29186be5a" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 350 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63ee3065e2027d0001bf38cd", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 106", + "ChallengeID": "6329a21a1db0ef9df33a7428", + "ChallengeName": "Infamy Gold MS 16", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "infamy-point", + "TargetProgress": 55650 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484306, - "createdAt": "2023-02-16T13:32:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ee2fd68f18e8f29186be5a", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 111", + "ChallengeID": "6329a2721db0ef9df33a745f", + "ChallengeName": "Infamy Gold MS 17", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50d867f4d322dc61d6d73", - "namespace": "pd3", - "name": "S403 Master", - "description": "Complete a heist with all base mods unlocked for the S403 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50d86ae93c90001c9901d", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL59", - "Meta", - "Mod", - "S403", - "Unlock" - ], - "orderNo": 2147484278, - "createdAt": "2023-02-09T15:13:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b46a7f4d322dc6199fdc", - "namespace": "pd3", - "name": "S403 Rookie", - "description": "Complete a heist using the S403 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b46aae93c90001c9736d", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL59", - "Meta", - "Mod", - "S403", - "Unlock" - ], - "orderNo": 2147484240, - "createdAt": "2023-02-08T14:40:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-mod-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "infamy-point", + "TargetProgress": 61650 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ac817f0dd5f341fd1fc4", - "namespace": "pd3", - "name": "S403 Suppressed I", - "description": "Defeat 10 enemies with the suppressor equipped on the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-suppressor-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2ac810c06b20001e779c8", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403", - "Suppressor" - ], - "orderNo": 2147483917, - "createdAt": "2023-01-26T16:38:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-suppressor-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2acbf7f0dd5f341fd1fc5", - "namespace": "pd3", - "name": "S403 Suppressed II", - "description": "Defeat 50 enemies with the suppressor equipped on the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2ac817f0dd5f341fd1fc4" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-suppressor-kills", - "value": 50 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2acbf0c06b20001e779c9", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 117", + "ChallengeID": "6329a2c71db0ef9df33a747b", + "ChallengeName": "Infamy Gold MS 18", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "infamy-point", + "TargetProgress": 70500 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403", - "Suppressor" - ], - "orderNo": 2147483918, - "createdAt": "2023-01-26T16:39:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2ac817f0dd5f341fd1fc4", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 123", + "ChallengeID": "6329c5521db0ef9df33a7a0b", + "ChallengeName": "Infamy Gold MS 19", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-suppressor-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "infamy-point", + "TargetProgress": 81150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2acff7f0dd5f341fd2046", - "namespace": "pd3", - "name": "S403 Suppressed III", - "description": "Defeat 100 enemies with the suppressor equipped on the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2acbf7f0dd5f341fd1fc5" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-suppressor-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2acff0c06b20001e779cc", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 127", + "ChallengeID": "6329c5bd1db0ef9df33a7a0c", + "ChallengeName": "Infamy Gold MS 20", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "infamy-point", + "TargetProgress": 89100 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403", - "Suppressor" - ], - "orderNo": 2147483919, - "createdAt": "2023-01-26T16:40:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2acbf7f0dd5f341fd1fc5", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 130", + "ChallengeID": "6329c60c1db0ef9df33a7a0d", + "ChallengeName": "Infamy Gold MS 21", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-suppressor-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "infamy-point", + "TargetProgress": 95100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ad477f0dd5f341fd2047", - "namespace": "pd3", - "name": "S403 Suppressed IV", - "description": "Defeat 200 enemies with the suppressor equipped on the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2acff7f0dd5f341fd2046" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-suppressor-kills", - "value": 200 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2ad480c06b20001e779cd", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 134", + "ChallengeID": "6329c66f1db0ef9df33a7a11", + "ChallengeName": "Infamy Gold MS 22", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "infamy-point", + "TargetProgress": 103100 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403", - "Suppressor" - ], - "orderNo": 2147483920, - "createdAt": "2023-01-26T16:41:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2acff7f0dd5f341fd2046", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 138", + "ChallengeID": "6329c6da1db0ef9df33a7a16", + "ChallengeName": "Infamy Gold MS 23", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-suppressor-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "infamy-point", + "TargetProgress": 111100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ad957f0dd5f341fd2048", - "namespace": "pd3", - "name": "S403 Suppressed V", - "description": "Defeat 400 enemies with the suppressor equipped on the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2ad477f0dd5f341fd2047" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-suppressor-kills", - "value": 400 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63d2ad950c06b20001e779ce", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 142", + "ChallengeID": "6329c7281db0ef9df33a7a1c", + "ChallengeName": "Infamy Gold MS 24", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "infamy-point", + "TargetProgress": 122100 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403", - "Suppressor" - ], - "orderNo": 2147483921, - "createdAt": "2023-01-26T16:43:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63d2ad477f0dd5f341fd2047", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 146", + "ChallengeID": "6329c7761db0ef9df33a7a2f", + "ChallengeName": "Infamy Gold MS 25", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-suppressor-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "infamy-point", + "TargetProgress": 134100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee30b98f18e8f29186c213", - "namespace": "pd3", - "name": "S403 V", - "description": "Defeat 500 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee30658f18e8f29186bfbb" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 500 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63ee30b9e2027d0001bf38d3", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 149", + "ChallengeID": "6329c7d31db0ef9df33a7a4b", + "ChallengeName": "Infamy Gold MS 26", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "infamy-point", + "TargetProgress": 145100 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484307, - "createdAt": "2023-02-16T13:33:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ee30658f18e8f29186bfbb", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 50 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 2 to Unlock Armor Bag", + "ChallengeID": "632d7d2d29db980df05a2e05", + "ChallengeName": "Infamy MS - Placeable - Armor Bag", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 500 + "StatId": "infamy-point", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f2127f4d322dc61cac36", - "namespace": "pd3", - "name": "S403 Veteran", - "description": "Complete a heist with four mod slots filled on the S403 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f212ae93c90001c98ad4", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL59", - "Meta", - "Mod", - "S403", - "Unlock" - ], - "orderNo": 2147484257, - "createdAt": "2023-02-09T13:16:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-s403-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d5a483c1792981dcda17", - "namespace": "pd3", - "name": "S403 VI", - "description": "Defeat 750 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ee30b98f18e8f29186c213" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 750 + "AccelByteSku": "pd3_placeable_armorbag", + "AccelbyteItemId": "e456f47e7e2e4e2d9a8539ec3819576f", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "6411d5a4e2027d0001c0f800", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 7 to unlock Flashbang", + "ChallengeID": "6363b44c4e9e44b7cd7f1aa0", + "ChallengeName": "Infamy MS - Throwable - Flashbang", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "infamy-point", + "TargetProgress": 800 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484358, - "createdAt": "2023-03-15T14:26:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ee30b98f18e8f29186c213", - "isCompleted": false + "AccelByteSku": "pd3_throwable_flashbang", + "AccelbyteItemId": "3b3533976a50486ba362bf19bbb2e97d", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 16 to unlock Throwing Knife", + "ChallengeID": "6363b58e4e9e44b7cd7f1b69", + "ChallengeName": "Infamy MS - Throwable - Throwing Knife", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "infamy-point", + "TargetProgress": 3200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d5de83c1792981dcda93", - "namespace": "pd3", - "name": "S403 VII", - "description": "Defeat 1000 enemies with the S403", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d5a483c1792981dcda17" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "pistol-s403-kills", - "value": 1000 + "AccelByteSku": "pd3_throwable_knife", + "AccelbyteItemId": "778b204d45a64ce68ec9720c220350be", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "6411d5dee2027d0001c0f801", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 27 to unlock Smoke Grenade", + "ChallengeID": "6363b61a4e9e44b7cd7f1b6a", + "ChallengeName": "Infamy MS - Throwable - Smoke Grenade", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "infamy-point", + "TargetProgress": 6500 } ], - "items": [] - }, - "tags": [ - "Combat", - "IL59", - "Kill", - "S403" - ], - "orderNo": 2147484359, - "createdAt": "2023-03-15T14:27:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "6411d5a483c1792981dcda17", - "isCompleted": false + "AccelByteSku": "pd3_throwable_smokegrenade", + "AccelbyteItemId": "145c6ffde3eb454ca33a370d12caf4bc", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Research Engineer Skill Line", + "ChallengeID": "6363b6754e9e44b7cd7f1bd2", + "ChallengeName": "Skill Research MS - Placeable - Sentry Gun", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "pistol-s403-kills", - "currentValue": 0, - "targetValue": 1000 + "StatId": "engineer-research-code", + "TargetProgress": 500 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe95c7f0dd5f341f3d514", - "namespace": "pd3", - "name": "Saviour I", - "description": "Revive a crewmate.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revive-crewmate", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfe95cc9460a0001ef6f47", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Revive", - "Crewmate", - "Tutorial" - ], - "orderNo": 2147483781, - "createdAt": "2023-01-24T14:21:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "revive-crewmate", - "currentValue": 0, - "targetValue": 1 + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_placeable_sentry", + "AccelbyteItemId": "2b576f24e06949148ded46749e50377f", + "Quantity": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe9c17f0dd5f341f3d515", - "namespace": "pd3", - "name": "Saviour II", - "description": "Revive a crewmate 10 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe95c7f0dd5f341f3d514" + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 18 to unlock Suit Only", + "ChallengeID": "6363b8ae4e9e44b7cd7f1ca2", + "ChallengeName": "Infamy MS - Armor - Suit Only", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "infamy-point", + "TargetProgress": 3800 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "revive-crewmate", - "value": 10 + "AccelByteSku": "pd3_armor_suitonly", + "AccelbyteItemId": "9acb1b0b1ad1405785ee2684725e3d06", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63cfe9c1c9460a0001ef6f4e", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 8 to unlock Combat Vest", + "ChallengeID": "6363b9a54e9e44b7cd7f1cda", + "ChallengeName": "Infamy MS - Armor - Combat Vest", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "infamy-point", + "TargetProgress": 1000 } ], - "items": [] - }, - "tags": [ - "Combat", - "Revive", - "Crewmate" - ], - "orderNo": 2147483782, - "createdAt": "2023-01-24T14:22:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63cfe95c7f0dd5f341f3d514", - "isCompleted": false + "AccelByteSku": "pd3_armor_combatvest", + "AccelbyteItemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 34 to unlock Heavy Ballistic Vest", + "ChallengeID": "6363ba164e9e44b7cd7f1cdb", + "ChallengeName": "Infamy MS - Armor - Heavy Ballistic Vest", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "revive-crewmate", - "currentValue": 0, - "targetValue": 10 + "StatId": "infamy-point", + "TargetProgress": 8600 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfe9f77f0dd5f341f3d574", - "namespace": "pd3", - "name": "Saviour III", - "description": "Revive a crewmate 30 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe9c17f0dd5f341f3d515" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "revive-crewmate", - "value": 30 + "AccelByteSku": "pd3_armor_heavyvest", + "AccelbyteItemId": "0355159b70d845d5be98bbbd82614957", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63cfe9f7c9460a0001ef6f61", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 10 to unlock Stun Mine", + "ChallengeID": "6363ba854e9e44b7cd7f1d0f", + "ChallengeName": "Infamy MS - Gadget - Stun Mine", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "infamy-point", + "TargetProgress": 1400 } ], - "items": [] - }, - "tags": [ - "Combat", - "Revive", - "Crewmate" - ], - "orderNo": 2147483783, - "createdAt": "2023-01-24T14:23:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63cfe9c17f0dd5f341f3d515", - "isCompleted": false + "AccelByteSku": "pd3_gadgets_stunmine", + "AccelbyteItemId": "acb366ee4d554ab3b4831c743969855c", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 20 to unlock ECM", + "ChallengeID": "6363baca4e9e44b7cd7f1d10", + "ChallengeName": "Infamy MS - Gadget - ECM", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "revive-crewmate", - "currentValue": 0, - "targetValue": 30 + "StatId": "infamy-point", + "TargetProgress": 4400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfea2d7f0dd5f341f3d5c8", - "namespace": "pd3", - "name": "Saviour IV", - "description": "Revive a crewmate 60 times.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfe9f77f0dd5f341f3d574" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "revive-crewmate", - "value": 60 + "AccelByteSku": "pd3_gadgets_ECMjammer", + "AccelbyteItemId": "084202bef99c47c7a384a0106c7b6a2f", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "63cfea2dc9460a0001ef6f6a", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 30 to unlock Sensor", + "ChallengeID": "6363bb034e9e44b7cd7f1d11", + "ChallengeName": "Infamy MS - Gadget - Sensor", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "infamy-point", + "TargetProgress": 7400 } ], - "items": [] - }, - "tags": [ - "Combat", - "Crewmate", - "Revive" - ], - "orderNo": 2147483784, - "createdAt": "2023-01-24T14:24:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63cfe9f77f0dd5f341f3d574", - "isCompleted": false + "AccelByteSku": "pd3_gadgets_sensor", + "AccelbyteItemId": "d70af8f6c458400899fcf9990e470540", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 40 to unlock HET5", + "ChallengeID": "636518374e9e44b7cd7f8641", + "ChallengeName": "Infamy MS - Overkill - HET5", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "revive-crewmate", - "currentValue": 0, - "targetValue": 60 + "StatId": "infamy-point", + "TargetProgress": 10400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfed317f0dd5f341f3f0fa", - "namespace": "pd3", - "name": "Senseless I", - "description": "Affect an enemy with a flash bang.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "flashbang-affected-enemies", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfed31c9460a0001ef7331", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Flashbang", - "IL7" - ], - "orderNo": 2147483789, - "createdAt": "2023-01-24T14:37:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "flashbang-affected-enemies", - "currentValue": 0, - "targetValue": 1 + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_wpn_overkill_het5", + "AccelbyteItemId": "478952d6ba3a4a10ac4cb85c453dc94a", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfed797f0dd5f341f3f0fb", - "namespace": "pd3", - "name": "Senseless II", - "description": "Affect 20 different enemies with flash bangs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfed317f0dd5f341f3f0fa" + }, + { + "ChallengeDescription": "Beat Armored Transport on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63762f0b29040c967e3e39d8", + "ChallengeName": "Armored Transport Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Beat Armored Transport on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63762fd029040c967e3e3a05", + "ChallengeName": "Armored Transport Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Beat Armored Transport on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63763a5b29040c967e3e4a1e", + "ChallengeName": "Armored Transport Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Beat Armored Transport on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63763afe29040c967e3e4acf", + "ChallengeName": "Armored Transport Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags", + "ChallengeID": "63763da629040c967e3e4e9e", + "ChallengeName": "Armored Transport: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Armored", + "Transport", + "Max" + ] + }, + { + "ChallengeDescription": "Escape without being downed", + "ChallengeID": "63763e4e29040c967e3e51c7", + "ChallengeName": "Armored Transport: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Armored", + "Transport", + "No", + "Down" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Normal or higher difficulty after the Assault has started", + "ChallengeID": "6376442829040c967e3e55f2", + "ChallengeName": "Cargo Dock Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63774a3829040c967e3f0ccc", + "ChallengeName": "Cargo Dock Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63774b8529040c967e3f0fe1", + "ChallengeName": "Cargo Dock Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63774c1429040c967e3f10f7", + "ChallengeName": "Cargo Dock Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63774e4129040c967e3f123d", + "ChallengeName": "Cargo Dock Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63775e0829040c967e3f2c15", + "ChallengeName": "Cargo Dock Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63775e9329040c967e3f2ca0", + "ChallengeName": "Cargo Dock Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Beat Cargo Dock on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63775f7629040c967e3f2db8", + "ChallengeName": "Cargo Dock Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags", + "ChallengeID": "6377603529040c967e3f2e77", + "ChallengeName": "Cargo Dock: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "Max" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "637761b929040c967e3f2ffb", + "ChallengeName": "Cargo Dock: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "No", + "Down" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63779a3429040c967e3f6bfd", + "ChallengeName": "Penthouse Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63779a8d29040c967e3f6cba", + "ChallengeName": "Penthouse Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63779b1f29040c967e3f6da8", + "ChallengeName": "Penthouse Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63779b8429040c967e3f6e9c", + "ChallengeName": "Penthouse Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63779c7129040c967e3f6fee", + "ChallengeName": "Penthouse Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63779cf429040c967e3f7083", + "ChallengeName": "Penthouse Stealthy II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63779dc429040c967e3f7143", + "ChallengeName": "Penthouse Stealthy III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Beat Penthouse on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63779e2e29040c967e3f7363", + "ChallengeName": "Penthouse Stealthy IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags", + "ChallengeID": "63779ea529040c967e3f7682", + "ChallengeName": "Penthouse: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Penthouse", + "Max" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "63779ef929040c967e3f7891", + "ChallengeName": "Penthouse: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Penthouse", + "No", + "Down" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the NWB9", + "ChallengeID": "6377b83e29040c967e3f99e0", + "ChallengeName": "Headshot NWB9 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "Headshot", + "IL21" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the NWB9", + "ChallengeID": "6377b8b329040c967e3f99e1", + "ChallengeName": "Headshot NWB9 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "6377b83e29040c967e3f99e0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "Headshot", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the NWB9", + "ChallengeID": "6377b95e29040c967e3f99e2", + "ChallengeName": "Headshot NWB9 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "value": 20 + "StatId": "assaultrifle-nwb9-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "6377b8b329040c967e3f99e1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "Headshot", + "IL21" ] }, - "reward": { - "rewardId": "63cfed79c9460a0001ef7332", - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the NWB9", + "ChallengeID": "6377b9a729040c967e3f9a14", + "ChallengeName": "Headshot NWB9 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "assaultrifle-nwb9-headshot-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "6377b95e29040c967e3f99e2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "Headshot", + "IL21" + ] }, - "tags": [ - "Combat", - "Flashbang", - "IL7" - ], - "orderNo": 2147483790, - "createdAt": "2023-01-24T14:38:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637b71ed66148eeffe0e97e4", + "ChallengeName": "Armored Transport Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfed317f0dd5f341f3f0fa", - "isCompleted": false + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "63762f0b29040c967e3e39d8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637b9f9a66148eeffe0ed005", + "ChallengeName": "Armored Transport Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "currentValue": 0, - "targetValue": 20 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfedb57f0dd5f341f3f0fc", - "namespace": "pd3", - "name": "Senseless III", - "description": "Affect 50 different enemies with flash bangs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfed797f0dd5f341f3f0fb" + ], + "PrerequisiteChallengeIds": [ + "637b71ed66148eeffe0e97e4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637ba02966148eeffe0ed035", + "ChallengeName": "Armored Transport Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "value": 50 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 45 } + ], + "PrerequisiteChallengeIds": [ + "637b9f9a66148eeffe0ed005" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63cfedb5c9460a0001ef7333", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637ba0b266148eeffe0ed0f6", + "ChallengeName": "Armored Transport Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637ba02966148eeffe0ed035" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "Flashbang", - "IL7" - ], - "orderNo": 2147483791, - "createdAt": "2023-01-24T14:39:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637bbe0666148eeffe0ee9e5", + "ChallengeName": "Armored Transport Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfed797f0dd5f341f3f0fb", - "isCompleted": false + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63762fd029040c967e3e3a05" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637bbe8666148eeffe0ee9e6", + "ChallengeName": "Armored Transport Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "currentValue": 0, - "targetValue": 50 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfedfb7f0dd5f341f3f411", - "namespace": "pd3", - "name": "Senseless IV", - "description": "Affect 100 different enemies with flash bangs.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfedb57f0dd5f341f3f0fc" + ], + "PrerequisiteChallengeIds": [ + "637bbe0666148eeffe0ee9e5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637bbee766148eeffe0ee9e7", + "ChallengeName": "Armored Transport Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "value": 100 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "637bbe8666148eeffe0ee9e6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63cfedfbc9460a0001ef7398", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637bbf7566148eeffe0ee9e8", + "ChallengeName": "Armored Transport Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 40 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637bbee766148eeffe0ee9e7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "Flashbang", - "IL7" - ], - "orderNo": 2147483792, - "createdAt": "2023-01-24T14:40:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cc3022bae6007875cd0b1", + "ChallengeName": "Armored Transport Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfedb57f0dd5f341f3f0fc", - "isCompleted": false + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 5 } + ], + "PrerequisiteChallengeIds": [ + "63763a5b29040c967e3e4a1e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cc3cc2bae6007875cd0b2", + "ChallengeName": "Armored Transport Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "flashbang-affected-enemies", - "currentValue": 0, - "targetValue": 100 + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "637cc3022bae6007875cd0b1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff4dd7f0dd5f341f41d11", - "namespace": "pd3", - "name": "Shanked I", - "description": "Defeat an enemy with a Throwing Knife.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "throwingknife-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cff4ddc9460a0001ef7909", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL16", - "Kill", - "Knife" - ], - "orderNo": 2147483809, - "createdAt": "2023-01-24T15:10:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "throwingknife-kills", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Beat Armored Transport 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cc7f52bae6007875cdc9d", + "ChallengeName": "Armored Transport Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff5227f0dd5f341f41d12", - "namespace": "pd3", - "name": "Shanked II", - "description": "Defeat 10 enemies with a Throwing Knife.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff4dd7f0dd5f341f41d11" + ], + "PrerequisiteChallengeIds": [ + "637cc3cc2bae6007875cd0b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cd2b32bae6007875cf6fd", + "ChallengeName": "Armored Transport Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "value": 10 + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "637cc7f52bae6007875cdc9d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63cff522c9460a0001ef790a", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "637cd4182bae6007875cf9f4", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 3 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63763afe29040c967e3e4acf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "IL16", - "Kill", - "Knife" - ], - "orderNo": 2147483810, - "createdAt": "2023-01-24T15:11:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "637cd6d02bae6007875d0341", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff4dd7f0dd5f341f41d11", - "isCompleted": false + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "637cd4182bae6007875cf9f4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "637cd8dd2bae6007875d0992", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "currentValue": 0, - "targetValue": 10 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff55b7f0dd5f341f41d95", - "namespace": "pd3", - "name": "Shanked III", - "description": "Defeat 50 enemies with a Throwing Knife.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff5227f0dd5f341f41d12" + ], + "PrerequisiteChallengeIds": [ + "637cd6d02bae6007875d0341" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "637cd9882bae6007875d0a7e", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "value": 30 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "637cd8dd2bae6007875d0992" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63cff55bc9460a0001ef790f", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637cdae12bae6007875d0e37", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "cargodock-loud-normal", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "6376442829040c967e3e55f2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL16", - "Kill", - "Knife" - ], - "orderNo": 2147483811, - "createdAt": "2023-01-24T15:12:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637cdb6e2bae6007875d1014", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff5227f0dd5f341f41d12", - "isCompleted": false + "StatId": "cargodock-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "637cdae12bae6007875d0e37" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637ce87e2bae6007875d2940", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "currentValue": 0, - "targetValue": 30 + "StatId": "cargodock-loud-normal", + "TargetProgress": 45 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff59f7f0dd5f341f42954", - "namespace": "pd3", - "name": "Shanked IV", - "description": "Defeat 100 enemies with a Throwing Knife.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff55b7f0dd5f341f41d95" + ], + "PrerequisiteChallengeIds": [ + "637cdb6e2bae6007875d1014" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "637ce8fe2bae6007875d2a2d", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "value": 60 + "StatId": "cargodock-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "637ce87e2bae6007875d2940" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63cff59fc9460a0001ef7aa0", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cf7e52bae6007875d420a", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "cargodock-loud-hard", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63774a3829040c967e3f0ccc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL16", - "Kill", - "Knife" - ], - "orderNo": 2147483812, - "createdAt": "2023-01-24T15:13:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cf89c2bae6007875d423a", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff55b7f0dd5f341f41d95", - "isCompleted": false + "StatId": "cargodock-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "637cf7e52bae6007875d420a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cf9292bae6007875d432b", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "throwingknife-kills", - "currentValue": 0, - "targetValue": 60 + "StatId": "cargodock-loud-hard", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "637cf89c2bae6007875d423a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ee2af08f18e8f29186a825", - "namespace": "pd3", - "name": "Sharke Bank (FP) - Optional Objective II - Errand Boy", - "description": "In stealth, secure all the loot from the vault by using the staircases only (not the elevator)", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ee2af0e2027d0001bf3835", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Sharke", - "Bank", - "Optional" - ], - "orderNo": 2147484295, - "createdAt": "2023-02-16T13:09:04Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-optional-objective-2", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Beat Cargo Dock 60 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cf9a62bae6007875d435b", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "637cf9292bae6007875d432b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625e9d3228fe1154bf4b6ff7", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I", - "description": "Beat First Playable Bank on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625e9d3230e7810001865467", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 18, - "createdAt": "2022-04-19T11:29:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Beat Cargo Dock 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cfdbd2bae6007875d4913", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f0ffaaa74ddca83bcf5b84", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625e9d3228fe1154bf4b6ff7" + ], + "PrerequisiteChallengeIds": [ + "63774b8529040c967e3f0fe1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cfe672bae6007875d49d0", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 15 + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "637cfdbd2bae6007875d4913" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "62f0ffaa07a95c000190c1c0", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cfef62bae6007875d4a35", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 110 + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637cfe672bae6007875d49d0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 271, - "createdAt": "2022-08-08T12:20:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "637cff752bae6007875d4ac5", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625e9d3228fe1154bf4b6ff7", - "isCompleted": false + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "637cfef62bae6007875d4a35" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63861ae52bae600787661fd6", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 15 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10285a74ddca83bcf5b96", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f0ffaaa74ddca83bcf5b84" + ], + "PrerequisiteChallengeIds": [ + "63774c1429040c967e3f10f7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63861b5e2bae6007876620c2", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 30 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "63861ae52bae600787661fd6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "62f1028507a95c000190c1cb", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63861d1e2bae6007876627d8", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 130 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63861b5e2bae6007876620c2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 272, - "createdAt": "2022-08-08T12:33:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63861d922bae60078766283b", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f0ffaaa74ddca83bcf5b84", - "isCompleted": false + "StatId": "cargodock-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "63861d1e2bae6007876627d8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63861f702bae600787662a59", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 30 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10361a74ddca83bcf5b97", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10285a74ddca83bcf5b96" + ], + "PrerequisiteChallengeIds": [ + "63774e4129040c967e3f123d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "6386204e2bae600787662d78", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 45 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63861f702bae600787662a59" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "62f1036107a95c000190c1ce", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "6386211a2bae600787662e73", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "6386204e2bae600787662d78" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" + ] }, - "tags": [ - "Bank", - "Heist", - "Loud", - "Map", - "Normal", - "Sharke" - ], - "orderNo": 273, - "createdAt": "2022-08-08T12:36:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "638621aa2bae600787663167", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10285a74ddca83bcf5b96", - "isCompleted": false + "StatId": "cargodock-stealth-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "6386211a2bae600787662e73" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "638624422bae6007876638c1", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 45 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10488a74ddca83bcf5ca9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10361a74ddca83bcf5b97" + ], + "PrerequisiteChallengeIds": [ + "63775e0829040c967e3f2c15" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "638720e62bae600787673414", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 60 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "638624422bae6007876638c1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "62f1048807a95c000190c1ef", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "638721a12bae6007876735da", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638720e62bae600787673414" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Bank", - "Heist", - "Loud", - "Map", - "Normal", - "Sharke" - ], - "orderNo": 274, - "createdAt": "2022-08-08T12:41:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "638722612bae60078767392e", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10361a74ddca83bcf5b97", - "isCompleted": false + "StatId": "cargodock-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "638721a12bae6007876735da" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638722c42bae60078767398e", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 60 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da623021282a2b1c003188", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10488a74ddca83bcf5ca9" + ], + "PrerequisiteChallengeIds": [ + "63775e9329040c967e3f2ca0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638724db2bae600787673f2e", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 80 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "638722c42bae60078767398e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63da62309e43fb0001917079", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "6387255a2bae60078767405d", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638724db2bae600787673f2e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484132, - "createdAt": "2023-02-01T12:59:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638727c52bae600787674153", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10488a74ddca83bcf5ca9", - "isCompleted": false + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "6387255a2bae60078767405d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638728272bae600787674154", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 80 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da627e21282a2b1c003a13", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da623021282a2b1c003188" + ], + "PrerequisiteChallengeIds": [ + "63775f7629040c967e3f2db8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638728c92bae6007876742b5", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 100 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "638728272bae600787674154" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63da627e9e43fb000191707a", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "6387295d2bae60078767431c", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638728c92bae6007876742b5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484133, - "createdAt": "2023-02-01T13:00:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638729eb2bae600787674656", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da623021282a2b1c003188", - "isCompleted": false + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "6387295d2bae60078767431c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63872c672bae600787674a6c", + "ChallengeName": "Penthouse Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 100 + "StatId": "penthouse-loud-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da62f421282a2b1c003af6", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da627e21282a2b1c003a13" + ], + "PrerequisiteChallengeIds": [ + "63779a3429040c967e3f6bfd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63872ceb2bae600787674d86", + "ChallengeName": "Penthouse Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 120 + "StatId": "penthouse-loud-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63872c672bae600787674a6c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "reward": { - "rewardId": "63da62f49e43fb000191707b", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63872e112bae600787674fff", + "ChallengeName": "Penthouse Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "penthouse-loud-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63872ceb2bae600787674d86" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484134, - "createdAt": "2023-02-01T13:02:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63872eca2bae600787675134", + "ChallengeName": "Penthouse Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da627e21282a2b1c003a13", - "isCompleted": false + "StatId": "penthouse-loud-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63872e112bae600787674fff" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63872f742bae600787675165", + "ChallengeName": "Penthouse Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 120 + "StatId": "penthouse-loud-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da633321282a2b1c003cb4", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud I: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da62f421282a2b1c003af6" + ], + "PrerequisiteChallengeIds": [ + "63779a8d29040c967e3f6cba" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63874a1fce9f3b5ae57ddcc6", + "ChallengeName": "Penthouse Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "value": 150 + "StatId": "penthouse-loud-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63872f742bae600787675165" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63da63339e43fb0001917082", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63874ab2ce9f3b5ae57ddde1", + "ChallengeName": "Penthouse Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "penthouse-loud-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63874a1fce9f3b5ae57ddcc6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484135, - "createdAt": "2023-02-01T13:03:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63874bacce9f3b5ae57de0e6", + "ChallengeName": "Penthouse Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da62f421282a2b1c003af6", - "isCompleted": false + "StatId": "penthouse-loud-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63874ab2ce9f3b5ae57ddde1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63874fbdce9f3b5ae57de812", + "ChallengeName": "Penthouse Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-normal", - "currentValue": 0, - "targetValue": 150 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb30528fe1154bf4b708c", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II", - "description": "Beat First Playable Bank on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625eb30530e7810001865486", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 19, - "createdAt": "2022-04-19T13:03:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 1 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f105aba74ddca83bcf5caa", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb30528fe1154bf4b708c" + ], + "PrerequisiteChallengeIds": [ + "63779b1f29040c967e3f6da8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63875031ce9f3b5ae57dea2d", + "ChallengeName": "Penthouse Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 10 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63874fbdce9f3b5ae57de812" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "62f105ab07a95c000190c1f2", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "638750b3ce9f3b5ae57ded07", + "ChallengeName": "Penthouse Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63875031ce9f3b5ae57dea2d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 275, - "createdAt": "2022-08-08T12:46:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63875161ce9f3b5ae57df0b4", + "ChallengeName": "Penthouse Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb30528fe1154bf4b708c", - "isCompleted": false + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "638750b3ce9f3b5ae57ded07" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "638752f5ce9f3b5ae57df1de", + "ChallengeName": "Penthouse Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 10 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f1072ea74ddca83bcf5cab", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f105aba74ddca83bcf5caa" + ], + "PrerequisiteChallengeIds": [ + "63779b8429040c967e3f6e9c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "6387535ace9f3b5ae57df23d", + "ChallengeName": "Penthouse Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 20 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "638752f5ce9f3b5ae57df1de" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "reward": { - "rewardId": "62f1072e07a95c000190c1f6", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "638753c7ce9f3b5ae57df365", + "ChallengeName": "Penthouse Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "6387535ace9f3b5ae57df23d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 276, - "createdAt": "2022-08-08T12:53:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63875434ce9f3b5ae57df452", + "ChallengeName": "Penthouse Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f105aba74ddca83bcf5caa", - "isCompleted": false + "StatId": "penthouse-loud-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "638753c7ce9f3b5ae57df365" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63875547ce9f3b5ae57df638", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 20 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f107c5a74ddca83bcf5cbb", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f1072ea74ddca83bcf5cab" + ], + "PrerequisiteChallengeIds": [ + "63779c7129040c967e3f6fee" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "638756e5ce9f3b5ae57df8c8", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 30 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63875547ce9f3b5ae57df638" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "reward": { - "rewardId": "62f107c507a95c000190c1f8", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63876abf1c49e9669d114213", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 45 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638756e5ce9f3b5ae57df8c8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Loud", - "Map", - "Sharke" - ], - "orderNo": 277, - "createdAt": "2022-08-08T12:55:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63876b441c49e9669d114272", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f1072ea74ddca83bcf5cab", - "isCompleted": false + "StatId": "penthouse-stealth-normal", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63876abf1c49e9669d114213" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63876bc91c49e9669d114363", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 30 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f108e5a74ddca83bcf5ce2", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f107c5a74ddca83bcf5cbb" + ], + "PrerequisiteChallengeIds": [ + "63779cf429040c967e3f7083" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63876c451c49e9669d114428", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 40 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63876bc91c49e9669d114363" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "62f108e507a95c000190c1fc", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63876cbc1c49e9669d114429", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63876c451c49e9669d114428" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Loud", - "Map", - "Sharke" - ], - "orderNo": 278, - "createdAt": "2022-08-08T13:00:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63876d321c49e9669d114559", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f107c5a74ddca83bcf5cbb", - "isCompleted": false + "StatId": "penthouse-stealth-hard", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63876cbc1c49e9669d114429" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638db3429248292658eaf4c4", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 40 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da656421282a2b1c004e86", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f108e5a74ddca83bcf5ce2" + ], + "PrerequisiteChallengeIds": [ + "63779dc429040c967e3f7143" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638db3ba9248292658eaf581", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 55 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "638db3429248292658eaf4c4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63da65649e43fb00019170f4", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638db6489248292658eaf868", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 15 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638db3ba9248292658eaf581" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484136, - "createdAt": "2023-02-01T13:13:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "638db7179248292658eaf8cb", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f108e5a74ddca83bcf5ce2", - "isCompleted": false + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "638db6489248292658eaf868" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638dbc8f9248292658eb0587", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 55 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da65b121282a2b1c00541b", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da656421282a2b1c004e86" + ], + "PrerequisiteChallengeIds": [ + "63779e2e29040c967e3f7363" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638dbd759248292658eb09f4", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 70 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 6 } + ], + "PrerequisiteChallengeIds": [ + "638dbc8f9248292658eb0587" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" ] }, - "reward": { - "rewardId": "63da65b19e43fb00019170f5", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638dbe099248292658eb0a8c", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638dbd759248292658eb09f4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484137, - "createdAt": "2023-02-01T13:14:25Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "638dbe5d9248292658eb0e83", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da656421282a2b1c004e86", - "isCompleted": false + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 15 } + ], + "PrerequisiteChallengeIds": [ + "638dbe099248292658eb0a8c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Jewelry Store 150 times on Normal or Higher after the assault has started ", + "ChallengeID": "638dc8199248292658eb2257", + "ChallengeName": "TEMP Game Completion Challenge (Alpha)", + "InfamyPointReward": 70000, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 70 + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da65fd21282a2b1c005641", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da65b121282a2b1c00541b" + ], + "PrerequisiteChallengeIds": [ + "62cd5e0d28fe1154bf4c1374" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Temporary" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43eb57c7bc2db61690a57", + "ChallengeName": "Achievement PlayStation Armored Transport Civilians Gone", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 85 + "StatId": "armoredtransport-civilians-gone-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63da65fd9e43fb00019170f6", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f20cf97c7bc2db6168da4b", + "ChallengeName": "Achievement Mask On Steam", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "mask-on-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484138, - "createdAt": "2023-02-01T13:15:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Description ", + "ChallengeID": "64eef36d7c7bc2db61671d28", + "ChallengeName": "aa testing", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da65b121282a2b1c00541b", - "isCompleted": false + "StatId": "23cdde1e5cb540a6af317678a824ed49", + "TargetProgress": 1 } - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 85 + "AccelbyteItemId": "5cbcc3bb6e7741e6bc37883a5d219a4d", + "Quantity": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da664f21282a2b1c005867", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud II: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da65fd21282a2b1c005641" - ] + ], + "Tags": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "6408229c72e43e9c3ae5205a", + "ChallengeName": "accelbyte-test-challenge3", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-hard", - "value": 100 + "StatId": "local-exp-for-test", + "TargetProgress": 1000 } - ] - }, - "reward": { - "rewardId": "63da664f9e43fb00019170f7", - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "infamy-point", - "value": 260 + "AccelbyteItemId": "b3d50842d9c84a939a9e5009571f07c8", + "Quantity": 1 } ], - "items": [] + "Tags": [] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484139, - "createdAt": "2023-02-01T13:17:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "test-challenge-to-test-event", + "ChallengeID": "63e23d053818383c1e1baf01", + "ChallengeName": "accelbyte-test-challenge", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da65fd21282a2b1c005641", - "isCompleted": false + "StatId": "local-exp-for-test", + "TargetProgress": 100 } - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "firstplayable-loud-hard", - "currentValue": 0, - "targetValue": 100 + "AccelbyteItemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", + "Quantity": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb38c28fe1154bf4b708e", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III", - "description": "Beat First Playable Bank on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb30528fe1154bf4b708c" - ] + ], + "Tags": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63219e81d52e323c0e3b3d7b", + "ChallengeName": "accelbyte_test_challenge_2", + "InfamyPointReward": 1000, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 1 + "StatId": "accelbyteteststat1", + "TargetProgress": 5 } - ] - }, - "reward": { - "rewardId": "625eb38c30e7810001865488", - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "infamy-point", - "value": 140 + "AccelbyteItemId": "3540c541445e4c86be79d0d9d618fa62", + "Quantity": 1 } ], - "items": [] + "Tags": [] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 20, - "createdAt": "2022-04-19T13:05:16Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Pick a locked door.", + "ChallengeID": "63ce7dcb7f0dd5f341f2dfb3", + "ChallengeName": "Master of Unlocking I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb30528fe1154bf4b708c", - "isCompleted": false + "StatId": "lock-picked", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Lock", + "Tutorial" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Pick 20 locked doors.", + "ChallengeID": "63ce7e4e7f0dd5f341f2e044", + "ChallengeName": "Master of Unlocking II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 1 + "StatId": "lock-picked", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10aeda74ddca83bcf5cee", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb38c28fe1154bf4b708e" + ], + "PrerequisiteChallengeIds": [ + "63ce7dcb7f0dd5f341f2dfb3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Lock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Pick 50 locked doors.", + "ChallengeID": "63ce7ebc7f0dd5f341f2e0a7", + "ChallengeName": "Master of Unlocking III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 5 + "StatId": "lock-picked", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63ce7e4e7f0dd5f341f2e044" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Lock" ] }, - "reward": { - "rewardId": "62f10aed07a95c000190c201", - "stats": [ + { + "ChallengeDescription": "Pick 100 locked doors.", + "ChallengeID": "63ce7f907f0dd5f341f2e0a8", + "ChallengeName": "Master of Unlocking IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 130 + "StatId": "lock-picked", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ce7ebc7f0dd5f341f2e0a7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Lock" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 279, - "createdAt": "2022-08-08T13:09:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Pick 300 locked doors.", + "ChallengeID": "63ce801f7f0dd5f341f2e10f", + "ChallengeName": "Master of Unlocking V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb38c28fe1154bf4b708e", - "isCompleted": false + "StatId": "lock-picked", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63ce7f907f0dd5f341f2e0a8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Lock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Hack a device.", + "ChallengeID": "63ce81aa7f0dd5f341f2e213", + "ChallengeName": "I'm In I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 5 + "StatId": "devices-hacked", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10ba6a74ddca83bcf5cef", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10aeda74ddca83bcf5cee" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hacking", + "Tutorial" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Hack 20 devices.", + "ChallengeID": "63ce82187f0dd5f341f2e4b5", + "ChallengeName": "I'm In II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 10 + "StatId": "devices-hacked", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63ce81aa7f0dd5f341f2e213" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hacking" ] }, - "reward": { - "rewardId": "62f10ba607a95c000190c203", - "stats": [ + { + "ChallengeDescription": "Hack 50 devices.", + "ChallengeID": "63ce826a7f0dd5f341f2e4b6", + "ChallengeName": "I'm In III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "devices-hacked", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ce82187f0dd5f341f2e4b5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hacking" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 280, - "createdAt": "2022-08-08T13:12:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Hack 100 devices.", + "ChallengeID": "63ce82ca7f0dd5f341f2e4b7", + "ChallengeName": "I'm In IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10aeda74ddca83bcf5cee", - "isCompleted": false + "StatId": "devices-hacked", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63ce826a7f0dd5f341f2e4b6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hacking" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Hack 300 devices.", + "ChallengeID": "63ce83a17f0dd5f341f2e4ec", + "ChallengeName": "I'm In V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 10 + "StatId": "devices-hacked", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10cc0a74ddca83bcf5cf0", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10ba6a74ddca83bcf5cef" + ], + "PrerequisiteChallengeIds": [ + "63ce82ca7f0dd5f341f2e4b7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hacking" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Trade a hostage.", + "ChallengeID": "63ce99657f0dd5f341f2f912", + "ChallengeName": "I Want a Pizza I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 15 + "StatId": "hostages-traded", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hostage", + "Tutorial" ] }, - "reward": { - "rewardId": "62f10cc007a95c000190c204", - "stats": [ + { + "ChallengeDescription": "Trade 10 hostages.", + "ChallengeID": "63ce99be7f0dd5f341f2f913", + "ChallengeName": "I Want a Pizza II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "hostages-traded", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ce99657f0dd5f341f2f912" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hostage" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Loud", - "Map", - "Sharke", - "Very" - ], - "orderNo": 281, - "createdAt": "2022-08-08T13:16:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Trade 30 hostages.", + "ChallengeID": "63ce9ae97f0dd5f341f2f9e0", + "ChallengeName": "I Want a Pizza III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10ba6a74ddca83bcf5cef", - "isCompleted": false + "StatId": "hostages-traded", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63ce99be7f0dd5f341f2f913" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hostage" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Trade 60 hostages.", + "ChallengeID": "63ce9b2c7f0dd5f341f2f9e1", + "ChallengeName": "I Want a Pizza IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 15 + "StatId": "hostages-traded", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f10dfea74ddca83bcf5cf1", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10cc0a74ddca83bcf5cf0" + ], + "PrerequisiteChallengeIds": [ + "63ce9ae97f0dd5f341f2f9e0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hostage" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Trade 100 hostages.", + "ChallengeID": "63ce9bb27f0dd5f341f2fa17", + "ChallengeName": "I Want a Pizza V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 25 + "StatId": "hostages-traded", + "TargetProgress": 300 } + ], + "PrerequisiteChallengeIds": [ + "63ce9b2c7f0dd5f341f2f9e1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Hostage" ] }, - "reward": { - "rewardId": "62f10dfe07a95c000190c207", - "stats": [ + { + "ChallengeDescription": "Cut a glass panel.", + "ChallengeID": "63ce9ccf7f0dd5f341f2fa4c", + "ChallengeName": "Like a Hot Knife I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "cut-objects", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Loud", - "Map", - "Sharke", - "Very" - ], - "orderNo": 282, - "createdAt": "2022-08-08T13:22:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f10cc0a74ddca83bcf5cf0", - "isCompleted": false - } + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Cutting", + "Tutorial" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Cut 20 glass panels.", + "ChallengeID": "63ce9d4c7f0dd5f341f2fa4d", + "ChallengeName": "Like a Hot Knife II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 25 + "StatId": "cut-objects", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da66f121282a2b1c005b61", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f10dfea74ddca83bcf5cf1" + ], + "PrerequisiteChallengeIds": [ + "63ce9ccf7f0dd5f341f2fa4c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Cutting" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Cut 50 glass panels.", + "ChallengeID": "63ce9d9c7f0dd5f341f2fa4e", + "ChallengeName": "Like a Hot Knife III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 35 + "StatId": "cut-objects", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63ce9d4c7f0dd5f341f2fa4d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Cutting" ] }, - "reward": { - "rewardId": "63da66f19e43fb00019170f8", - "stats": [ + { + "ChallengeDescription": "Cut 100 glass panels.", + "ChallengeID": "63ce9de07f0dd5f341f2fa89", + "ChallengeName": "Like a Hot Knife IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "cut-objects", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ce9d9c7f0dd5f341f2fa4e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Cutting" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484140, - "createdAt": "2023-02-01T13:19:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Cut 300 glass panels.", + "ChallengeID": "63ce9e147f0dd5f341f2fac1", + "ChallengeName": "Like a Hot Knife V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f10dfea74ddca83bcf5cf1", - "isCompleted": false + "StatId": "cut-objects", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63ce9de07f0dd5f341f2fa89" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Cutting" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place a Micro Camera.", + "ChallengeID": "63ce9fc17f0dd5f341f2fbe2", + "ChallengeName": "Pics or it didn't happen I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 35 + "StatId": "use-microcamera", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da673a21282a2b1c005fb9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da66f121282a2b1c005b61" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Tutorial", + "Micro" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place 20 Micro Cameras.", + "ChallengeID": "63ce9ffa7f0dd5f341f2fc2b", + "ChallengeName": "Pics or it didn't happen II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 50 + "StatId": "use-microcamera", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63ce9fc17f0dd5f341f2fbe2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Micro" ] }, - "reward": { - "rewardId": "63da673a9e43fb00019170f9", - "stats": [ + { + "ChallengeDescription": "Place 50 Micro Cameras.", + "ChallengeID": "63cea0377f0dd5f341f2fc2c", + "ChallengeName": "Pics or it didn't happen III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "use-microcamera", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ce9ffa7f0dd5f341f2fc2b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Micro" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484141, - "createdAt": "2023-02-01T13:20:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Place 100 Micro Cameras.", + "ChallengeID": "63cea0747f0dd5f341f2fc2d", + "ChallengeName": "Pics or it didn't happen IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da66f121282a2b1c005b61", - "isCompleted": false + "StatId": "use-microcamera", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cea0377f0dd5f341f2fc2c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Micro" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place 300 Micro Cameras.", + "ChallengeID": "63cea1487f0dd5f341f2fc6f", + "ChallengeName": "Pics or it didn't happen V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 50 + "StatId": "use-microcamera", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da677b21282a2b1c006408", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da673a21282a2b1c005fb9" + ], + "PrerequisiteChallengeIds": [ + "63cea0747f0dd5f341f2fc2d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Micro" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark a Security Camera.", + "ChallengeID": "63cea3ea7f0dd5f341f2fe24", + "ChallengeName": "Surveillance I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 65 + "StatId": "mark-camera", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Tutorial", + "Camera" ] }, - "reward": { - "rewardId": "63da677b9e43fb00019170fa", - "stats": [ + { + "ChallengeDescription": "Mark 50 different Security Cameras.", + "ChallengeID": "63cea4347f0dd5f341f2fe5a", + "ChallengeName": "Surveillance II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "mark-camera", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cea3ea7f0dd5f341f2fe24" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Camera" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484142, - "createdAt": "2023-02-01T13:22:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Mark 150 different Security Cameras.", + "ChallengeID": "63cea46e7f0dd5f341f2fea0", + "ChallengeName": "Surveillance III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da673a21282a2b1c005fb9", - "isCompleted": false + "StatId": "mark-camera", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63cea4347f0dd5f341f2fe5a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Camera" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 300 different Security Cameras.", + "ChallengeID": "63cea4b27f0dd5f341f2fea1", + "ChallengeName": "Surveillance IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 65 + "StatId": "mark-camera", + "TargetProgress": 300 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da67c721282a2b1c0065d7", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud III: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da677b21282a2b1c006408" + ], + "PrerequisiteChallengeIds": [ + "63cea46e7f0dd5f341f2fea0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Camera" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 500 different Security Cameras.", + "ChallengeID": "63cea4ed7f0dd5f341f2fea2", + "ChallengeName": "Surveillance V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "value": 80 + "StatId": "mark-camera", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63cea4b27f0dd5f341f2fea1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Camera" ] }, - "reward": { - "rewardId": "63da67c79e43fb00019170fb", - "stats": [ + { + "ChallengeDescription": "Mark a Security Guard.", + "ChallengeID": "63cea6627f0dd5f341f2ffec", + "ChallengeName": "Patrol I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "mark-guard", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Guard", + "Tutorial" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484143, - "createdAt": "2023-02-01T13:23:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Mark 50 different Security Guards.", + "ChallengeID": "63cea6a87f0dd5f341f30023", + "ChallengeName": "Patrol II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da677b21282a2b1c006408", - "isCompleted": false + "StatId": "mark-guard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63cea6627f0dd5f341f2ffec" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Guard" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 150 different Security Guards.", + "ChallengeID": "63cea6d87f0dd5f341f300b5", + "ChallengeName": "Patrol III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-veryhard", - "currentValue": 0, - "targetValue": 80 + "StatId": "mark-guard", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb3e828fe1154bf4b708f", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV", - "description": "Beat First Playable Bank on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb38c28fe1154bf4b708e" + ], + "PrerequisiteChallengeIds": [ + "63cea6a87f0dd5f341f30023" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Guard" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 300 different Security Guards.", + "ChallengeID": "63cea7177f0dd5f341f30128", + "ChallengeName": "Patrol IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 1 + "StatId": "mark-guard", + "TargetProgress": 300 } + ], + "PrerequisiteChallengeIds": [ + "63cea6d87f0dd5f341f300b5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Guard" ] }, - "reward": { - "rewardId": "625eb3e830e7810001865489", - "stats": [ + { + "ChallengeDescription": "Mark 500 different Security Guards.", + "ChallengeID": "63cea74f7f0dd5f341f30129", + "ChallengeName": "Patrol V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "mark-guard", + "TargetProgress": 500 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cea7177f0dd5f341f30128" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Guard" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 21, - "createdAt": "2022-04-19T13:06:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Mark a guard or law enforcement using the Sensor.", + "ChallengeID": "63ceaa417f0dd5f341f303b0", + "ChallengeName": "XRay Vision I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb38c28fe1154bf4b708e", - "isCompleted": false + "StatId": "mark-sensor", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Tutorial", + "Sensor" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 20 different guards or law enforcement using the Sensor.", + "ChallengeID": "63ceaa857f0dd5f341f303b1", + "ChallengeName": "XRay Vision II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 1 + "StatId": "mark-sensor", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f134c2a74ddca83bcf5e99", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb3e828fe1154bf4b708f" + ], + "PrerequisiteChallengeIds": [ + "63ceaa417f0dd5f341f303b0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Sensor" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 50 different guards or law enforcement using the Sensor.", + "ChallengeID": "63ceaabc7f0dd5f341f303b2", + "ChallengeName": "XRay Vision III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 3 + "StatId": "mark-sensor", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63ceaa857f0dd5f341f303b1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Sensor" ] }, - "reward": { - "rewardId": "62f134c207a95c000190c2a2", - "stats": [ + { + "ChallengeDescription": "Mark 100 different guards or law enforcement using the Sensor.", + "ChallengeID": "63ceab0c7f0dd5f341f30405", + "ChallengeName": "XRay Vision IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "mark-sensor", + "TargetProgress": 300 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceaabc7f0dd5f341f303b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Sensor" + ] }, - "tags": [ - "Heist", - "Loud", - "Map", - "Overkill", - "Sharke" - ], - "orderNo": 283, - "createdAt": "2022-08-08T16:07:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Mark 300 different guards or law enforcement using the Sensor.", + "ChallengeID": "63ceab6f7f0dd5f341f304e6", + "ChallengeName": "XRay Vision V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb3e828fe1154bf4b708f", - "isCompleted": false + "StatId": "mark-sensor", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63ceab0c7f0dd5f341f30405" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Sensor" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break 5 different display cases.", + "ChallengeID": "63ceada17f0dd5f341f3053b", + "ChallengeName": "Break the Glass I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 3 + "StatId": "break-case", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f1354ea74ddca83bcf5e9a", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f134c2a74ddca83bcf5e99" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Display" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break 20 different display cases", + "ChallengeID": "63ceaddb7f0dd5f341f30575", + "ChallengeName": "Break the Glass II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 6 + "StatId": "break-case", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63ceada17f0dd5f341f3053b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Display" ] }, - "reward": { - "rewardId": "62f1354e07a95c000190c2a3", - "stats": [ + { + "ChallengeDescription": "Break 100 different display cases.", + "ChallengeID": "63ceae377f0dd5f341f30576", + "ChallengeName": "Break the Glass III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "break-case", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceaddb7f0dd5f341f30575" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Display" + ] }, - "tags": [ - "Bank", - "Heist", - "Loud", - "Map", - "Overkill", - "Sharke" - ], - "orderNo": 284, - "createdAt": "2022-08-08T16:09:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Break 250 different display cases.", + "ChallengeID": "63ceae6a7f0dd5f341f30577", + "ChallengeName": "Break the Glass IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f134c2a74ddca83bcf5e99", - "isCompleted": false + "StatId": "break-case", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63ceae377f0dd5f341f30576" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Display" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break 500 different display cases.", + "ChallengeID": "63ceaec37f0dd5f341f3062a", + "ChallengeName": "Break the Glass V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 6 + "StatId": "break-case", + "TargetProgress": 300 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f135e3a74ddca83bcf5e9d", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f1354ea74ddca83bcf5e9a" + ], + "PrerequisiteChallengeIds": [ + "63ceae6a7f0dd5f341f30577" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Display" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Sprint through 5 different doors.", + "ChallengeID": "63ceb05d7f0dd5f341f307cc", + "ChallengeName": "Rush through Door I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 10 + "StatId": "door-sprint", + "TargetProgress": 5 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Door", + "Sprint" ] }, - "reward": { - "rewardId": "62f135e307a95c000190c2a5", - "stats": [ + { + "ChallengeDescription": "Sprint through 20 different doors.", + "ChallengeID": "63ceb0907f0dd5f341f307cd", + "ChallengeName": "Rush through Door II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "door-sprint", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceb05d7f0dd5f341f307cc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Sprint", + "Door" + ] }, - "tags": [ - "Bank", - "Heist", - "Loud", - "Map", - "Overkill", - "Sharke" - ], - "orderNo": 285, - "createdAt": "2022-08-08T16:12:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Sprint through 50 different doors", + "ChallengeID": "63ceb0ca7f0dd5f341f307ce", + "ChallengeName": "Rush through Door III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f1354ea74ddca83bcf5e9a", - "isCompleted": false + "StatId": "door-sprint", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63ceb0907f0dd5f341f307cd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Door", + "Sprint" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Sprint through 100 different doors", + "ChallengeID": "63ceb1137f0dd5f341f307cf", + "ChallengeName": "Rush through Door IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 10 + "StatId": "door-sprint", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f13650a74ddca83bcf5e9e", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f135e3a74ddca83bcf5e9d" + ], + "PrerequisiteChallengeIds": [ + "63ceb0ca7f0dd5f341f307ce" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Door", + "Sprint" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Sprint through 250 different doors", + "ChallengeID": "63ceb1467f0dd5f341f307d0", + "ChallengeName": "Rush through Door V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 15 + "StatId": "door-sprint", + "TargetProgress": 250 } + ], + "PrerequisiteChallengeIds": [ + "63ceb1137f0dd5f341f307cf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Door", + "Sprint" ] }, - "reward": { - "rewardId": "62f1365007a95c000190c2a6", - "stats": [ + { + "ChallengeDescription": "Break 5 different windows", + "ChallengeID": "63ceb1977f0dd5f341f307d1", + "ChallengeName": "Shoot the Glass I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "break-window", + "TargetProgress": 5 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Window" + ] }, - "tags": [ - "Bank", - "Heist", - "Loud", - "Map", - "Overkill", - "Sharke" - ], - "orderNo": 286, - "createdAt": "2022-08-08T16:14:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Break 20 different windows", + "ChallengeID": "63ceb1d37f0dd5f341f30854", + "ChallengeName": "Shoot the Glass II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f135e3a74ddca83bcf5e9d", - "isCompleted": false + "StatId": "break-window", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63ceb1977f0dd5f341f307d1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Window" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break 50 different windows.", + "ChallengeID": "63ceb2137f0dd5f341f30896", + "ChallengeName": "Shoot the Glass III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 15 + "StatId": "break-window", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da683921282a2b1c006cb6", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f13650a74ddca83bcf5e9e" + ], + "PrerequisiteChallengeIds": [ + "63ceb1d37f0dd5f341f30854" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Window" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break 100 different windows", + "ChallengeID": "63ceb24b7f0dd5f341f30897", + "ChallengeName": "Shoot the Glass IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 20 + "StatId": "break-window", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63ceb2137f0dd5f341f30896" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Window" ] }, - "reward": { - "rewardId": "63da68399e43fb0001917101", - "stats": [ + { + "ChallengeDescription": "Break 250 different windows.", + "ChallengeID": "63ceb2877f0dd5f341f30898", + "ChallengeName": "Shoot the Glass V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "break-window", + "TargetProgress": 250 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceb24b7f0dd5f341f30897" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Window" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484144, - "createdAt": "2023-02-01T13:25:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Stun 5 different enemies.", + "ChallengeID": "63ceb3957f0dd5f341f308dd", + "ChallengeName": "Stunner I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f13650a74ddca83bcf5e9e", - "isCompleted": false + "StatId": "stun-enemy", + "TargetProgress": 5 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stun" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Stun 15 different enemies.", + "ChallengeID": "63ceb3ca7f0dd5f341f308de", + "ChallengeName": "Stunner II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 20 + "StatId": "stun-enemy", + "TargetProgress": 15 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da687121282a2b1c006d23", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da683921282a2b1c006cb6" + ], + "PrerequisiteChallengeIds": [ + "63ceb3957f0dd5f341f308dd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stun" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Stun 30 different enemies.", + "ChallengeID": "63ceb3fe7f0dd5f341f30926", + "ChallengeName": "Stunner III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 25 + "StatId": "stun-enemy", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63ceb3ca7f0dd5f341f308de" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stun" ] }, - "reward": { - "rewardId": "63da68719e43fb0001917102", - "stats": [ + { + "ChallengeDescription": "Stun 50 different enemies.", + "ChallengeID": "63ceb42e7f0dd5f341f30927", + "ChallengeName": "Stunner IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "stun-enemy", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceb3fe7f0dd5f341f30926" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stun" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484145, - "createdAt": "2023-02-01T13:26:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Stun 75 different enemies.", + "ChallengeID": "63ceb4577f0dd5f341f30928", + "ChallengeName": "Stunner V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da683921282a2b1c006cb6", - "isCompleted": false + "StatId": "stun-enemy", + "TargetProgress": 75 } + ], + "PrerequisiteChallengeIds": [ + "63ceb42e7f0dd5f341f30927" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stun" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Use 5 ECMs", + "ChallengeID": "63ceb4ea7f0dd5f341f30929", + "ChallengeName": "ECM I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 25 + "StatId": "use-ecm", + "TargetProgress": 2 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da68a521282a2b1c006e78", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da687121282a2b1c006d23" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "ECM" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Use 15 ECMs", + "ChallengeID": "63ceb5387f0dd5f341f3092a", + "ChallengeName": "ECM II", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 30 + "StatId": "use-ecm", + "TargetProgress": 5 } + ], + "PrerequisiteChallengeIds": [ + "63ceb4ea7f0dd5f341f30929" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "ECM" ] }, - "reward": { - "rewardId": "63da68a59e43fb0001917105", - "stats": [ + { + "ChallengeDescription": "Use 30 ECMs.", + "ChallengeID": "63ceb5747f0dd5f341f3092b", + "ChallengeName": "ECM III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "use-ecm", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ceb5387f0dd5f341f3092a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "ECM" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484146, - "createdAt": "2023-02-01T13:27:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Use 50 ECMs.", + "ChallengeID": "63ceb5a87f0dd5f341f309a7", + "ChallengeName": "ECM IV", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da687121282a2b1c006d23", - "isCompleted": false + "StatId": "use-ecm", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63ceb5747f0dd5f341f3092b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "ECM" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Use 75 ECMs.", + "ChallengeID": "63ceb5dc7f0dd5f341f309a8", + "ChallengeName": "ECM V", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 30 + "StatId": "use-ecm", + "TargetProgress": 35 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da68d921282a2b1c006e79", - "namespace": "pd3", - "name": "Sharke Bank (FP) Loud IV: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 40 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da68a521282a2b1c006e78" + ], + "PrerequisiteChallengeIds": [ + "63ceb5a87f0dd5f341f309a7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "ECM" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Cloaker.", + "ChallengeID": "63cfa5ed7f0dd5f341f36765", + "ChallengeName": "De-Cloaker I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "value": 40 + "StatId": "cloaker-save", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Save" ] }, - "reward": { - "rewardId": "63da68d99e43fb0001917106", - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Cloaker 10 times.", + "ChallengeID": "63cfa6357f0dd5f341f367db", + "ChallengeName": "De-Cloaker II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "cloaker-save", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfa5ed7f0dd5f341f36765" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Save" + ] }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484147, - "createdAt": "2023-02-01T13:27:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Save a crewmate from a Cloaker 30 times.", + "ChallengeID": "63cfa6e37f0dd5f341f367dc", + "ChallengeName": "De-Cloaker III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da68a521282a2b1c006e78", - "isCompleted": false + "StatId": "cloaker-save", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63cfa6357f0dd5f341f367db" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Save" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Cloaker 60 times.", + "ChallengeID": "63cfa73c7f0dd5f341f3685e", + "ChallengeName": "De-Cloaker IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-loud-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb43c28fe1154bf4b7090", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I", - "description": "Beat First Playable Bank on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "625eb43c30e781000186548a", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 22, - "createdAt": "2022-04-19T13:08:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 1 + "StatId": "cloaker-save", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f24e86a74ddca83bcf68b9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb43c28fe1154bf4b7090" + ], + "PrerequisiteChallengeIds": [ + "63cfa6e37f0dd5f341f367dc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Cloaker", + "Save" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Slide a total distance of 100 meters.", + "ChallengeID": "63cfa8ce7f0dd5f341f36d27", + "ChallengeName": "Slideshow I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 15 + "StatId": "slide-distance", + "TargetProgress": 10000 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Distance" ] }, - "reward": { - "rewardId": "62f24e8607a95c000190c726", - "stats": [ + { + "ChallengeDescription": "Slide a total distance of 500 meters.", + "ChallengeID": "63cfa9147f0dd5f341f36d68", + "ChallengeName": "Slideshow II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "slide-distance", + "TargetProgress": 50000 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfa8ce7f0dd5f341f36d27" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Distance" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 287, - "createdAt": "2022-08-09T12:09:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Slide a total distance of 1000 meters.", + "ChallengeID": "63cfa94c7f0dd5f341f36e30", + "ChallengeName": "Slideshow III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb43c28fe1154bf4b7090", - "isCompleted": false + "StatId": "slide-distance", + "TargetProgress": 100000 } + ], + "PrerequisiteChallengeIds": [ + "63cfa9147f0dd5f341f36d68" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Distance" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Slide a total distance of 5000 meters.", + "ChallengeID": "63cfa9837f0dd5f341f36eb8", + "ChallengeName": "Slideshow IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 15 + "StatId": "slide-distance", + "TargetProgress": 500000 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f24fb5a74ddca83bcf68ba", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f24e86a74ddca83bcf68b9" + ], + "PrerequisiteChallengeIds": [ + "63cfa94c7f0dd5f341f36e30" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Distance" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy while sliding", + "ChallengeID": "63cfaa7f7f0dd5f341f3700f", + "ChallengeName": "Slideshow Shooter I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 30 + "StatId": "slide-kills", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Kill" ] }, - "reward": { - "rewardId": "62f24fb507a95c000190c72d", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63cfaaa77f0dd5f341f37010", + "ChallengeName": "Armored Transport Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637ba0b266148eeffe0ed0f6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 288, - "createdAt": "2022-08-09T12:14:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 10 enemies while sliding", + "ChallengeID": "63cfaabf7f0dd5f341f37011", + "ChallengeName": "Slideshow Shooter II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f24e86a74ddca83bcf68b9", - "isCompleted": false + "StatId": "slide-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfaa7f7f0dd5f341f3700f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies while sliding", + "ChallengeID": "63cfaaf67f0dd5f341f37012", + "ChallengeName": "Slideshow Shooter III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 30 + "StatId": "slide-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f250dea74ddca83bcf68bb", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f24fb5a74ddca83bcf68ba" + ], + "PrerequisiteChallengeIds": [ + "63cfaabf7f0dd5f341f37011" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while sliding", + "ChallengeID": "63cfab327f0dd5f341f37013", + "ChallengeName": "Slideshow Shooter IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 45 + "StatId": "slide-kills", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "63cfaaf67f0dd5f341f37012" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by Headshot while sliding.", + "ChallengeID": "63cfb5a07f0dd5f341f380e5", + "ChallengeName": "DEPRECATED Slideshow Precision", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "slide-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Slide", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by Headshot while sliding.", + "ChallengeID": "63cfb5ed7f0dd5f341f3833d", + "ChallengeName": "DEPRECATED Slideshow Precision II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "slide-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63cfb5a07f0dd5f341f380e5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Slide", + "Headshot", + "Kill", + "Combat" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies by Headshot while sliding.", + "ChallengeID": "63cfb6377f0dd5f341f3833e", + "ChallengeName": "DEPRECATED Slideshow Precision III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "slide-headshot-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63cfb5ed7f0dd5f341f3833d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Slide", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies by Headshot while sliding.", + "ChallengeID": "63cfb6737f0dd5f341f385da", + "ChallengeName": "DEPRECATED Slideshow Precision IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "slide-headshot-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "63cfb6377f0dd5f341f3833e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Slide", + "Headshot", + "Kill", + "Combat" + ] + }, + { + "ChallengeDescription": "Defeat an enemy while jumping", + "ChallengeID": "63cfb8cc7f0dd5f341f38fa5", + "ChallengeName": "DEPRECATED Pain from Above", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies while jumping.", + "ChallengeID": "63cfb8f77f0dd5f341f39030", + "ChallengeName": "DEPRECATED Pain from Above II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfb8cc7f0dd5f341f38fa5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while jumping.", + "ChallengeID": "63cfb92d7f0dd5f341f390c5", + "ChallengeName": "DEPRECATED Pain from Above III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63cfb8f77f0dd5f341f39030" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while jumping.", + "ChallengeID": "63cfb97a7f0dd5f341f3910d", + "ChallengeName": "DEPRECATED Pain from Above IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "63cfb92d7f0dd5f341f390c5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by Headshot while jumping.", + "ChallengeID": "63cfbb707f0dd5f341f3921d", + "ChallengeName": "DEPRECATED Death from Above", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Jump", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by Headshot while jumping", + "ChallengeID": "63cfbba57f0dd5f341f3926c", + "ChallengeName": "DEPRECATED Death from Above II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63cfbb707f0dd5f341f3921d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies by Headshot while jumping.", + "ChallengeID": "63cfbbe07f0dd5f341f3926d", + "ChallengeName": "DEPRECATED Death from Above III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-headshot-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63cfbba57f0dd5f341f3926c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Jump", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies by Headshot while jumping.", + "ChallengeID": "63cfbc147f0dd5f341f3926e", + "ChallengeName": "DEPRECATED Death from Above IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jump-headshot-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "63cfbbe07f0dd5f341f3926d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Kill", + "Jump" + ] + }, + { + "ChallengeDescription": "Deploy a Medic bag.", + "ChallengeID": "63cfbe617f0dd5f341f3937e", + "ChallengeName": "Triage I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "deploy-medic-bag", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Medic", + "Tutorial" ] }, - "reward": { - "rewardId": "62f250de07a95c000190c731", - "stats": [ + { + "ChallengeDescription": "Deploy 10 Medic bags.", + "ChallengeID": "63cfbe997f0dd5f341f3937f", + "ChallengeName": "Triage II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "deploy-medic-bag", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfbe617f0dd5f341f3937e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Medic" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Normal", - "Sharke", - "Stealth" - ], - "orderNo": 289, - "createdAt": "2022-08-09T12:19:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Deploy 50 Medic bags.", + "ChallengeID": "63cfbee07f0dd5f341f39380", + "ChallengeName": "Triage III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f24fb5a74ddca83bcf68ba", - "isCompleted": false + "StatId": "deploy-medic-bag", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63cfbe997f0dd5f341f3937f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Medic" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Deploy 100 Medic bags.", + "ChallengeID": "63cfbf3a7f0dd5f341f393ce", + "ChallengeName": "Triage IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 45 + "StatId": "deploy-medic-bag", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f251b8a74ddca83bcf68c2", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f250dea74ddca83bcf68bb" + ], + "PrerequisiteChallengeIds": [ + "63cfbee07f0dd5f341f39380" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Medic" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Deploy an Armor bag.", + "ChallengeID": "63cfc0257f0dd5f341f393cf", + "ChallengeName": "Full Metal Jacket I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 60 + "StatId": "deploy-armor-bag", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Armor", + "Tutorial", + "IL2" ] }, - "reward": { - "rewardId": "62f251b807a95c000190c735", - "stats": [ + { + "ChallengeDescription": "Deploy 10 Armor bags.", + "ChallengeID": "63cfc0657f0dd5f341f393d0", + "ChallengeName": "Full Metal Jacket II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "deploy-armor-bag", + "TargetProgress": 10 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfc0257f0dd5f341f393cf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Armor", + "IL2" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Normal", - "Sharke", - "Stealth" - ], - "orderNo": 290, - "createdAt": "2022-08-09T12:23:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Deploy 50 Armor bags.", + "ChallengeID": "63cfc0a37f0dd5f341f39426", + "ChallengeName": "Full Metal Jacket III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f250dea74ddca83bcf68bb", - "isCompleted": false + "StatId": "deploy-armor-bag", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63cfc0657f0dd5f341f393d0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Armor", + "IL2" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Deploy 100 Armor bags.", + "ChallengeID": "63cfc0e37f0dd5f341f39478", + "ChallengeName": "Full Metal Jacket IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 60 + "StatId": "deploy-armor-bag", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da74a621282a2b1c010d4c", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f251b8a74ddca83bcf68c2" + ], + "PrerequisiteChallengeIds": [ + "63cfc0a37f0dd5f341f39426" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Armor", + "IL2" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63cfd4487f0dd5f341f3a3bd", + "ChallengeName": "Armored Transport Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 80 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfaaa77f0dd5f341f37010" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Deploy an Ammo Bag.", + "ChallengeID": "63cfd73b7f0dd5f341f3a4ce", + "ChallengeName": "Firepower I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "deploy-ammo-bag", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Ammo", + "Tutorial" + ] + }, + { + "ChallengeDescription": "Deploy 10 Ammo Bags.", + "ChallengeID": "63cfd7727f0dd5f341f3a4cf", + "ChallengeName": "Firepower II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "deploy-ammo-bag", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63cfd73b7f0dd5f341f3a4ce" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Ammo" ] }, - "reward": { - "rewardId": "63da74a69e43fb000191730e", - "stats": [ + { + "ChallengeDescription": "Deploy 50 Ammo Bags.", + "ChallengeID": "63cfd7ad7f0dd5f341f3a517", + "ChallengeName": "Firepower III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "deploy-ammo-bag", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfd7727f0dd5f341f3a4cf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Ammo" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484148, - "createdAt": "2023-02-01T14:18:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Deploy 100 Ammo Bags.", + "ChallengeID": "63cfd7de7f0dd5f341f3a55f", + "ChallengeName": "Firepower IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f251b8a74ddca83bcf68c2", - "isCompleted": false + "StatId": "deploy-ammo-bag", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfd7ad7f0dd5f341f3a517" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Ammo" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Deploy a Sentry Turret.", + "ChallengeID": "63cfd9c97f0dd5f341f3a7fe", + "ChallengeName": "Autokill I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 80 + "StatId": "deploy-sentry-turret", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da751e21282a2b1c011273", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da74a621282a2b1c010d4c" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Deploy", + "Sentry" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies with a Sentry Turret.", + "ChallengeID": "63cfda117f0dd5f341f3aa75", + "ChallengeName": "Autokill II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 100 + "StatId": "sentry-turret-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63cfd9c97f0dd5f341f3a7fe" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Sentry", + "Kill" ] }, - "reward": { - "rewardId": "63da751e9e43fb0001917314", - "stats": [ + { + "ChallengeDescription": "Defeat 70 enemies with a Sentry Turret.", + "ChallengeID": "63cfda517f0dd5f341f3aa76", + "ChallengeName": "Autokill III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "sentry-turret-kills", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfda117f0dd5f341f3aa75" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Sentry" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484149, - "createdAt": "2023-02-01T14:20:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 120 enemies with a Sentry Turret.", + "ChallengeID": "63cfda817f0dd5f341f3aac4", + "ChallengeName": "Autokill IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da74a621282a2b1c010d4c", - "isCompleted": false + "StatId": "sentry-turret-kills", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63cfda517f0dd5f341f3aa76" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Sentry" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63cfdaf67f0dd5f341f3aba8", + "ChallengeName": "Armored Transport Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 100 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da756621282a2b1c011428", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da751e21282a2b1c011273" + ], + "PrerequisiteChallengeIds": [ + "63cfd4487f0dd5f341f3a3bd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63cfdbbc7f0dd5f341f3aeb0", + "ChallengeName": "Armored Transport Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 120 + "StatId": "armoredtransport-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63cfdaf67f0dd5f341f3aba8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Armored", + "Transport" + ] + }, + { + "ChallengeDescription": "Use human shields for a total of 60 seconds during an Assault.", + "ChallengeID": "63cfdc267f0dd5f341f3afdd", + "ChallengeName": "Keep Your Friends Close I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assault-human-shield-time", + "TargetProgress": 180 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Time" + ] + }, + { + "ChallengeDescription": "Use human shields for a total of 240 seconds during an Assault.", + "ChallengeID": "63cfdc6a7f0dd5f341f3b07f", + "ChallengeName": "Keep Your Friends Close II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assault-human-shield-time", + "TargetProgress": 600 + } + ], + "PrerequisiteChallengeIds": [ + "63cfdc267f0dd5f341f3afdd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Time" ] }, - "reward": { - "rewardId": "63da75669e43fb0001917317", - "stats": [ + { + "ChallengeDescription": "Use human shields for a total of 480 seconds during an Assault.", + "ChallengeID": "63cfdcb17f0dd5f341f3b080", + "ChallengeName": "Keep Your Friends Close III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "assault-human-shield-time", + "TargetProgress": 1500 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfdc6a7f0dd5f341f3b07f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Time" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484150, - "createdAt": "2023-02-01T14:21:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Use human shields for a total of 720 seconds during an Assault.", + "ChallengeID": "63cfdcec7f0dd5f341f3b081", + "ChallengeName": "Keep Your Friends Close IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da751e21282a2b1c011273", - "isCompleted": false + "StatId": "assault-human-shield-time", + "TargetProgress": 3600 } + ], + "PrerequisiteChallengeIds": [ + "63cfdcb17f0dd5f341f3b080" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Time" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy while using a human shield.", + "ChallengeID": "63cfdda97f0dd5f341f3b233", + "ChallengeName": "Human Shield Killer I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 120 + "StatId": "human-shield-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da760821282a2b1c011bce", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy I: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da756621282a2b1c011428" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 enemies while using a human shield.", + "ChallengeID": "63cfde057f0dd5f341f3b27c", + "ChallengeName": "Human Shield Killer II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "value": 150 + "StatId": "human-shield-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfdda97f0dd5f341f3b233" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Kill" ] }, - "reward": { - "rewardId": "63da76089e43fb000191731c", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies while using a human shield.", + "ChallengeID": "63cfde437f0dd5f341f3b2ca", + "ChallengeName": "Human Shield Killer III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "human-shield-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfde057f0dd5f341f3b27c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Sharke", - "Bank" - ], - "orderNo": 2147484151, - "createdAt": "2023-02-01T14:24:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies while using a human shield.", + "ChallengeID": "63cfde867f0dd5f341f3b2cb", + "ChallengeName": "Human Shield Killer IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da756621282a2b1c011428", - "isCompleted": false + "StatId": "human-shield-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfde437f0dd5f341f3b2ca" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat an enemy with a headshot while using a human shield.", + "ChallengeID": "63cfdf567f0dd5f341f3b376", + "ChallengeName": "Human Shield Helmet I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "human-shield-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with a headshot while using a human shield.", + "ChallengeID": "63cfdf967f0dd5f341f3b3c2", + "ChallengeName": "Human Shield Helmet II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "human-shield-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63cfdf567f0dd5f341f3b376" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Headshot", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with a headshot while using a human shield.", + "ChallengeID": "63cfdfd67f0dd5f341f3b40b", + "ChallengeName": "Human Shield Helmet III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-normal", - "currentValue": 0, - "targetValue": 150 + "StatId": "human-shield-headshot-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb49828fe1154bf4b7091", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II", - "description": "Beat First Playable Bank on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb43c28fe1154bf4b7090" + ], + "PrerequisiteChallengeIds": [ + "63cfdf967f0dd5f341f3b3c2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Headshot", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with a headshot while using a human shield.", + "ChallengeID": "63cfe0267f0dd5f341f3b4ac", + "ChallengeName": "Human Shield Helmet IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 1 + "StatId": "human-shield-headshot-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfdfd67f0dd5f341f3b40b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Human", + "Shield", + "Kill", + "Headshot" + ] + }, + { + "ChallengeDescription": "Destroy a Zapper battery.", + "ChallengeID": "63cfe34c7f0dd5f341f3b702", + "ChallengeName": "Electroshock Therapy I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "destroy-taser-battery", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Battery", + "Taser", + "Destroy" + ] + }, + { + "ChallengeDescription": "Destroy 10 Zapper batteries.", + "ChallengeID": "63cfe3d47f0dd5f341f3b80b", + "ChallengeName": "Electroshock Therapy II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "destroy-taser-battery", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63cfe34c7f0dd5f341f3b702" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Destroy", + "Battery" ] }, - "reward": { - "rewardId": "625eb49830e781000186548b", - "stats": [ + { + "ChallengeDescription": "Destroy 50 Zapper batteries", + "ChallengeID": "63cfe44d7f0dd5f341f3b869", + "ChallengeName": "Electroshock Therapy III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "destroy-taser-battery", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfe3d47f0dd5f341f3b80b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Destroy", + "Batter" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 23, - "createdAt": "2022-04-19T13:09:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Destroy 100 Zapper batteries.", + "ChallengeID": "63cfe4897f0dd5f341f3b86a", + "ChallengeName": "Electroshock Therapy IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb43c28fe1154bf4b7090", - "isCompleted": false + "StatId": "destroy-taser-battery", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfe44d7f0dd5f341f3b869" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Destroy", + "Battery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Zapper.", + "ChallengeID": "63cfe7977f0dd5f341f3c218", + "ChallengeName": "Earthed I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 1 + "StatId": "save-taser-crewmate", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f25f57a74ddca83bcf68e1", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb49828fe1154bf4b7091" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Crewmate", + "Save" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Zapper 10 times.", + "ChallengeID": "63cfe7d17f0dd5f341f3c219", + "ChallengeName": "Earthed II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 10 + "StatId": "save-taser-crewmate", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfe7977f0dd5f341f3c218" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Crewmate", + "Save" ] }, - "reward": { - "rewardId": "62f25f5707a95c000190c770", - "stats": [ + { + "ChallengeDescription": "Save a crewmate from a Zapper 30 times.", + "ChallengeID": "63cfe8107f0dd5f341f3c4ad", + "ChallengeName": "Earthed III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "save-taser-crewmate", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfe7d17f0dd5f341f3c219" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Crewmate", + "Save" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 291, - "createdAt": "2022-08-09T13:21:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Save a crewmate from a Zapper 60 times.", + "ChallengeID": "63cfe8417f0dd5f341f3c790", + "ChallengeName": "Earthed IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb49828fe1154bf4b7091", - "isCompleted": false + "StatId": "save-taser-crewmate", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cfe8107f0dd5f341f3c4ad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Taser", + "Crewmate", + "Save" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Revive a crewmate.", + "ChallengeID": "63cfe95c7f0dd5f341f3d514", + "ChallengeName": "Saviour I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 10 + "StatId": "revive-crewmate", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f2603ea74ddca83bcf68e8", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f25f57a74ddca83bcf68e1" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Revive", + "Crewmate", + "Tutorial" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Revive a crewmate 10 times.", + "ChallengeID": "63cfe9c17f0dd5f341f3d515", + "ChallengeName": "Saviour II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 20 + "StatId": "revive-crewmate", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfe95c7f0dd5f341f3d514" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Revive", + "Crewmate" ] }, - "reward": { - "rewardId": "62f2603e07a95c000190c774", - "stats": [ + { + "ChallengeDescription": "Revive a crewmate 30 times.", + "ChallengeID": "63cfe9f77f0dd5f341f3d574", + "ChallengeName": "Saviour III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "revive-crewmate", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfe9c17f0dd5f341f3d515" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Revive", + "Crewmate" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 292, - "createdAt": "2022-08-09T13:25:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Revive a crewmate 60 times.", + "ChallengeID": "63cfea2d7f0dd5f341f3d5c8", + "ChallengeName": "Saviour IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f25f57a74ddca83bcf68e1", - "isCompleted": false + "StatId": "revive-crewmate", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cfe9f77f0dd5f341f3d574" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Crewmate", + "Revive" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy with a frag grenade.", + "ChallengeID": "63cfebfc7f0dd5f341f3e411", + "ChallengeName": "Pineapple I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 20 + "StatId": "frag-grenade-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f260e6a74ddca83bcf68e9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f2603ea74ddca83bcf68e8" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Frag", + "Grenade", + "Kill", + "Tutorial" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 20 enemies with frag grenades.", + "ChallengeID": "63cfec397f0dd5f341f3e4cd", + "ChallengeName": "Pineapple II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 30 + "StatId": "frag-grenade-kills", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63cfebfc7f0dd5f341f3e411" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Frag", + "Grenade" ] }, - "reward": { - "rewardId": "62f260e607a95c000190c778", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with frag grenades.", + "ChallengeID": "63cfec737f0dd5f341f3e4ce", + "ChallengeName": "Pineapple III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "frag-grenade-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfec397f0dd5f341f3e4cd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Frag", + "Grenade", + "Kill" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Map", - "Sharke", - "Stealth" - ], - "orderNo": 293, - "createdAt": "2022-08-09T13:28:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with frag grenades.", + "ChallengeID": "63cfecb87f0dd5f341f3ef4b", + "ChallengeName": "Pineapple IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f2603ea74ddca83bcf68e8", - "isCompleted": false + "StatId": "frag-grenade-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfec737f0dd5f341f3e4ce" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Frag", + "Grenade", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Affect an enemy with a flash bang.", + "ChallengeID": "63cfed317f0dd5f341f3f0fa", + "ChallengeName": "Senseless I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 30 + "StatId": "flashbang-affected-enemies", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26185a74ddca83bcf68f1", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f260e6a74ddca83bcf68e9" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Flashbang", + "IL7" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Affect 20 different enemies with flash bangs.", + "ChallengeID": "63cfed797f0dd5f341f3f0fb", + "ChallengeName": "Senseless II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 40 + "StatId": "flashbang-affected-enemies", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "63cfed317f0dd5f341f3f0fa" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Flashbang", + "IL7" ] }, - "reward": { - "rewardId": "62f2618507a95c000190c77c", - "stats": [ + { + "ChallengeDescription": "Affect 50 different enemies with flash bangs.", + "ChallengeID": "63cfedb57f0dd5f341f3f0fc", + "ChallengeName": "Senseless III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "flashbang-affected-enemies", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfed797f0dd5f341f3f0fb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Flashbang", + "IL7" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Map", - "Sharke", - "Stealth" - ], - "orderNo": 294, - "createdAt": "2022-08-09T13:30:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Affect 100 different enemies with flash bangs.", + "ChallengeID": "63cfedfb7f0dd5f341f3f411", + "ChallengeName": "Senseless IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f260e6a74ddca83bcf68e9", - "isCompleted": false + "StatId": "flashbang-affected-enemies", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63cfedb57f0dd5f341f3f0fc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Flashbang", + "IL7" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Shoot a grenade belt on a Nader.", + "ChallengeID": "63cfef527f0dd5f341f40031", + "ChallengeName": "Tactical Detonation I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 40 + "StatId": "destroy-choker-belt", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da786721282a2b1c01357f", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26185a74ddca83bcf68f1" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Choker", + "Belt", + "Destroy" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Shoot 10 grenade belts on Naders.", + "ChallengeID": "63cfef9a7f0dd5f341f40032", + "ChallengeName": "Tactical Detonation II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 55 + "StatId": "destroy-choker-belt", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cfef527f0dd5f341f40031" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Choker", + "Destroy", + "Belt" ] }, - "reward": { - "rewardId": "63da78679e43fb0001917321", - "stats": [ + { + "ChallengeDescription": "Shoot 30 grenade belts on Naders.", + "ChallengeID": "63cfefe97f0dd5f341f40033", + "ChallengeName": "Tactical Detonation III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "destroy-choker-belt", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cfef9a7f0dd5f341f40032" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Choker", + "Belt", + "Destroy" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484152, - "createdAt": "2023-02-01T14:34:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Shoot 60 grenade belts on Naders.", + "ChallengeID": "63cff0297f0dd5f341f40098", + "ChallengeName": "Tactical Detonation IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f26185a74ddca83bcf68f1", - "isCompleted": false + "StatId": "destroy-choker-belt", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cfefe97f0dd5f341f40033" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Choker", + "Belt", + "Destroy" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Shoot off a Dozer faceplate.", + "ChallengeID": "63cff0a47f0dd5f341f40c7c", + "ChallengeName": "Facelift I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 55 + "StatId": "dozer-faceplate", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da78de21282a2b1c013a9b", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da786721282a2b1c01357f" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Faceplate" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Shoot off 10 Dozer faceplates.", + "ChallengeID": "63cff0f27f0dd5f341f40cd0", + "ChallengeName": "Facelift II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 70 + "StatId": "dozer-faceplate", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cff0a47f0dd5f341f40c7c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Faceplate" ] }, - "reward": { - "rewardId": "63da78de9e43fb0001917322", - "stats": [ + { + "ChallengeDescription": "Shoot off 30 Dozer faceplates.", + "ChallengeID": "63cff14e7f0dd5f341f40cd1", + "ChallengeName": "Facelift III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "dozer-faceplate", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cff0f27f0dd5f341f40cd0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Faceplate" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484153, - "createdAt": "2023-02-01T14:36:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Shoot off 60 Dozer faceplates.", + "ChallengeID": "63cff17a7f0dd5f341f40cd2", + "ChallengeName": "Facelift IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da786721282a2b1c01357f", - "isCompleted": false + "StatId": "dozer-faceplate", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cff14e7f0dd5f341f40cd1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Dozer", + "Faceplate" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break the glass on an enemy Riot Shield.", + "ChallengeID": "63cff20f7f0dd5f341f40d41", + "ChallengeName": "Shoot the Shield I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 70 + "StatId": "riot-shield-break-glass", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da793121282a2b1c013e03", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da78de21282a2b1c013a9b" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Riot", + "Break" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Break the glass on 10 enemy Riot Shields.", + "ChallengeID": "63cff2537f0dd5f341f40d42", + "ChallengeName": "Shoot the Shield II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 85 + "StatId": "riot-shield-break-glass", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cff20f7f0dd5f341f40d41" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Riot", + "Break" ] }, - "reward": { - "rewardId": "63da79319e43fb0001917324", - "stats": [ + { + "ChallengeDescription": "Break the glass on 30 enemy Riot Shields.", + "ChallengeID": "63cff2977f0dd5f341f41813", + "ChallengeName": "Shoot the Shield III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "riot-shield-break-glass", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cff2537f0dd5f341f40d42" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Riot", + "Break" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484154, - "createdAt": "2023-02-01T14:37:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Break the glass on 60 enemy Riot Shields.", + "ChallengeID": "63cff2c77f0dd5f341f41814", + "ChallengeName": "Shoot the Shield IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da78de21282a2b1c013a9b", - "isCompleted": false + "StatId": "riot-shield-break-glass", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cff2977f0dd5f341f41813" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Riot", + "Break" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Affect an enemy with a Smoke Grenade", + "ChallengeID": "63cff36c7f0dd5f341f41962", + "ChallengeName": "Smoking Ban I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 85 + "StatId": "smoke-grenade-affected-enemies", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da796c21282a2b1c013e77", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy II: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da793121282a2b1c013e03" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Smoke", + "Grenade", + "IL30" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Affect 10 different enemies with Smoke Grenades.", + "ChallengeID": "63cff3a37f0dd5f341f41963", + "ChallengeName": "Smoking Ban II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "value": 100 + "StatId": "smoke-grenade-affected-enemies", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63cff36c7f0dd5f341f41962" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Smoke", + "Grenade", + "IL30" ] }, - "reward": { - "rewardId": "63da796c9e43fb000191732b", - "stats": [ + { + "ChallengeDescription": "Affect 50 different enemies with Smoke Grenades.", + "ChallengeID": "63cff3fd7f0dd5f341f41a4f", + "ChallengeName": "Smoking Ban III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "smoke-grenade-affected-enemies", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cff3a37f0dd5f341f41963" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Smoke", + "Grenade", + "IL30" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484155, - "createdAt": "2023-02-01T14:38:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Affect 100 different enemies with Smoke Grenades.", + "ChallengeID": "63cff43c7f0dd5f341f41ba8", + "ChallengeName": "Smoking Ban IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da793121282a2b1c013e03", - "isCompleted": false + "StatId": "smoke-grenade-affected-enemies", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63cff3fd7f0dd5f341f41a4f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Smoke", + "Grenade", + "IL30" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy with a Throwing Knife.", + "ChallengeID": "63cff4dd7f0dd5f341f41d11", + "ChallengeName": "Shanked I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-hard", - "currentValue": 0, - "targetValue": 100 + "StatId": "throwingknife-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb4e628fe1154bf4b70a8", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III", - "description": "Beat First Playable Bank on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb49828fe1154bf4b7091" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Knife", + "Kill", + "IL16" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 enemies with a Throwing Knife.", + "ChallengeID": "63cff5227f0dd5f341f41d12", + "ChallengeName": "Shanked II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 1 + "StatId": "throwingknife-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cff4dd7f0dd5f341f41d11" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Knife", + "Kill", + "IL16" ] }, - "reward": { - "rewardId": "625eb4e630e781000186548d", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with a Throwing Knife.", + "ChallengeID": "63cff55b7f0dd5f341f41d95", + "ChallengeName": "Shanked III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "throwingknife-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cff5227f0dd5f341f41d12" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Knife", + "Kill", + "IL16" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 24, - "createdAt": "2022-04-19T13:11:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with a Throwing Knife.", + "ChallengeID": "63cff59f7f0dd5f341f42954", + "ChallengeName": "Shanked IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb49828fe1154bf4b7091", - "isCompleted": false + "StatId": "throwingknife-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cff55b7f0dd5f341f41d95" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Knife", + "Kill", + "IL16" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat a guard while he is detecting you.", + "ChallengeID": "63cff6087f0dd5f341f42955", + "ChallengeName": "Just in Time I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 + "StatId": "detected-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26265a74ddca83bcf68f2", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb4e628fe1154bf4b70a8" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Detect", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 guards while they are detecting you.", + "ChallengeID": "63cff6407f0dd5f341f42a48", + "ChallengeName": "Just in Time II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 5 + "StatId": "detected-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63cff6087f0dd5f341f42955" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Detect", + "Kill" ] }, - "reward": { - "rewardId": "62f2626507a95c000190c77e", - "stats": [ + { + "ChallengeDescription": "Defeat 30 guards while they are detecting you.", + "ChallengeID": "63cff6887f0dd5f341f42c30", + "ChallengeName": "Just in Time III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "detected-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63cff6407f0dd5f341f42a48" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Detect", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 295, - "createdAt": "2022-08-09T13:34:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 guards while they are detecting you.", + "ChallengeID": "63cff6c97f0dd5f341f42cb7", + "ChallengeName": "Just in Time IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb4e628fe1154bf4b70a8", - "isCompleted": false + "StatId": "detected-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63cff6887f0dd5f341f42c30" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Detect", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat an enemy by headshot with the VF7S", + "ChallengeID": "63d1498b7f0dd5f341f88d03", + "ChallengeName": "Headshot VF7S I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 + "StatId": "assaultrifle-vf7s-headshot-kills", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f2633ea74ddca83bcf68f8", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26265a74ddca83bcf68f2" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "Headshot", + "IL77" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 enemies with a headshot with the VF-7S.", + "ChallengeID": "63d149d97f0dd5f341f88d5c", + "ChallengeName": "Headshot VF7S II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 10 + "StatId": "assaultrifle-vf7s-headshot-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [ + "63d1498b7f0dd5f341f88d03" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Kill", + "Headshot", + "Combat", + "VF7S", + "IL77" ] }, - "reward": { - "rewardId": "62f2633e07a95c000190c785", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the VF7S.", + "ChallengeID": "63d14a187f0dd5f341f88d5d", + "ChallengeName": "Headshot VF7S III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "assaultrifle-vf7s-headshot-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d149d97f0dd5f341f88d5c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "VF7S", + "IL77" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 296, - "createdAt": "2022-08-09T13:38:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the VF7S.", + "ChallengeID": "63d14a667f0dd5f341f8907b", + "ChallengeName": "Headshot VF7S IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f26265a74ddca83bcf68f2", - "isCompleted": false + "StatId": "assaultrifle-vf7s-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d14a187f0dd5f341f88d5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "VF7S", + "IL77" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the KU59.", + "ChallengeID": "63d14bbd7f0dd5f341f8939b", + "ChallengeName": "Headshot KU59 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "Headshot", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the KU59.", + "ChallengeID": "63d14c457f0dd5f341f894b3", + "ChallengeName": "Headshot KU59 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d14bbd7f0dd5f341f8939b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "Headshot", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the KU59.", + "ChallengeID": "63d14d4b7f0dd5f341f89629", + "ChallengeName": "Headshot KU59 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 + "StatId": "assaultrifle-ku59-headshot-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f263f6a74ddca83bcf68f9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f2633ea74ddca83bcf68f8" + ], + "PrerequisiteChallengeIds": [ + "63d14c457f0dd5f341f894b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "KU59", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the KU59.", + "ChallengeID": "63d14d9b7f0dd5f341f8972b", + "ChallengeName": "Headshot KU59 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 15 + "StatId": "assaultrifle-ku59-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d14d4b7f0dd5f341f89629" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "KU59", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Commando.", + "ChallengeID": "63d14e6f7f0dd5f341f89bd5", + "ChallengeName": "Headshot Commando I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Commando", + "IL29" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Commando.", + "ChallengeID": "63d14ee97f0dd5f341f89ea1", + "ChallengeName": "Headshot Commando II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d14e6f7f0dd5f341f89bd5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Commando", + "IL29" ] }, - "reward": { - "rewardId": "62f263f607a95c000190c788", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Commando.", + "ChallengeID": "63d14f337f0dd5f341f89fcc", + "ChallengeName": "Headshot Commando III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "smg-commando-headshot-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d14ee97f0dd5f341f89ea1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Kill", + "Commando", + "Headshot", + "Combat", + "IL29" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Map", - "Sharke", - "Stealth", - "Very" - ], - "orderNo": 297, - "createdAt": "2022-08-09T13:41:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Commando.", + "ChallengeID": "63d14fad7f0dd5f341f8a35b", + "ChallengeName": "Headshot Commando IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f2633ea74ddca83bcf68f8", - "isCompleted": false + "StatId": "smg-commando-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d14f337f0dd5f341f89fcc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Commando", + "IL29" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the PC9.", + "ChallengeID": "63d150617f0dd5f341f8a74d", + "ChallengeName": "Headshot PC9 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "PC9", + "IL18" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the PC9.", + "ChallengeID": "63d150c67f0dd5f341f8ab44", + "ChallengeName": "Headshot PC9 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d150617f0dd5f341f8a74d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "PC9", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the PC9.", + "ChallengeID": "63d151347f0dd5f341f8ab45", + "ChallengeName": "Headshot PC9 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 + "StatId": "smg-pc9-headshot-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26466a74ddca83bcf6925", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f263f6a74ddca83bcf68f9" + ], + "PrerequisiteChallengeIds": [ + "63d150c67f0dd5f341f8ab44" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "PC9", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the PC9.", + "ChallengeID": "63d151ad7f0dd5f341f8abaa", + "ChallengeName": "Headshot PC9 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 25 + "StatId": "smg-pc9-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d151347f0dd5f341f8ab45" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "PC9", + "IL18" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Mosconi12C.", + "ChallengeID": "63d152887f0dd5f341f8abab", + "ChallengeName": "Headshot Mosconi12C I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "Headshot", + "IL43" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Mosconi12C.", + "ChallengeID": "63d152e97f0dd5f341f8abac", + "ChallengeName": "Headshot Mosconi12C II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d152887f0dd5f341f8abab" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mosconi12C", + "IL43" ] }, - "reward": { - "rewardId": "62f2646607a95c000190c78c", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Mosconi12C.", + "ChallengeID": "63d1535b7f0dd5f341f8ac1a", + "ChallengeName": "Headshot Mosconi12C III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "shotgun-mosconi12c-headshot-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d152e97f0dd5f341f8abac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mosconi12C", + "IL43" + ] }, - "tags": [ - "Bank", - "Hard", - "Heist", - "Map", - "Sharke", - "Stealth", - "Very" - ], - "orderNo": 298, - "createdAt": "2022-08-09T13:43:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Mosconi12C.", + "ChallengeID": "63d153bc7f0dd5f341f8ac7f", + "ChallengeName": "Headshot Mosconi12C IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f263f6a74ddca83bcf68f9", - "isCompleted": false + "StatId": "shotgun-mosconi12c-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d1535b7f0dd5f341f8ac1a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Mosconi12C", + "IL43" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Stryk7.", + "ChallengeID": "63d155737f0dd5f341f8ad50", + "ChallengeName": "Headshot Stryk7 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Stryk7", + "IL25" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Stryk7.", + "ChallengeID": "63d155e57f0dd5f341f8b02b", + "ChallengeName": "Headshot Stryk7 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d155737f0dd5f341f8ad50" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Kill", + "Stryk7", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Stryk7.", + "ChallengeID": "63d156207f0dd5f341f8b02c", + "ChallengeName": "Headshot Stryk7 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 + "StatId": "pistol-stryk7-headshot-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da79d121282a2b1c014358", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26466a74ddca83bcf6925" + ], + "PrerequisiteChallengeIds": [ + "63d155e57f0dd5f341f8b02b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Stryk7", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Stryk7.", + "ChallengeID": "63d156747f0dd5f341f8b36d", + "ChallengeName": "Headshot Stryk7 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 35 + "StatId": "pistol-stryk7-headshot-kills", + "TargetProgress": 60 } + ], + "PrerequisiteChallengeIds": [ + "63d156207f0dd5f341f8b02c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "Stryk7", + "IL25" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the S403", + "ChallengeID": "63d15c577f0dd5f341f8c0fa", + "ChallengeName": "Headshot S403 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Kill", + "S403", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the S403.", + "ChallengeID": "63d15cea7f0dd5f341f8c0fb", + "ChallengeName": "Headshot S403 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d15c577f0dd5f341f8c0fa" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Kill", + "S403", + "IL59" ] }, - "reward": { - "rewardId": "63da79d19e43fb000191732c", - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the S403.", + "ChallengeID": "63d15d207f0dd5f341f8c0fc", + "ChallengeName": "Headshot S403 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "pistol-s403-headshot-kills", + "TargetProgress": 30 } ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484156, - "createdAt": "2023-02-01T14:40:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "62f26466a74ddca83bcf6925", - "isCompleted": false - } + "PrerequisiteChallengeIds": [ + "63d15cea7f0dd5f341f8c0fb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S403", + "IL59" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the S403.", + "ChallengeID": "63d15d5c7f0dd5f341f8c0fd", + "ChallengeName": "Headshot S403 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 + "StatId": "pistol-s403-headshot-kills", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7a1c21282a2b1c0145e3", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da79d121282a2b1c014358" + ], + "PrerequisiteChallengeIds": [ + "63d15d207f0dd5f341f8c0fc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "S403", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the SPM11.", + "ChallengeID": "63d2727f7f0dd5f341fbd40e", + "ChallengeName": "Headshot SPM11 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Perfect", + "Kill", + "Headshot", + "IL38" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the SPM11", + "ChallengeID": "63d272b87f0dd5f341fbd46f", + "ChallengeName": "Headshot SPM11 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d2727f7f0dd5f341fbd40e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Perfect", + "Kill", + "Headshot", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the SPM11.", + "ChallengeID": "63d272f37f0dd5f341fbd4d1", + "ChallengeName": "Headshot SPM11 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 50 + "StatId": "pistol-spm11-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d272b87f0dd5f341fbd46f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Perfect", + "Kill", + "Headshot", + "IL38" ] }, - "reward": { - "rewardId": "63da7a1c9e43fb000191732e", - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the SPM11.", + "ChallengeID": "63d2732b7f0dd5f341fbe06e", + "ChallengeName": "Headshot SPM11 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "pistol-spm11-headshot-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d272f37f0dd5f341fbd4d1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Perfect", + "Headshot", + "Kill", + "IL38" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Bison.", + "ChallengeID": "63d273cf7f0dd5f341fbe135", + "ChallengeName": "Headshot Bison I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "Headshot", + "IL70" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Bison.", + "ChallengeID": "63d274047f0dd5f341fbe2bc", + "ChallengeName": "Headshot Bison II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d273cf7f0dd5f341fbe135" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Headshot", + "Kill", + "IL70" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484157, - "createdAt": "2023-02-01T14:41:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Bison.", + "ChallengeID": "63d274407f0dd5f341fbe389", + "ChallengeName": "Headshot Bison III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da79d121282a2b1c014358", - "isCompleted": false + "StatId": "revolver-bison-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d274047f0dd5f341fbe2bc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "Headshot", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Bison.", + "ChallengeID": "63d274667f0dd5f341fbe38a", + "ChallengeName": "Headshot Bison IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 + "StatId": "revolver-bison-headshot-kills", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7a7621282a2b1c014fda", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7a1c21282a2b1c0145e3" + ], + "PrerequisiteChallengeIds": [ + "63d274407f0dd5f341fbe389" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Headshot", + "Kill", + "IL70" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the HET5.", + "ChallengeID": "63d278277f0dd5f341fc0550", + "ChallengeName": "Headshot HET5 I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-het5-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Lynx", + "Kill", + "Headshot", + "IL40" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the HET5.", + "ChallengeID": "63d278697f0dd5f341fc0551", + "ChallengeName": "Headshot HET5 II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-het5-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "63d278277f0dd5f341fc0550" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Lynx", + "Kill", + "Headshot", + "IL40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the HET5.", + "ChallengeID": "63d278b17f0dd5f341fc0552", + "ChallengeName": "Headshot HET5 III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 65 + "StatId": "overkill-het5-headshot-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d278697f0dd5f341fc0551" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Lynx", + "Kill", + "Headshot", + "IL40" ] }, - "reward": { - "rewardId": "63da7a769e43fb0001917331", - "stats": [ + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the HET5.", + "ChallengeID": "63d278e67f0dd5f341fc0707", + "ChallengeName": "Headshot HET5 IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "overkill-het5-headshot-kills", + "TargetProgress": 60 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d278b17f0dd5f341fc0552" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Headshot", + "Kill", + "HET5", + "Lynx", + "IL40" + ] + }, + { + "ChallengeDescription": "With the NWB9, defeat 3 enemies without reloading, 5 times.", + "ChallengeID": "63d27bd07f0dd5f341fc2ad6", + "ChallengeName": "NWB9 Single Clip I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-noreload-kills", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "No", + "Reload", + "Kills", + "IL21" + ] + }, + { + "ChallengeDescription": "With the NWB9, defeat 3 enemies without reloading, 15 times.", + "ChallengeID": "63d27c1d7f0dd5f341fc2d49", + "ChallengeName": "NWB9 Single Clip II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-noreload-kills", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "63d27bd07f0dd5f341fc2ad6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "No", + "Reload", + "Kill", + "IL21" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484158, - "createdAt": "2023-02-01T14:43:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "With the NWB9, defeat 3 enemies without reloading, 30 times.", + "ChallengeID": "63d27c5a7f0dd5f341fc3b20", + "ChallengeName": "NWB9 Single Clip III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da7a1c21282a2b1c0145e3", - "isCompleted": false + "StatId": "assaultrifle-nwb9-noreload-kills", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d27c1d7f0dd5f341fc2d49" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "No", + "Reload", + "Kill", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "With the NWB9, defeat 3 enemies without reloading, 50 times.", + "ChallengeID": "63d27ca77f0dd5f341fc42f6", + "ChallengeName": "NWB9 Single Clip IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 65 + "StatId": "assaultrifle-nwb9-noreload-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7ac821282a2b1c01543e", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy III: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7a7621282a2b1c014fda" + ], + "PrerequisiteChallengeIds": [ + "63d27c5a7f0dd5f341fc3b20" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "No", + "Reload", + "Kill", + "IL21" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "With the NWB9, defeat 3 enemies without reloading, 75 times.", + "ChallengeID": "63d27ce67f0dd5f341fc43d0", + "ChallengeName": "NWB9 Single Clip V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "value": 80 + "StatId": "assaultrifle-nwb9-noreload-kills", + "TargetProgress": 75 } + ], + "PrerequisiteChallengeIds": [ + "63d27ca77f0dd5f341fc42f6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "No", + "Reload", + "Kill", + "IL21" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the CAR4.", + "ChallengeID": "63d280e67f0dd5f341fc7677", + "ChallengeName": "CAR4 ADS I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-car4-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the CAR4.", + "ChallengeID": "63d2812c7f0dd5f341fc7810", + "ChallengeName": "CAR4 ADS II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-car4-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d280e67f0dd5f341fc7677" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "ADS", + "Kill" ] }, - "reward": { - "rewardId": "63da7ac89e43fb0001917333", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the CAR4.", + "ChallengeID": "63d2816e7f0dd5f341fc794f", + "ChallengeName": "CAR4 ADS III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 300 + "StatId": "assaultrifle-car4-ads-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2812c7f0dd5f341fc7810" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "ADS", + "Kill" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Sharke", - "Bank" - ], - "orderNo": 2147484159, - "createdAt": "2023-02-01T14:44:24Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the CAR4.", + "ChallengeID": "63d281c37f0dd5f341fc7aeb", + "ChallengeName": "CAR4 ADS IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da7a7621282a2b1c014fda", - "isCompleted": false + "StatId": "assaultrifle-car4-ads-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d2816e7f0dd5f341fc794f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "ADS", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the CAR4.", + "ChallengeID": "63d282157f0dd5f341fc8751", + "ChallengeName": "CAR4 ADS V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 + "StatId": "assaultrifle-car4-ads-kills", + "TargetProgress": 400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "625eb57028fe1154bf4b70a9", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV", - "description": "Beat First Playable Bank on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb4e628fe1154bf4b70a8" + ], + "PrerequisiteChallengeIds": [ + "63d281c37f0dd5f341fc7aeb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the VF7S.", + "ChallengeID": "63d2865c7f0dd5f341fca8b3", + "ChallengeName": "VF7S ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "ADS", + "Kill", + "IL77" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the VF7S.", + "ChallengeID": "63d286b87f0dd5f341fca985", + "ChallengeName": "VF7S ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2865c7f0dd5f341fca8b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "ADS", + "Kill", + "IL77" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the VF7S.", + "ChallengeID": "63d286f67f0dd5f341fca986", + "ChallengeName": "VF7S ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 1 + "StatId": "assaultrifle-vf7s-ads-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d286b87f0dd5f341fca985" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "ADS", + "Kill", + "IL77" ] }, - "reward": { - "rewardId": "625eb57030e781000186548e", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the VF7S.", + "ChallengeID": "63d287397f0dd5f341fca987", + "ChallengeName": "VF7S ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "assaultrifle-vf7s-ads-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d286f67f0dd5f341fca986" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "ADS", + "Kill", + "IL77" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 25, - "createdAt": "2022-04-19T13:13:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the VF7S.", + "ChallengeID": "63d287717f0dd5f341fca988", + "ChallengeName": "VF7S ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb4e628fe1154bf4b70a8", - "isCompleted": false + "StatId": "assaultrifle-vf7s-ads-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d287397f0dd5f341fca987" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "VF7S", + "ADS", + "Kill", + "Combat", + "IL77" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while firing from the hip with the KU59.", + "ChallengeID": "63d28b6d7f0dd5f341fccead", + "ChallengeName": "KU59 Hip Fire I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-hipfire-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Hip", + "Kill", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while firing from the hip with the KU59.", + "ChallengeID": "63d28bc97f0dd5f341fcdb31", + "ChallengeName": "KU59 Hip Fire II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-hipfire-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d28b6d7f0dd5f341fccead" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Hip", + "Kill", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while firing from the hip with the KU59.", + "ChallengeID": "63d28c437f0dd5f341fcdb32", + "ChallengeName": "KU59 Hip Fire III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 1 + "StatId": "assaultrifle-ku59-hipfire-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26514a74ddca83bcf6935", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender I", - "description": "Beat Sharke Bank (FP) 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "625eb57028fe1154bf4b70a9" + ], + "PrerequisiteChallengeIds": [ + "63d28bc97f0dd5f341fcdb31" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Hip", + "Kill", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while firing from the hip with the KU59.", + "ChallengeID": "63d28c9a7f0dd5f341fcdc05", + "ChallengeName": "KU59 Hip Fire IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-hipfire-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Hip", + "Kill", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while firing from the hip with the KU59.", + "ChallengeID": "63d28ce07f0dd5f341fcdcdf", + "ChallengeName": "KU59 Hip Fire V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-hipfire-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "63d28c9a7f0dd5f341fcdc05" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Hip", + "Kill", + "IL35" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while firing from the hip with the Commando.", + "ChallengeID": "63d292597f0dd5f341fcf0bb", + "ChallengeName": "Commando Hip Fire I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-hipfire-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Hip", + "Kill", + "IL29" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while firing from the hip with the Commando", + "ChallengeID": "63d292917f0dd5f341fcf123", + "ChallengeName": "Commando Hip Fire II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-hipfire-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d292597f0dd5f341fcf0bb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Hip", + "Kill", + "IL29" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while firing from the hip with the Commando.", + "ChallengeID": "63d292f57f0dd5f341fcf124", + "ChallengeName": "Commando Hip Fire III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 3 + "StatId": "smg-commando-hipfire-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d292917f0dd5f341fcf123" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Hip", + "Kill", + "IL29" ] }, - "reward": { - "rewardId": "62f2651407a95c000190c790", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies while firing from the hip with the Commando.", + "ChallengeID": "63d293317f0dd5f341fcf1de", + "ChallengeName": "Commando Hip Fire IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "smg-commando-hipfire-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d292f57f0dd5f341fcf124" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Hip", + "Kill", + "IL29" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Overkill", - "Sharke", - "Stealth" - ], - "orderNo": 299, - "createdAt": "2022-08-09T13:45:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 400 enemies while firing from the hip with the Commando.", + "ChallengeID": "63d2938e7f0dd5f341fcf1df", + "ChallengeName": "Commando Hip Fire V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "625eb57028fe1154bf4b70a9", - "isCompleted": false + "StatId": "smg-commando-hipfire-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d293317f0dd5f341fcf1de" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Hip", + "Kill", + "IL29" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the PC9.", + "ChallengeID": "63d295107f0dd5f341fcf1e0", + "ChallengeName": "PC9 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "ADS", + "Kill", + "IL18" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the PC9.", + "ChallengeID": "63d295827f0dd5f341fcf2d8", + "ChallengeName": "PC9 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d295107f0dd5f341fcf1e0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "ADS", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the PC9.", + "ChallengeID": "63d295d87f0dd5f341fcf2d9", + "ChallengeName": "PC9 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 3 + "StatId": "smg-pc9-ads-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f265aba74ddca83bcf6936", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender II", - "description": "Beat Sharke Bank (FP) 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26514a74ddca83bcf6935" + ], + "PrerequisiteChallengeIds": [ + "63d295827f0dd5f341fcf2d8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "ADS", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the PC9.", + "ChallengeID": "63d2961b7f0dd5f341fcf2da", + "ChallengeName": "PC9 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 6 + "StatId": "smg-pc9-ads-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d295d87f0dd5f341fcf2d9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "ADS", + "Kill", + "IL18" ] }, - "reward": { - "rewardId": "62f265ab07a95c000190c791", - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the PC9.", + "ChallengeID": "63d296747f0dd5f341fcf2db", + "ChallengeName": "PC9 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "smg-pc9-ads-kills", + "TargetProgress": 400 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2961b7f0dd5f341fcf2da" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "ADS", + "Kill", + "IL18" + ] + }, + { + "ChallengeDescription": "Defeat 10 armored enemies by headshot with the Compact7.", + "ChallengeID": "63d299607f0dd5f341fcf538", + "ChallengeName": "Compact7 Armored Headshot I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-armored-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Headshot", + "Kill", + "Armor", + "IL65" + ] + }, + { + "ChallengeDescription": "Defeat 50 armored enemies by headshot with the Compact7.", + "ChallengeID": "63d299a57f0dd5f341fcf539", + "ChallengeName": "Compact7 Armored Headshot II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-armored-headshot-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d299607f0dd5f341fcf538" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Armor", + "Headshot", + "Kill", + "IL65" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Overkill", - "Sharke", - "Stealth" - ], - "orderNo": 300, - "createdAt": "2022-08-09T13:48:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 armored enemies by headshot with the Compact7.", + "ChallengeID": "63d299f87f0dd5f341fcf63b", + "ChallengeName": "Compact7 Armored Headshot III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f26514a74ddca83bcf6935", - "isCompleted": false + "StatId": "smg-compact7-armored-headshot-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d299a57f0dd5f341fcf539" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Armor", + "Headshot", + "Kill", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 armored enemies by headshot with the Compact7.", + "ChallengeID": "63d29a577f0dd5f341fcf70a", + "ChallengeName": "Compact7 Armored Headshot IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 6 + "StatId": "smg-compact7-armored-headshot-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f26630a74ddca83bcf6939", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender III", - "description": "Beat Sharke Bank (FP) 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f265aba74ddca83bcf6936" + ], + "PrerequisiteChallengeIds": [ + "63d299f87f0dd5f341fcf63b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Armor", + "Headshot", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 armored enemies by headshot with the Compact7", + "ChallengeID": "63d29a917f0dd5f341fcf78d", + "ChallengeName": "Compact7 Armored Headshot V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 10 + "StatId": "smg-compact7-armored-headshot-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d29a577f0dd5f341fcf70a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Armor", + "Headshot", + "Kill", + "IL65" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the R880.", + "ChallengeID": "63d29caa7f0dd5f341fcf99f", + "ChallengeName": "R880 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "ADS", + "Kill", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the R880", + "ChallengeID": "63d29cea7f0dd5f341fcfa17", + "ChallengeName": "R880 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d29caa7f0dd5f341fcf99f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "ADS", + "Kill", + "IL2" ] }, - "reward": { - "rewardId": "62f2663007a95c000190c793", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the R880.", + "ChallengeID": "63d29d277f0dd5f341fcfa18", + "ChallengeName": "R880 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "shotgun-r880-ads-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d29cea7f0dd5f341fcfa17" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "ADS", + "Kill", + "IL2" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Overkill", - "Sharke", - "Stealth" - ], - "orderNo": 301, - "createdAt": "2022-08-09T13:50:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the R880", + "ChallengeID": "63d29d617f0dd5f341fcfa19", + "ChallengeName": "R880 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f265aba74ddca83bcf6936", - "isCompleted": false + "StatId": "shotgun-r880-ads-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d29d277f0dd5f341fcfa18" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "ADS", + "Kill", + "IL2" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the R880", + "ChallengeID": "63d29d987f0dd5f341fcfa1a", + "ChallengeName": "R880 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 10 + "StatId": "shotgun-r880-ads-kills", + "TargetProgress": 400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62f266f6a74ddca83bcf6948", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender IV", - "description": "Beat Sharke Bank (FP) 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f26630a74ddca83bcf6939" + ], + "PrerequisiteChallengeIds": [ + "63d29d617f0dd5f341fcfa19" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "ADS", + "Kill", + "IL2" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while firing from the hip with the Mosconi12C", + "ChallengeID": "63d2a0d47f0dd5f341fd0110", + "ChallengeName": "Mosconi12C Hip Fire I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-hipfire-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Hip", + "Kill", + "IL43" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while firing from the hip with the Mosconi12C", + "ChallengeID": "63d2a1127f0dd5f341fd0431", + "ChallengeName": "Mosconi12C Hip Fire II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-hipfire-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2a0d47f0dd5f341fd0110" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Hip", + "Kill", + "IL43" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while firing from the hip with the Mosconi12C", + "ChallengeID": "63d2a1537f0dd5f341fd086b", + "ChallengeName": "Mosconi12C Hip Fire III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 15 + "StatId": "shotgun-mosconi12c-hipfire-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d2a1127f0dd5f341fd0431" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Hip", + "Kill", + "IL43" ] }, - "reward": { - "rewardId": "62f266f607a95c000190c79a", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies while firing from the hip with the Mosconi12C", + "ChallengeID": "63d2a1b17f0dd5f341fd0bf7", + "ChallengeName": "Mosconi12C Hip Fire IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "shotgun-mosconi12c-hipfire-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2a1537f0dd5f341fd086b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Hip", + "Kill", + "IL43" + ] }, - "tags": [ - "Bank", - "Heist", - "Map", - "Overkill", - "Sharke", - "Stealth" - ], - "orderNo": 302, - "createdAt": "2022-08-09T13:53:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 400 enemies while firing from the hip with the Mosconi12C", + "ChallengeID": "63d2a1ec7f0dd5f341fd0bf8", + "ChallengeName": "Mosconi12C Hip Fire V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f26630a74ddca83bcf6939", - "isCompleted": false + "StatId": "shotgun-mosconi12c-hipfire-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d2a1b17f0dd5f341fd0bf7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Hip", + "Kill", + "IL43" + ] + }, + { + "ChallengeDescription": "Defeat 10 armored enemies by headshot with the A114", + "ChallengeID": "63d2a30c7f0dd5f341fd1633", + "ChallengeName": "A114 Armored Headshot I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-armored-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Armor", + "Headshot", + "Kill", + "IL15" + ] + }, + { + "ChallengeDescription": "Defeat 50 armored enemies by headshot with the A114", + "ChallengeID": "63d2a3537f0dd5f341fd1959", + "ChallengeName": "A114 Armored Headshot II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-armored-headshot-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2a30c7f0dd5f341fd1633" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Armor", + "Headshot", + "Kill", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 armored enemies by headshot with the A114", + "ChallengeID": "63d2a3937f0dd5f341fd195a", + "ChallengeName": "A114 Armored Headshot III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 15 + "StatId": "marksman-a114-armored-headshot-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7b6a21282a2b1c015814", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender V", - "description": "Beat Sharke Bank (FP) 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "62f266f6a74ddca83bcf6948" + ], + "PrerequisiteChallengeIds": [ + "63d2a3537f0dd5f341fd1959" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Armor", + "Headshot", + "Kill", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 armored enemies by headshot with the A114", + "ChallengeID": "63d2a3f87f0dd5f341fd1c82", + "ChallengeName": "A114 Armored Headshot IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 20 + "StatId": "marksman-a114-armored-headshot-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d2a3937f0dd5f341fd195a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Armor", + "Headshot", + "Kill", + "IL15" ] }, - "reward": { - "rewardId": "63da7b6a9e43fb0001917334", - "stats": [ + { + "ChallengeDescription": "Defeat 400 armored enemies by headshot with the A114", + "ChallengeID": "63d2a4457f0dd5f341fd1c83", + "ChallengeName": "A114 Armored Headshot V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "marksman-a114-armored-headshot-kills", + "TargetProgress": 400 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2a3f87f0dd5f341fd1c82" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Armor", + "Headshot", + "Kill", + "IL15" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the R900S from over 50 metres away", + "ChallengeID": "63d2a7567f0dd5f341fd1f4b", + "ChallengeName": "R900S Long Range I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-longrange-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Long", + "Range", + "Kill", + "IL53" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the R900S from over 50 metres away", + "ChallengeID": "63d2a7ab7f0dd5f341fd1f4c", + "ChallengeName": "R900S Long Range II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-longrange-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2a7567f0dd5f341fd1f4b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Long", + "Range", + "Kill", + "IL53" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484160, - "createdAt": "2023-02-01T14:47:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the R900S from over 50 metres away", + "ChallengeID": "63d2a7de7f0dd5f341fd1f4d", + "ChallengeName": "R900S Long Range III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "62f266f6a74ddca83bcf6948", - "isCompleted": false + "StatId": "marksman-r900s-longrange-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d2a7ab7f0dd5f341fd1f4c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Long", + "Range", + "Kill", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the R900S from over 50 metres away", + "ChallengeID": "63d2a8307f0dd5f341fd1f4e", + "ChallengeName": "R900S Long Range IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 20 + "StatId": "marksman-r900s-longrange-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7baa21282a2b1c015815", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender VI", - "description": "Beat Sharke Bank (FP) 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7b6a21282a2b1c015814" + ], + "PrerequisiteChallengeIds": [ + "63d2a7de7f0dd5f341fd1f4d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Long", + "Range", + "Kill", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the R900S from over 50 metres away", + "ChallengeID": "63d2a8677f0dd5f341fd1f4f", + "ChallengeName": "R900S Long Range V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 25 + "StatId": "marksman-r900s-longrange-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d2a8307f0dd5f341fd1f4e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Long", + "Range", + "Kill", + "IL53" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the Stryk7", + "ChallengeID": "63d2aa537f0dd5f341fd1f50", + "ChallengeName": "Stryk7 Suppressed I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Suppressor", + "Kill", + "IL25" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the Stryk7", + "ChallengeID": "63d2aabe7f0dd5f341fd1fc0", + "ChallengeName": "Stryk7 Suppressed II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2aa537f0dd5f341fd1f50" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "Suppressor", + "IL25" ] }, - "reward": { - "rewardId": "63da7baa9e43fb0001917335", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the Stryk7", + "ChallengeID": "63d2aafb7f0dd5f341fd1fc1", + "ChallengeName": "Stryk7 Suppressed III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "pistol-stryk7-suppressor-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2aabe7f0dd5f341fd1fc0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Suppressor", + "Kill", + "IL25" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484161, - "createdAt": "2023-02-01T14:48:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the Stryk7", + "ChallengeID": "63d2ab4d7f0dd5f341fd1fc2", + "ChallengeName": "Stryk7 Suppressed IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da7b6a21282a2b1c015814", - "isCompleted": false + "StatId": "pistol-stryk7-suppressor-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d2aafb7f0dd5f341fd1fc1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Suppressor", + "Kill", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the Stryk7", + "ChallengeID": "63d2ab7f7f0dd5f341fd1fc3", + "ChallengeName": "Stryk7 Suppressed V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 25 + "StatId": "pistol-stryk7-suppressor-kills", + "TargetProgress": 400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7bdd21282a2b1c015980", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender VII", - "description": "Beat Sharke Bank (FP) 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7baa21282a2b1c015815" + ], + "PrerequisiteChallengeIds": [ + "63d2ab4d7f0dd5f341fd1fc2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Suppressor", + "Kill", + "IL25" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the S403", + "ChallengeID": "63d2ac817f0dd5f341fd1fc4", + "ChallengeName": "S403 Suppressed I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "Suppressor", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the S403", + "ChallengeID": "63d2acbf7f0dd5f341fd1fc5", + "ChallengeName": "S403 Suppressed II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2ac817f0dd5f341fd1fc4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Suppressor", + "Kill", + "IL59" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the S403", + "ChallengeID": "63d2acff7f0dd5f341fd2046", + "ChallengeName": "S403 Suppressed III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 30 + "StatId": "pistol-s403-suppressor-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d2acbf7f0dd5f341fd1fc5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Suppressor", + "Kill", + "IL59" ] }, - "reward": { - "rewardId": "63da7bdd9e43fb0001917336", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the S403", + "ChallengeID": "63d2ad477f0dd5f341fd2047", + "ChallengeName": "S403 Suppressed IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "pistol-s403-suppressor-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2acff7f0dd5f341fd2046" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Suppressor", + "Kill", + "IL59" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484162, - "createdAt": "2023-02-01T14:49:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the S403", + "ChallengeID": "63d2ad957f0dd5f341fd2048", + "ChallengeName": "S403 Suppressed V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da7baa21282a2b1c015815", - "isCompleted": false + "StatId": "pistol-s403-suppressor-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d2ad477f0dd5f341fd2047" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Suppressor", + "Kill", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the S40", + "ChallengeID": "63d2ae937f0dd5f341fd2049", + "ChallengeName": "S40 Suppressed I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the S40", + "ChallengeID": "63d2af047f0dd5f341fd204a", + "ChallengeName": "S40 Suppressed II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2ae937f0dd5f341fd2049" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Suppressor", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the S40", + "ChallengeID": "63d2af5b7f0dd5f341fd204b", + "ChallengeName": "S40 Suppressed III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 30 + "StatId": "pistol-s40-suppressor-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63da7c2b21282a2b1c015b44", - "namespace": "pd3", - "name": "Sharke Bank (FP) Stealthy IV: Repeat Offender VIII", - "description": "Beat Sharke Bank (FP) 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63da7bdd21282a2b1c015980" + ], + "PrerequisiteChallengeIds": [ + "63d2af047f0dd5f341fd204a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Suppressor", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the S40", + "ChallengeID": "63d2af987f0dd5f341fd204c", + "ChallengeName": "S40 Suppressed IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "value": 40 + "StatId": "pistol-s40-suppressor-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d2af5b7f0dd5f341fd204b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Suppressor", + "Kill" ] }, - "reward": { - "rewardId": "63da7c2b9e43fb0001917337", - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the S40", + "ChallengeID": "63d2afcf7f0dd5f341fd20d1", + "ChallengeName": "S40 Suppressed V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 310 + "StatId": "pistol-s40-suppressor-kills", + "TargetProgress": 400 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d2af987f0dd5f341fd204c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the SPM11", + "ChallengeID": "63d2b05e7f0dd5f341fd20d2", + "ChallengeName": "SPM11 Suppressed I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Suppressor", + "Kill", + "IL38" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the SPM11", + "ChallengeID": "63d2b09c7f0dd5f341fd20d3", + "ChallengeName": "SPM11 Suppressed II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d2b05e7f0dd5f341fd20d2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Suppressor", + "Kill", + "IL38" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Overkill", - "Sharke", - "Bank" - ], - "orderNo": 2147484163, - "createdAt": "2023-02-01T14:50:19Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the SPM11", + "ChallengeID": "63d2b0f07f0dd5f341fd20d4", + "ChallengeName": "SPM11 Suppressed III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63da7bdd21282a2b1c015980", - "isCompleted": false + "StatId": "pistol-spm11-suppressor-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d2b09c7f0dd5f341fd20d3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Suppressor", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the SPM11", + "ChallengeID": "63d2b11d7f0dd5f341fd20d5", + "ChallengeName": "SPM11 Suppressed IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "firstplayable-stealth-overkill", - "currentValue": 0, - "targetValue": 40 + "StatId": "pistol-spm11-suppressor-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc0b1328fe1154bf4c0912", - "namespace": "pd3", - "name": "Sharke Bank (FP): Full Payout", - "description": "Escape with the maximum payout", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc0b1307a95c00019067f8", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Sharke", - "Bank", - "Max", - "Heist" - ], - "orderNo": 177, - "createdAt": "2022-07-11T11:35:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "62cc0b8c28fe1154bf4c0913", - "namespace": "pd3", - "name": "Sharke Bank (FP): On Your Feet", - "description": "Escape without being downed after the assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "62cc0b8c07a95c00019067fa", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Sharke", - "Bank", - "No", - "Down", - "Heist" - ], - "orderNo": 178, - "createdAt": "2022-07-11T11:37:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "firstplayable-no-downs", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff20f7f0dd5f341f40d41", - "namespace": "pd3", - "name": "Shoot the Shield I", - "description": "Break the glass on an enemy Riot Shield.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "riot-shield-break-glass", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cff20fc9460a0001ef773b", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Riot", - "Break" - ], - "orderNo": 2147483801, - "createdAt": "2023-01-24T14:58:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "riot-shield-break-glass", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff2537f0dd5f341f40d42", - "namespace": "pd3", - "name": "Shoot the Shield II", - "description": "Break the glass on 10 enemy Riot Shields.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff20f7f0dd5f341f40d41" + ], + "PrerequisiteChallengeIds": [ + "63d2b0f07f0dd5f341fd20d4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Suppressor", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the SPM11", + "ChallengeID": "63d2b1507f0dd5f341fd20d6", + "ChallengeName": "SPM11 Suppressed V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "value": 10 + "StatId": "pistol-spm11-suppressor-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d2b11d7f0dd5f341fd20d5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Suppressor", + "Kill", + "IL38" + ] + }, + { + "ChallengeDescription": "With the Bison, defeat 2 enemies without reloading, 5 times", + "ChallengeID": "63d3c972640c786dc267b2b8", + "ChallengeName": "Bison Single Clip I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-noreload-kills", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "No", + "Reload", + "Kill", + "IL70" + ] + }, + { + "ChallengeDescription": "With the Bison, defeat 2 enemies without reloading, 15 times", + "ChallengeID": "63d3cad3640c786dc267b59c", + "ChallengeName": "Bison Single Clip II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-noreload-kills", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "63d3c972640c786dc267b2b8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "No", + "Reload", + "Kill", + "IL70" ] }, - "reward": { - "rewardId": "63cff253c9460a0001ef7766", - "stats": [ + { + "ChallengeDescription": "With the Bison, defeat 2 enemies without reloading, 30 times", + "ChallengeID": "63d3cb20640c786dc267b608", + "ChallengeName": "Bison Single Clip III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "revolver-bison-noreload-kills", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3cad3640c786dc267b59c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "No", + "Reload", + "Kill", + "IL70" + ] }, - "tags": [ - "Combat", - "Riot", - "Break" - ], - "orderNo": 2147483802, - "createdAt": "2023-01-24T14:59:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "With the Bison, defeat 2 enemies without reloading, 50 times", + "ChallengeID": "63d3cb54640c786dc267b727", + "ChallengeName": "Bison Single Clip IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff20f7f0dd5f341f40d41", - "isCompleted": false + "StatId": "revolver-bison-noreload-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d3cb20640c786dc267b608" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "No", + "Reload", + "Kill", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "With the Bison, defeat 2 enemies without reloading, 75 times", + "ChallengeID": "63d3cbac640c786dc267bc63", + "ChallengeName": "Bison Single Clip V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "currentValue": 0, - "targetValue": 10 + "StatId": "revolver-bison-noreload-kills", + "TargetProgress": 75 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff2977f0dd5f341f41813", - "namespace": "pd3", - "name": "Shoot the Shield III", - "description": "Break the glass on 30 enemy Riot Shields.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff2537f0dd5f341f40d42" + ], + "PrerequisiteChallengeIds": [ + "63d3cb54640c786dc267b727" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "No", + "Reload", + "Kill", + "IL70" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the Castigo44", + "ChallengeID": "63d3d2bc640c786dc267e965", + "ChallengeName": "Castigo44 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "ADS", + "Kill", + "IL10" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the Castigo44", + "ChallengeID": "63d3d2fd640c786dc267e966", + "ChallengeName": "Castigo44 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "63d3d2bc640c786dc267e965" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "ADS", + "Kill", + "IL10" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the Castigo44", + "ChallengeID": "63d3d354640c786dc267eb7e", + "ChallengeName": "Castigo44 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "value": 30 + "StatId": "revolver-castigo44-ads-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3d2fd640c786dc267e966" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "ADS", + "Kill", + "IL10" ] }, - "reward": { - "rewardId": "63cff297c9460a0001ef78f7", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the Castigo44", + "ChallengeID": "63d3d396640c786dc267eccf", + "ChallengeName": "Castigo44 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "revolver-castigo44-ads-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3d354640c786dc267eb7e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "ADS", + "Kill", + "IL10" + ] }, - "tags": [ - "Combat", - "Riot", - "Break" - ], - "orderNo": 2147483803, - "createdAt": "2023-01-24T15:00:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the Castigo44", + "ChallengeID": "63d3d3d3640c786dc267ecd0", + "ChallengeName": "Castigo44 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff2537f0dd5f341f40d42", - "isCompleted": false + "StatId": "revolver-castigo44-ads-kills", + "TargetProgress": 400 } + ], + "PrerequisiteChallengeIds": [ + "63d3d396640c786dc267eccf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "ADS", + "Kill", + "IL10" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies with one Mamba grenade, 5 times", + "ChallengeID": "63d3d4ab640c786dc267ee1b", + "ChallengeName": "Mamba Two Kills I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-twoenemies-kills", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Two", + "One", + "Grenade", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies with one Mamba grenade, 15 times", + "ChallengeID": "63d3d4e0640c786dc267ef9b", + "ChallengeName": "Mamba Two Kills II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-mamba-twoenemies-kills", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "63d3d4ab640c786dc267ee1b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Two", + "One", + "Grenade", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 2 enemies with one Mamba grenade, 30 times", + "ChallengeID": "63d3d52e640c786dc267f00e", + "ChallengeName": "Mamba Two Kills III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "currentValue": 0, - "targetValue": 30 + "StatId": "overkill-mamba-twoenemies-kills", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff2c77f0dd5f341f41814", - "namespace": "pd3", - "name": "Shoot the Shield IV", - "description": "Break the glass on 60 enemy Riot Shields.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff2977f0dd5f341f41813" + ], + "PrerequisiteChallengeIds": [ + "63d3d4e0640c786dc267ef9b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Two", + "One", + "Grenade", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 2 enemies with one Mamba grenade, 50 times", + "ChallengeID": "63d3d569640c786dc267f0f2", + "ChallengeName": "Mamba Two Kills IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "value": 60 + "StatId": "overkill-mamba-twoenemies-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d3d52e640c786dc267f00e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Two", + "One", + "Grenade", + "Kill" ] }, - "reward": { - "rewardId": "63cff2c7c9460a0001ef78f8", - "stats": [ + { + "ChallengeDescription": "Defeat 2 enemies with one Mamba grenade, 75 times", + "ChallengeID": "63d3d5c3640c786dc267f167", + "ChallengeName": "Mamba Two Kills V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "overkill-mamba-twoenemies-kills", + "TargetProgress": 75 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3d569640c786dc267f0f2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Two", + "One", + "Grenade", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the VF7S", + "ChallengeID": "63d3d925640c786dc2681094", + "ChallengeName": "VF7S I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the VF7S", + "ChallengeID": "63d3d95d640c786dc2681095", + "ChallengeName": "VF7S II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "63d3d925640c786dc2681094" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" + ] }, - "tags": [ - "Combat", - "Riot", - "Break" - ], - "orderNo": 2147483804, - "createdAt": "2023-01-24T15:01:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the VF7S", + "ChallengeID": "63d3d9d3640c786dc2681185", + "ChallengeName": "VF7S III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff2977f0dd5f341f41813", - "isCompleted": false + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d3d95d640c786dc2681095" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the VF7S", + "ChallengeID": "63d3da14640c786dc26815b3", + "ChallengeName": "VF7S IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "riot-shield-break-glass", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6363b6754e9e44b7cd7f1bd2", - "namespace": "pd3", - "name": "Skill Research MS - Placeable - Sentry Gun", - "description": "Research Engineer Skill Line", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "engineer-research-code", - "value": 500 - } - ] - }, - "reward": { - "rewardId": "6363b675e4bd820001ce2aba", - "stats": [], - "items": [ - { - "itemId": "2b576f24e06949148ded46749e50377f", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "General", - "Meta" - ], - "orderNo": 367, - "createdAt": "2022-11-03T12:39:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "engineer-research-code", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa8ce7f0dd5f341f36d27", - "namespace": "pd3", - "name": "Slideshow I", - "description": "Slide a total distance of 100 meters.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "slide-distance", - "value": 10000 - } - ] - }, - "reward": { - "rewardId": "63cfa8cec9460a0001ef662c", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Slide", - "Distance" - ], - "orderNo": 2147483721, - "createdAt": "2023-01-24T09:45:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "slide-distance", - "currentValue": 0, - "targetValue": 10000 + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa9147f0dd5f341f36d68", - "namespace": "pd3", - "name": "Slideshow II", - "description": "Slide a total distance of 500 meters.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa8ce7f0dd5f341f36d27" + ], + "PrerequisiteChallengeIds": [ + "63d3d9d3640c786dc2681185" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the VF7S", + "ChallengeID": "63d3da5c640c786dc2682388", + "ChallengeName": "VF7S V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "value": 50000 + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63d3da14640c786dc26815b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" ] }, - "reward": { - "rewardId": "63cfa914c9460a0001ef662d", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the KU59", + "ChallengeID": "63d3dbe0640c786dc2682c24", + "ChallengeName": "KU59 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" + ] }, - "tags": [ - "Combat", - "Slide", - "Distance" - ], - "orderNo": 2147483722, - "createdAt": "2023-01-24T09:47:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the KU59", + "ChallengeID": "63d3dc30640c786dc2682dd5", + "ChallengeName": "KU59 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfa8ce7f0dd5f341f36d27", - "isCompleted": false + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3dbe0640c786dc2682c24" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the KU59", + "ChallengeID": "63d3dc5a640c786dc2682dd6", + "ChallengeName": "KU59 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "currentValue": 0, - "targetValue": 50000 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa94c7f0dd5f341f36e30", - "namespace": "pd3", - "name": "Slideshow III", - "description": "Slide a total distance of 1000 meters.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa9147f0dd5f341f36d68" + ], + "PrerequisiteChallengeIds": [ + "63d3dc30640c786dc2682dd5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the KU59", + "ChallengeID": "63d3dca0640c786dc268318c", + "ChallengeName": "KU59 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "value": 100000 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "63d3dc5a640c786dc2682dd6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" ] }, - "reward": { - "rewardId": "63cfa94cc9460a0001ef662e", - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the KU59", + "ChallengeID": "63d3dce2640c786dc26831fb", + "ChallengeName": "KU59 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 500 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3dca0640c786dc268318c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" + ] }, - "tags": [ - "Combat", - "Slide", - "Distance" - ], - "orderNo": 2147483723, - "createdAt": "2023-01-24T09:47:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Commando", + "ChallengeID": "63d3e43e640c786dc26879b4", + "ChallengeName": "Commando I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfa9147f0dd5f341f36d68", - "isCompleted": false + "StatId": "smg-commando-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Commando", + "ChallengeID": "63d3e4ce640c786dc2687b4d", + "ChallengeName": "Commando II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "currentValue": 0, - "targetValue": 100000 + "StatId": "smg-commando-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfa9837f0dd5f341f36eb8", - "namespace": "pd3", - "name": "Slideshow IV", - "description": "Slide a total distance of 5000 meters.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfa94c7f0dd5f341f36e30" + ], + "PrerequisiteChallengeIds": [ + "63d3e43e640c786dc26879b4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Commando", + "IL29" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Commando", + "ChallengeID": "63d3e50a640c786dc26888d6", + "ChallengeName": "Commando III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "value": 500000 + "StatId": "smg-commando-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d3e4ce640c786dc2687b4d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" ] }, - "reward": { - "rewardId": "63cfa983c9460a0001ef6630", - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Commando", + "ChallengeID": "63d3e559640c786dc2688945", + "ChallengeName": "Commando IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "smg-commando-kills", + "TargetProgress": 350 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3e50a640c786dc26888d6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" + ] }, - "tags": [ - "Combat", - "Slide", - "Distance" - ], - "orderNo": 2147483724, - "createdAt": "2023-01-24T09:48:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Commando", + "ChallengeID": "63d3e584640c786dc26889b7", + "ChallengeName": "Commando V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfa94c7f0dd5f341f36e30", - "isCompleted": false + "StatId": "smg-commando-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63d3e559640c786dc2688945" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the PC9", + "ChallengeID": "63d3e92c21282a2b1cd9a32f", + "ChallengeName": "PC9 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-distance", - "currentValue": 0, - "targetValue": 500000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfaa7f7f0dd5f341f3700f", - "namespace": "pd3", - "name": "Slideshow Shooter I", - "description": "Defeat an enemy while sliding", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "slide-kills", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfaa7fc9460a0001ef6631", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Slide", - "Kill" - ], - "orderNo": 2147483725, - "createdAt": "2023-01-24T09:53:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "slide-kills", - "currentValue": 0, - "targetValue": 1 + "StatId": "smg-pc9-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfaabf7f0dd5f341f37011", - "namespace": "pd3", - "name": "Slideshow Shooter II", - "description": "Defeat 10 enemies while sliding", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfaa7f7f0dd5f341f3700f" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the PC9", + "ChallengeID": "63d3e95e21282a2b1cd9a39c", + "ChallengeName": "PC9 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "value": 10 + "StatId": "smg-pc9-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3e92c21282a2b1cd9a32f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" ] }, - "reward": { - "rewardId": "63cfaabfc9460a0001ef6633", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the PC9", + "ChallengeID": "63d3e99c21282a2b1cd9ba8d", + "ChallengeName": "PC9 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "smg-pc9-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3e95e21282a2b1cd9a39c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" + ] }, - "tags": [ - "Combat", - "Slide", - "Kill" - ], - "orderNo": 2147483727, - "createdAt": "2023-01-24T09:54:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 350 enemies with the PC9", + "ChallengeID": "63d3e9e221282a2b1cd9bafc", + "ChallengeName": "PC9 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfaa7f7f0dd5f341f3700f", - "isCompleted": false + "StatId": "smg-pc9-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "63d3e99c21282a2b1cd9ba8d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the PC9", + "ChallengeID": "63d3ea1621282a2b1cd9bafd", + "ChallengeName": "PC9 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "currentValue": 0, - "targetValue": 10 + "StatId": "smg-pc9-kills", + "TargetProgress": 500 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfaaf67f0dd5f341f37012", - "namespace": "pd3", - "name": "Slideshow Shooter III", - "description": "Defeat 50 enemies while sliding", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfaabf7f0dd5f341f37011" + ], + "PrerequisiteChallengeIds": [ + "63d3e9e221282a2b1cd9bafc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Mosconi12C", + "ChallengeID": "63d3ea8621282a2b1cd9bf32", + "ChallengeName": "Mosconi12C I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "value": 30 + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" ] }, - "reward": { - "rewardId": "63cfaaf6c9460a0001ef6634", - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Mosconi12C", + "ChallengeID": "63d3eadf21282a2b1cd9c8a2", + "ChallengeName": "Mosconi12C II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3ea8621282a2b1cd9bf32" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" + ] }, - "tags": [ - "Combat", - "Slide", - "Kill" - ], - "orderNo": 2147483728, - "createdAt": "2023-01-24T09:55:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Mosconi12C", + "ChallengeID": "63d3eb2221282a2b1cd9ca02", + "ChallengeName": "Mosconi12C III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfaabf7f0dd5f341f37011", - "isCompleted": false + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d3eadf21282a2b1cd9c8a2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Mosconi12C", + "ChallengeID": "63d3eb5821282a2b1cd9ca8f", + "ChallengeName": "Mosconi12C IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "currentValue": 0, - "targetValue": 30 + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfab327f0dd5f341f37013", - "namespace": "pd3", - "name": "Slideshow Shooter IV", - "description": "Defeat 100 enemies while sliding", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfaaf67f0dd5f341f37012" + ], + "PrerequisiteChallengeIds": [ + "63d3eb2221282a2b1cd9ca02" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Mosconi12C", + "ChallengeID": "63d3ebac21282a2b1cd9cb0b", + "ChallengeName": "Mosconi12C V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "value": 60 + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63d3eb5821282a2b1cd9ca8f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" ] }, - "reward": { - "rewardId": "63cfab32c9460a0001ef6635", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Stryk7", + "ChallengeID": "63d3ec0421282a2b1cd9cbf4", + "ChallengeName": "Stryk7 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" + ] }, - "tags": [ - "Combat", - "Slide", - "Kill" - ], - "orderNo": 2147483729, - "createdAt": "2023-01-24T09:56:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Stryk7", + "ChallengeID": "63d3ec4c21282a2b1cd9cc69", + "ChallengeName": "Stryk7 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfaaf67f0dd5f341f37012", - "isCompleted": false + "StatId": "pistol-stryk7-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3ec0421282a2b1cd9cbf4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Stryk7", + "ChallengeID": "63d3ec8121282a2b1cd9cdb9", + "ChallengeName": "Stryk7 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "slide-kills", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff36c7f0dd5f341f41962", - "namespace": "pd3", - "name": "Smoking Ban I", - "description": "Affect an enemy with a Smoke Grenade", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smoke-grenade-affected-enemies", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cff36cc9460a0001ef78fc", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Grenade", - "IL30", - "Smoke" - ], - "orderNo": 2147483805, - "createdAt": "2023-01-24T15:04:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smoke-grenade-affected-enemies", - "currentValue": 0, - "targetValue": 1 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff3a37f0dd5f341f41963", - "namespace": "pd3", - "name": "Smoking Ban II", - "description": "Affect 10 different enemies with Smoke Grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff36c7f0dd5f341f41962" + ], + "PrerequisiteChallengeIds": [ + "63d3ec4c21282a2b1cd9cc69" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Stryk7", + "ChallengeID": "63d3ecae21282a2b1cd9cdba", + "ChallengeName": "Stryk7 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "value": 30 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "63d3ec8121282a2b1cd9cdb9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" ] }, - "reward": { - "rewardId": "63cff3a3c9460a0001ef78fe", - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Stryk7", + "ChallengeID": "63d3ecd421282a2b1cd9cdbb", + "ChallengeName": "Stryk7 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 500 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3ecae21282a2b1cd9cdba" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" + ] }, - "tags": [ - "Combat", - "Grenade", - "IL30", - "Smoke" - ], - "orderNo": 2147483806, - "createdAt": "2023-01-24T15:05:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 50 enemies with the SPM11", + "ChallengeID": "63d3edd821282a2b1cd9d0dc", + "ChallengeName": "SPM11 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff36c7f0dd5f341f41962", - "isCompleted": false + "StatId": "pistol-spm11-kills", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the SPM11", + "ChallengeID": "63d3ee2c21282a2b1cd9d22d", + "ChallengeName": "SPM11 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "currentValue": 0, - "targetValue": 30 + "StatId": "pistol-spm11-kills", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff3fd7f0dd5f341f41a4f", - "namespace": "pd3", - "name": "Smoking Ban III", - "description": "Affect 50 different enemies with Smoke Grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff3a37f0dd5f341f41963" + ], + "PrerequisiteChallengeIds": [ + "63d3edd821282a2b1cd9d0dc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the SPM11", + "ChallengeID": "63d3ee8e21282a2b1cd9d704", + "ChallengeName": "SPM11 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "value": 70 + "StatId": "pistol-spm11-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63d3ee2c21282a2b1cd9d22d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" ] }, - "reward": { - "rewardId": "63cff3fdc9460a0001ef7905", - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the SPM11", + "ChallengeID": "63d3eef021282a2b1cd9d771", + "ChallengeName": "SPM11 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "pistol-spm11-kills", + "TargetProgress": 350 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3ee8e21282a2b1cd9d704" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" + ] }, - "tags": [ - "Combat", - "Grenade", - "IL30", - "Smoke" - ], - "orderNo": 2147483807, - "createdAt": "2023-01-24T15:06:37Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 500 enemies with the SPM11", + "ChallengeID": "63d3ef2121282a2b1cd9d7de", + "ChallengeName": "SPM11 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff3a37f0dd5f341f41963", - "isCompleted": false + "StatId": "pistol-spm11-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63d3eef021282a2b1cd9d771" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the Bison", + "ChallengeID": "63d3ef9821282a2b1cd9d8b6", + "ChallengeName": "Bison I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "currentValue": 0, - "targetValue": 70 + "StatId": "revolver-bison-kills", + "TargetProgress": 50 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff43c7f0dd5f341f41ba8", - "namespace": "pd3", - "name": "Smoking Ban IV", - "description": "Affect 100 different enemies with Smoke Grenades.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cff3fd7f0dd5f341f41a4f" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 100 enemies with the Bison", + "ChallengeID": "63d3efcd21282a2b1cd9d8b7", + "ChallengeName": "Bison II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "value": 120 + "StatId": "revolver-bison-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3ef9821282a2b1cd9d8b6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "reward": { - "rewardId": "63cff43cc9460a0001ef7906", - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the Bison", + "ChallengeID": "63d3efff21282a2b1cd9d9b2", + "ChallengeName": "Bison III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "revolver-bison-kills", + "TargetProgress": 200 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3efcd21282a2b1cd9d8b7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" + ] }, - "tags": [ - "Combat", - "Grenade", - "IL30", - "Smoke" - ], - "orderNo": 2147483808, - "createdAt": "2023-01-24T15:07:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 350 enemies with the Bison", + "ChallengeID": "63d3f03221282a2b1cd9d9b3", + "ChallengeName": "Bison IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cff3fd7f0dd5f341f41a4f", - "isCompleted": false + "StatId": "revolver-bison-kills", + "TargetProgress": 350 } + ], + "PrerequisiteChallengeIds": [ + "63d3efff21282a2b1cd9d9b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Bison", + "ChallengeID": "63d3f05e21282a2b1cd9db20", + "ChallengeName": "Bison V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smoke-grenade-affected-enemies", - "currentValue": 0, - "targetValue": 120 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3edd821282a2b1cd9d0dc", - "namespace": "pd3", - "name": "SPM11 I", - "description": "Defeat 50 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3edd8f885db000189fd0d", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147483977, - "createdAt": "2023-01-27T15:29:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "revolver-bison-kills", + "TargetProgress": 500 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ee2c21282a2b1cd9d22d", - "namespace": "pd3", - "name": "SPM11 II", - "description": "Defeat 100 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3edd821282a2b1cd9d0dc" + ], + "PrerequisiteChallengeIds": [ + "63d3f03221282a2b1cd9d9b3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 10 enemies with the HET5", + "ChallengeID": "63d3f0c421282a2b1cd9de86", + "ChallengeName": "HET5 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 100 + "StatId": "overkill-het5-kills", + "TargetProgress": 10 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" ] }, - "reward": { - "rewardId": "63d3ee2cf885db000189fd0f", - "stats": [ + { + "ChallengeDescription": "Defeat 50 enemies with the HET5", + "ChallengeID": "63d3f10021282a2b1cd9de87", + "ChallengeName": "HET5 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "overkill-het5-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3f0c421282a2b1cd9de86" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147483978, - "createdAt": "2023-01-27T15:30:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 enemies with the HET5", + "ChallengeID": "63d3f13b21282a2b1cd9df75", + "ChallengeName": "HET5 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3edd821282a2b1cd9d0dc", - "isCompleted": false + "StatId": "overkill-het5-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d3f10021282a2b1cd9de87" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 200 enemies with the HET5", + "ChallengeID": "63d3f17f21282a2b1cd9e168", + "ChallengeName": "HET5 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "overkill-het5-kills", + "TargetProgress": 200 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ee8e21282a2b1cd9d704", - "namespace": "pd3", - "name": "SPM11 III", - "description": "Defeat 200 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ee2c21282a2b1cd9d22d" + ], + "PrerequisiteChallengeIds": [ + "63d3f13b21282a2b1cd9df75" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 300 enemies with the HET5", + "ChallengeID": "63d3f1ab21282a2b1cd9e27c", + "ChallengeName": "HET5 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 200 + "StatId": "overkill-het5-kills", + "TargetProgress": 300 } + ], + "PrerequisiteChallengeIds": [ + "63d3f17f21282a2b1cd9e168" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" ] }, - "reward": { - "rewardId": "63d3ee8ef885db000189fd92", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7804921282a2b1cef6368", + "ChallengeName": "Armored Transport Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637bbf7566148eeffe0ee9e8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147483979, - "createdAt": "2023-01-27T15:32:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7811521282a2b1cef64ac", + "ChallengeName": "Armored Transport Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ee2c21282a2b1cd9d22d", - "isCompleted": false + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63d7804921282a2b1cef6368" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7816621282a2b1cef6660", + "ChallengeName": "Armored Transport Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3eef021282a2b1cd9d771", - "namespace": "pd3", - "name": "SPM11 IV", - "description": "Defeat 350 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ee8e21282a2b1cd9d704" + ], + "PrerequisiteChallengeIds": [ + "63d7811521282a2b1cef64ac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d781a921282a2b1cef6661", + "ChallengeName": "Armored Transport Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 350 + "StatId": "armoredtransport-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d7816621282a2b1cef6660" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63d3eef0f885db000189fd97", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d787a621282a2b1cefac89", + "ChallengeName": "Armored Transport Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637cd2b32bae6007875cf6fd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147483980, - "createdAt": "2023-01-27T15:34:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d787ee21282a2b1cefad62", + "ChallengeName": "Armored Transport Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ee8e21282a2b1cd9d704", - "isCompleted": false + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d787a621282a2b1cefac89" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7883421282a2b1cefad63", + "ChallengeName": "Armored Transport Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50e1d7f4d322dc61d7284", - "namespace": "pd3", - "name": "SPM11 Master", - "description": "Complete a heist with all base mods unlocked for the SPM11 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50e1dae93c90001c99022", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL38", - "Meta", - "Mod", - "SPM11", - "Unlock" - ], - "orderNo": 2147484280, - "createdAt": "2023-02-09T15:15:41Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b5147f4d322dc619a229", - "namespace": "pd3", - "name": "SPM11 Rookie", - "description": "Complete a heist using the SPM11 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b514ae93c90001c9736f", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL38", - "Meta", - "Mod", - "SPM11", - "Unlock" - ], - "orderNo": 2147484242, - "createdAt": "2023-02-08T14:43:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-mod-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 65 } + ], + "PrerequisiteChallengeIds": [ + "63d787ee21282a2b1cefad62" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Armored", + "Transport" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2b05e7f0dd5f341fd20d2", - "namespace": "pd3", - "name": "SPM11 Suppressed I", - "description": "Defeat 10 enemies with the suppressor equipped on the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-suppressor-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2b05e0c06b20001e779de", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11", - "Suppressor" - ], - "orderNo": 2147483927, - "createdAt": "2023-01-26T16:54:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-suppressor-kills", - "currentValue": 0, - "targetValue": 10 + }, + { + "ChallengeDescription": "Beat Armored Transport 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7887c21282a2b1cefaf8d", + "ChallengeName": "Armored Transport Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-loud-veryhard", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2b09c7f0dd5f341fd20d3", - "namespace": "pd3", - "name": "SPM11 Suppressed II", - "description": "Defeat 50 enemies with the suppressor equipped on the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2b05e7f0dd5f341fd20d2" + ], + "PrerequisiteChallengeIds": [ + "63d7883421282a2b1cefad63" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Armored", + "Transport", + "Very", + "Hard" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d7895221282a2b1cefb392", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "value": 50 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "637cd9882bae6007875d0a7e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "reward": { - "rewardId": "63d2b09c0c06b20001e779e1", - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d789af21282a2b1cefb3ff", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 25 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7895221282a2b1cefb392" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Armored", + "Transport" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11", - "Suppressor" - ], - "orderNo": 2147483928, - "createdAt": "2023-01-26T16:55:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Armored Transport 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d78a1621282a2b1cefc382", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2b05e7f0dd5f341fd20d2", - "isCompleted": false + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d789af21282a2b1cefb3ff" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Armored Transport 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d78a7521282a2b1cefc5ae", + "ChallengeName": "Armored Transport Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "armoredtransport-loud-overkill", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2b0f07f0dd5f341fd20d4", - "namespace": "pd3", - "name": "SPM11 Suppressed III", - "description": "Defeat 100 enemies with the suppressor equipped on the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2b09c7f0dd5f341fd20d3" + ], + "PrerequisiteChallengeIds": [ + "63d78a1621282a2b1cefc382" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Armored", + "Transport" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d78b2721282a2b1cefca85", + "ChallengeName": "Branch Bank Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "value": 100 + "StatId": "branchbank-loud-normal", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "62eb81f1a74ddca83bcf49c6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d2b0f00c06b20001e779e2", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d78b8e21282a2b1cefd99e", + "ChallengeName": "Branch Bank Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "branchbank-loud-normal", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d78b2721282a2b1cefca85" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11", - "Suppressor" - ], - "orderNo": 2147483929, - "createdAt": "2023-01-26T16:57:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d78bdc21282a2b1cefdbc1", + "ChallengeName": "Branch Bank Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2b09c7f0dd5f341fd20d3", - "isCompleted": false + "StatId": "branchbank-loud-normal", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63d78b8e21282a2b1cefd99e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d78c5121282a2b1cefddec", + "ChallengeName": "Branch Bank Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "branchbank-loud-normal", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2b11d7f0dd5f341fd20d5", - "namespace": "pd3", - "name": "SPM11 Suppressed IV", - "description": "Defeat 200 enemies with the suppressor equipped on the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2b0f07f0dd5f341fd20d4" + ], + "PrerequisiteChallengeIds": [ + "63d78bdc21282a2b1cefdbc1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d78d5821282a2b1cefe08a", + "ChallengeName": "Branch Bank Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "value": 200 + "StatId": "branchbank-loud-hard", + "TargetProgress": 55 } + ], + "PrerequisiteChallengeIds": [ + "62eb8849a74ddca83bcf4a3e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d2b11d0c06b20001e779e3", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d78d9121282a2b1cefef48", + "ChallengeName": "Branch Bank Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "branchbank-loud-hard", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d78d5821282a2b1cefe08a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11", - "Suppressor" - ], - "orderNo": 2147483930, - "createdAt": "2023-01-26T16:58:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d78dd821282a2b1ceff100", + "ChallengeName": "Branch Bank Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2b0f07f0dd5f341fd20d4", - "isCompleted": false + "StatId": "branchbank-loud-hard", + "TargetProgress": 85 } + ], + "PrerequisiteChallengeIds": [ + "63d78d9121282a2b1cefef48" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d78e2721282a2b1ceff65c", + "ChallengeName": "Branch Bank Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "branchbank-loud-hard", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2b1507f0dd5f341fd20d6", - "namespace": "pd3", - "name": "SPM11 Suppressed V", - "description": "Defeat 400 enemies with the suppressor equipped on the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2b11d7f0dd5f341fd20d5" + ], + "PrerequisiteChallengeIds": [ + "63d78dd821282a2b1ceff100" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7903321282a2b1cf00cb2", + "ChallengeName": "Branch Bank Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "value": 400 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 35 } + ], + "PrerequisiteChallengeIds": [ + "62eb8d61a74ddca83bcf4a67" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d2b1500c06b20001e779e4", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7907821282a2b1cf01b13", + "ChallengeName": "Branch Bank Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7903321282a2b1cf00cb2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11", - "Suppressor" - ], - "orderNo": 2147483931, - "createdAt": "2023-01-26T16:58:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d790f821282a2b1cf01b81", + "ChallengeName": "Branch Bank Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2b11d7f0dd5f341fd20d5", - "isCompleted": false + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 65 } + ], + "PrerequisiteChallengeIds": [ + "63d7907821282a2b1cf01b13" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7917421282a2b1cf01c6b", + "ChallengeName": "Branch Bank Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-suppressor-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "branchbank-loud-veryhard", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ef2121282a2b1cd9d7de", - "namespace": "pd3", - "name": "SPM11 V", - "description": "Defeat 500 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3eef021282a2b1cd9d771" + ], + "PrerequisiteChallengeIds": [ + "63d790f821282a2b1cf01b81" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d79a1a21282a2b1cf033b2", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 500 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62eb8fbba74ddca83bcf4a77" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "63d3ef21f885db000189fdb6", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d79a6621282a2b1cf03594", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 25 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d79a1a21282a2b1cf033b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147483981, - "createdAt": "2023-01-27T15:34:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d79ad921282a2b1cf03ca5", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3eef021282a2b1cd9d771", - "isCompleted": false + "StatId": "branchbank-loud-overkill", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d79a6621282a2b1cf03594" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d79b2f21282a2b1cf03e56", + "ChallengeName": "Branch Bank Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 500 + "StatId": "branchbank-loud-overkill", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f2f67f4d322dc61cb3a7", - "namespace": "pd3", - "name": "SPM11 Veteran", - "description": "Complete a heist with four mod slots filled on the SPM11 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f2f6ae93c90001c98ae8", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL38", - "Meta", - "Mod", - "SPM11", - "Unlock" - ], - "orderNo": 2147484259, - "createdAt": "2023-02-09T13:19:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-spm11-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d7c183c1792981dce993", - "namespace": "pd3", - "name": "SPM11 VI", - "description": "Defeat 750 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ef2121282a2b1cd9d7de" + ], + "PrerequisiteChallengeIds": [ + "63d79ad921282a2b1cf03ca5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d79bfa21282a2b1cf04076", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 750 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "62ed3738a74ddca83bcf5666" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "6411d7c1e2027d0001c0f808", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d79c5c21282a2b1cf04378", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d79bfa21282a2b1cf04076" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147484362, - "createdAt": "2023-03-15T14:35:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d79cac21282a2b1cf044c9", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ef2121282a2b1cd9d7de", - "isCompleted": false + "StatId": "branchbank-stealth-normal", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63d79c5c21282a2b1cf04378" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d79cef21282a2b1cf04760", + "ChallengeName": "Branch Bank Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "branchbank-stealth-normal", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d7fb83c1792981dcec5b", - "namespace": "pd3", - "name": "SPM11 VII", - "description": "Defeat 1000 enemies with the SPM11", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d7c183c1792981dce993" + ], + "PrerequisiteChallengeIds": [ + "63d79cac21282a2b1cf044c9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d79eac21282a2b1cf051d7", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "value": 1000 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 55 } + ], + "PrerequisiteChallengeIds": [ + "62f0f3a5a74ddca83bcf5b39" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "6411d7fbe2027d0001c0f809", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d79ef721282a2b1cf05360", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d79eac21282a2b1cf051d7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Combat", - "IL38", - "Kill", - "SPM11" - ], - "orderNo": 2147484363, - "createdAt": "2023-03-15T14:36:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d79f5e21282a2b1cf05515", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "6411d7c183c1792981dce993", - "isCompleted": false + "StatId": "branchbank-stealth-hard", + "TargetProgress": 85 } + ], + "PrerequisiteChallengeIds": [ + "63d79ef721282a2b1cf05360" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d79fd721282a2b1cf0573d", + "ChallengeName": "Branch Bank Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-spm11-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf35bcccf1de730209d", - "namespace": "pd3", - "name": "Station Optional Objective I", - "description": "Complete the heist in less than 7 minutes.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf3cb1af600014c5acd", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Station", - "Optional" - ], - "orderNo": 2147484471, - "createdAt": "2023-11-30T11:07:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf49c6dfc822b7f52f8", - "namespace": "pd3", - "name": "Station Optional Objective II", - "description": "Complete the heist without any crew member killing anyone.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf4d54b8900011f7e21", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Station", - "Optional" - ], - "orderNo": 2147484475, - "createdAt": "2023-11-30T11:07:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf4f46e611ca4072c2a", - "namespace": "pd3", - "name": "Station Optional Objective III", - "description": "Complete the heist on Overkill with all the loot and without any crew member killing anyone.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf48f984b000108aa43", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Station", - "Optional" - ], - "orderNo": 2147484476, - "createdAt": "2023-11-30T11:07:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf3467287c4db2bc107", - "namespace": "pd3", - "name": "Station Stealthy I", - "description": "Beat Station on Normal or higher difficulty before the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf3bc15df0001eeb69c", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484470, - "createdAt": "2023-11-30T11:07:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 1 + "StatId": "branchbank-stealth-hard", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfa56fdd7be8e288a1b", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender I", - "description": "Beat Station 15 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf3467287c4db2bc107" + ], + "PrerequisiteChallengeIds": [ + "63d79f5e21282a2b1cf05515" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d7b3e821282a2b1cf11027", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 15 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 35 } + ], + "PrerequisiteChallengeIds": [ + "62f0f6c1a74ddca83bcf5b55" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "65686cfa8c7cb700014b8695", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d7b43421282a2b1cf11028", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7b3e821282a2b1cf11027" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484484, - "createdAt": "2023-11-30T11:07:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d7b48f21282a2b1cf11fcb", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf3467287c4db2bc107", - "isCompleted": false + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 65 } + ], + "PrerequisiteChallengeIds": [ + "63d7b43421282a2b1cf11028" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d7b50e21282a2b1cf121f3", + "ChallengeName": "Branch Bank Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 15 + "StatId": "branchbank-stealth-veryhard", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfa92e1ea9e5c215315", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender II", - "description": "Beat Station 30 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfa56fdd7be8e288a1b" + ], + "PrerequisiteChallengeIds": [ + "63d7b48f21282a2b1cf11fcb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d7b6c721282a2b1cf13b7e", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 30 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62f0f9c9a74ddca83bcf5b7a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "reward": { - "rewardId": "65686cfaeb244a00018970b7", - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d7b72f21282a2b1cf13c59", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 25 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7b6c721282a2b1cf13b7e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484485, - "createdAt": "2023-11-30T11:07:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Branch Bank 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d7b77421282a2b1cf13cc6", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfa56fdd7be8e288a1b", - "isCompleted": false + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d7b72f21282a2b1cf13c59" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Branch Bank 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d7b7e521282a2b1cf13d33", + "ChallengeName": "Branch Bank Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 30 + "StatId": "branchbank-stealth-overkill", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfbf78542b0d6155f62", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender III", - "description": "Beat Station 45 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfa92e1ea9e5c215315" + ], + "PrerequisiteChallengeIds": [ + "63d7b77421282a2b1cf13cc6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Branch", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d7b9de21282a2b1cf15f5d", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 45 + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "62cd5e0d28fe1154bf4c1374" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686cfb0aa8ea00019739a7", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d7dfeb21282a2b1cf26cf5", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7b9de21282a2b1cf15f5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484486, - "createdAt": "2023-11-30T11:07:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d7e05821282a2b1cf27e42", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfa92e1ea9e5c215315", - "isCompleted": false + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63d7dfeb21282a2b1cf26cf5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d7e0d621282a2b1cf2847f", + "ChallengeName": "Jewelry Store Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 45 + "StatId": "jewelrystore-loud-normal", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d03c29144c59ea90c06", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender IV", - "description": "Beat Station 60 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfbf78542b0d6155f62" + ], + "PrerequisiteChallengeIds": [ + "63d7e05821282a2b1cf27e42" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e18821282a2b1cf2884a", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 60 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 55 } + ], + "PrerequisiteChallengeIds": [ + "62cd660128fe1154bf4c143b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686d03eb244a00018970b8", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e1d321282a2b1cf28924", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7e18821282a2b1cf2884a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484500, - "createdAt": "2023-11-30T11:07:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e27621282a2b1cf28a68", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfbf78542b0d6155f62", - "isCompleted": false + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 85 } + ], + "PrerequisiteChallengeIds": [ + "63d7e1d321282a2b1cf28924" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e2c021282a2b1cf28ad5", + "ChallengeName": "Jewelry Store Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 60 + "StatId": "jewelrystore-loud-hard", + "TargetProgress": 100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d04d0ad8d2a2fd380d5", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender V", - "description": "Beat Station 80 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d03c29144c59ea90c06" + ], + "PrerequisiteChallengeIds": [ + "63d7e27621282a2b1cf28a68" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e38921282a2b1cf28d00", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 80 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 35 } + ], + "PrerequisiteChallengeIds": [ + "62cd827f28fe1154bf4c1609" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686d040bb829000183bafa", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e3d621282a2b1cf28eb2", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7e38921282a2b1cf28d00" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484504, - "createdAt": "2023-11-30T11:07:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e44621282a2b1cf29d97", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d03c29144c59ea90c06", - "isCompleted": false + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 65 } + ], + "PrerequisiteChallengeIds": [ + "63d7e3d621282a2b1cf28eb2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d7e4dd21282a2b1cf29fc1", + "ChallengeName": "Jewelry Store Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 80 + "StatId": "jewelrystore-loud-veryhard", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d05467287c4db2bc10b", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender VI", - "description": "Beat Station 100 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d04d0ad8d2a2fd380d5" + ], + "PrerequisiteChallengeIds": [ + "63d7e44621282a2b1cf29d97" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d7e58221282a2b1cf2a249", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 100 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [ + "62cd8b8728fe1154bf4c1648" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686d050ed7ad000120bea0", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d7e5cd21282a2b1cf2a557", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 25 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7e58221282a2b1cf2a249" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484507, - "createdAt": "2023-11-30T11:07:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d7e62321282a2b1cf2a5cf", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d04d0ad8d2a2fd380d5", - "isCompleted": false + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 30 } + ], + "PrerequisiteChallengeIds": [ + "63d7e5cd21282a2b1cf2a557" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d7e6b421282a2b1cf2b5a0", + "ChallengeName": "Jewelry Store Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 100 + "StatId": "jewelrystore-loud-overkill", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0afef2e2aa25ce284d", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender VII", - "description": "Beat Station 120 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d05467287c4db2bc10b" + ], + "PrerequisiteChallengeIds": [ + "63d7e62321282a2b1cf2a5cf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d7e7bc21282a2b1cf2ba7c", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 120 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "62cfe76028fe1154bf4c2822" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686d0a4fa6b70001cd25b3", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d7e87d21282a2b1cf2ca50", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 100 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d7e7bc21282a2b1cf2ba7c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Normal", - "Station" - ], - "orderNo": 2147484520, - "createdAt": "2023-11-30T11:07:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d7e8b621282a2b1cf2ca51", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d05467287c4db2bc10b", - "isCompleted": false + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 120 } + ], + "PrerequisiteChallengeIds": [ + "63d7e87d21282a2b1cf2ca50" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d7e8f321282a2b1cf2cb2d", + "ChallengeName": "Jewelry Store Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 120 + "StatId": "jewelrystore-stealth-normal", + "TargetProgress": 150 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0c26756e51ee177592", - "namespace": "pd3", - "name": "Station Stealthy I: Repeat Offender VIII", - "description": "Beat Station 150 times on Normal or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0afef2e2aa25ce284d" + ], + "PrerequisiteChallengeIds": [ + "63d7e8b621282a2b1cf2ca51" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8d81821282a2b1cf90005", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "value": 150 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 55 } + ], + "PrerequisiteChallengeIds": [ + "62cfead028fe1154bf4c2825" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686d0ca479a7000101c97d", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8d85e21282a2b1cf9014a", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 70 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8d81821282a2b1cf90005" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Normal", - "Station" - ], - "orderNo": 2147484525, - "createdAt": "2023-11-30T11:07:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8d8eb21282a2b1cf904b2", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0afef2e2aa25ce284d", - "isCompleted": false + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 85 } + ], + "PrerequisiteChallengeIds": [ + "63d8d85e21282a2b1cf9014a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8d93621282a2b1cf905f6", + "ChallengeName": "Jewelry Store Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-normal", - "currentValue": 0, - "targetValue": 150 + "StatId": "jewelrystore-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d8d8eb21282a2b1cf904b2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Jewerly", + "Store", + "Hard" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf4467287c4db2bc109", - "namespace": "pd3", - "name": "Station Stealthy II", - "description": "Beat Station on Hard or higher difficulty before the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf406a506000166a0aa", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Station" - ], - "orderNo": 2147484473, - "createdAt": "2023-11-30T11:07:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "Beat Jewelry Store 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8dd7121282a2b1cf9396b", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 35 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf51b19600f98d3872e", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender I", - "description": "Beat Station 10 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf4467287c4db2bc109" + ], + "PrerequisiteChallengeIds": [ + "62d0153928fe1154bf4c2a82" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8de3c21282a2b1cf94914", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 10 + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d8dd7121282a2b1cf9396b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686cf55369de0001f0ba8e", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8ded521282a2b1cf949f5", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 65 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8de3c21282a2b1cf94914" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Hard" - ], - "orderNo": 2147484478, - "createdAt": "2023-11-30T11:07:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d8df5721282a2b1cf94a65", + "ChallengeName": "Jewelry Store Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf4467287c4db2bc109", - "isCompleted": false + "StatId": "jewelrystore-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63d8ded521282a2b1cf949f5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d8e06b21282a2b1cf95bf3", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 10 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf7d0ad8d2a2fd380d1", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender II", - "description": "Beat Station 20 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf51b19600f98d3872e" + ], + "PrerequisiteChallengeIds": [ + "62d01a4f28fe1154bf4c2ad5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d8e0b421282a2b1cf95c61", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 20 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63d8e06b21282a2b1cf95bf3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" ] }, - "reward": { - "rewardId": "65686cf774e34400016c218a", - "stats": [ + { + "ChallengeDescription": "Beat Jewelry Store 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d8e13921282a2b1cf960a2", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8e0b421282a2b1cf95c61" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewelry", + "Store" + ] }, - "tags": [ - "Map", - "Heist", - "Station", - "Stealth", - "Hard" - ], - "orderNo": 2147484481, - "createdAt": "2023-11-30T11:07:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Jewelry Store 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d8e1c321282a2b1cf96fdf", + "ChallengeName": "Jewelry Store Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf51b19600f98d3872e", - "isCompleted": false + "StatId": "jewelrystore-stealth-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63d8e13921282a2b1cf960a2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Jewerly", + "Store" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d8e6b821282a2b1cf99d72", + "ChallengeName": "Art Gallery Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 20 + "StatId": "artgallery-loud-normal", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfe98d0b724c6df8ca5", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender III", - "description": "Beat Station 30 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf7d0ad8d2a2fd380d1" + ], + "PrerequisiteChallengeIds": [ + "62e8ec64a74ddca83bcf3fb9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d8e89621282a2b1cf9b37b", + "ChallengeName": "Art Gallery Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 30 + "StatId": "artgallery-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d8e6b821282a2b1cf99d72" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686cfe4554050001061f7b", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d8e95121282a2b1cf9b7a2", + "ChallengeName": "Art Gallery Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "artgallery-loud-normal", + "TargetProgress": 120 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8e89621282a2b1cf9b37b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Station", - "Stealth", - "Heist", - "Hard" - ], - "orderNo": 2147484492, - "createdAt": "2023-11-30T11:07:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d8e9a721282a2b1cf9b7a3", + "ChallengeName": "Art Gallery Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf7d0ad8d2a2fd380d1", - "isCompleted": false + "StatId": "artgallery-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63d8e95121282a2b1cf9b7a2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8eab621282a2b1cf9be97", + "ChallengeName": "Art Gallery Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 30 + "StatId": "artgallery-loud-hard", + "TargetProgress": 55 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cffe2096738d1318f36", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender IV", - "description": "Beat Station 40 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfe98d0b724c6df8ca5" + ], + "PrerequisiteChallengeIds": [ + "62e8f11ba74ddca83bcf3fce" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8eb0b21282a2b1cf9be98", + "ChallengeName": "Art Gallery Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 40 + "StatId": "artgallery-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63d8eab621282a2b1cf9be97" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686cff6b6dac0001745e83", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8eb6721282a2b1cf9c230", + "ChallengeName": "Art Gallery Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "artgallery-loud-hard", + "TargetProgress": 85 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8eb0b21282a2b1cf9be98" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Station", - "Hard" - ], - "orderNo": 2147484493, - "createdAt": "2023-11-30T11:07:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8ebb121282a2b1cf9c458", + "ChallengeName": "Art Gallery Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfe98d0b724c6df8ca5", - "isCompleted": false + "StatId": "artgallery-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d8eb6721282a2b1cf9c230" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8f0c621282a2b1cf9d390", + "ChallengeName": "Art Gallery Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 40 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 35 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0598d0b724c6df8ca7", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender V", - "description": "Beat Station 55 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cffe2096738d1318f36" + ], + "PrerequisiteChallengeIds": [ + "62ea42eaa74ddca83bcf4219" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8f17121282a2b1cf9d4e4", + "ChallengeName": "Art Gallery Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 55 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d8f0c621282a2b1cf9d390" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686d05efe376000158ccca", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8f1ec21282a2b1cf9d63f", + "ChallengeName": "Art Gallery Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 65 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d8f17121282a2b1cf9d4e4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Station", - "Hard" - ], - "orderNo": 2147484506, - "createdAt": "2023-11-30T11:07:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d8f24221282a2b1cf9d640", + "ChallengeName": "Art Gallery Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cffe2096738d1318f36", - "isCompleted": false + "StatId": "artgallery-loud-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63d8f1ec21282a2b1cf9d63f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9166121282a2b1cfa534f", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 55 + "StatId": "artgallery-loud-overkill", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d09467287c4db2bc10f", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender VI", - "description": "Beat Station 70 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0598d0b724c6df8ca7" + ], + "PrerequisiteChallengeIds": [ + "62ea457aa74ddca83bcf421d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9169f21282a2b1cfa5497", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 70 + "StatId": "artgallery-loud-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63d9166121282a2b1cfa534f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686d09da1a6500014bd459", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d916f021282a2b1cfa5574", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "artgallery-loud-overkill", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d9169f21282a2b1cfa5497" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Station", - "Hard" - ], - "orderNo": 2147484518, - "createdAt": "2023-11-30T11:07:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9173521282a2b1cfa59c3", + "ChallengeName": "Art Gallery Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0598d0b724c6df8ca7", - "isCompleted": false + "StatId": "artgallery-loud-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63d916f021282a2b1cfa5574" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d9181621282a2b1cfa5f6d", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 70 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0c5bcccf1de73020a3", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender VII", - "description": "Beat Station 85 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d09467287c4db2bc10f" + ], + "PrerequisiteChallengeIds": [ + "62ea5d78a74ddca83bcf427e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d9186821282a2b1cfa6122", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 85 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d9181621282a2b1cfa5f6d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686d0de6e84400011f7b70", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d918b421282a2b1cfa61ff", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "artgallery-stealth-normal", + "TargetProgress": 120 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d9186821282a2b1cfa6122" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Hard" - ], - "orderNo": 2147484526, - "createdAt": "2023-11-30T11:07:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d9190521282a2b1cfa65eb", + "ChallengeName": "Art Gallery Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d09467287c4db2bc10f", - "isCompleted": false + "StatId": "artgallery-stealth-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63d918b421282a2b1cfa61ff" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d91b6f21282a2b1cfa72d4", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 85 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 55 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ff78542b0d6155f66", - "namespace": "pd3", - "name": "Station Stealthy II: Repeat Offender VIII", - "description": "Beat Station 100 times on Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0c5bcccf1de73020a3" + ], + "PrerequisiteChallengeIds": [ + "62ea6181a74ddca83bcf4286" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d91bbf21282a2b1cfa760d", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 100 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63d91b6f21282a2b1cfa72d4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686d0faf5bf9000182f7e8", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d91bfa21282a2b1cfa7c85", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "artgallery-stealth-hard", + "TargetProgress": 85 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d91bbf21282a2b1cfa760d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Hard" - ], - "orderNo": 2147484534, - "createdAt": "2023-11-30T11:07:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d91c4021282a2b1cfa7d60", + "ChallengeName": "Art Gallery Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0c5bcccf1de73020a3", - "isCompleted": false + "StatId": "artgallery-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d91bfa21282a2b1cfa7c85" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d91fd421282a2b1cfa8a35", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 100 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf3d0ad8d2a2fd380cf", - "namespace": "pd3", - "name": "Station Stealthy III", - "description": "Beat Station on Very Hard or higher difficulty before the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf34a48c30001606559", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484472, - "createdAt": "2023-11-30T11:07:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 1 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 35 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfcc29144c59ea90c02", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender I", - "description": "Beat Station 5 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf3d0ad8d2a2fd380cf" + ], + "PrerequisiteChallengeIds": [ + "62ea7be9a74ddca83bcf44bf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d9201721282a2b1cfa8aa3", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 5 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d91fd421282a2b1cfa8a35" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686cfc2697b30001ac3fd6", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d9207a21282a2b1cfa8f67", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 65 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d9201721282a2b1cfa8aa3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484490, - "createdAt": "2023-11-30T11:07:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d920ca21282a2b1cfa9055", + "ChallengeName": "Art Gallery Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf3d0ad8d2a2fd380cf", - "isCompleted": false + "StatId": "artgallery-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63d9207a21282a2b1cfa8f67" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d925a021282a2b1cfa9935", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 5 + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfefef2e2aa25ce284b", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender II", - "description": "Beat Station 10 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfcc29144c59ea90c02" + ], + "PrerequisiteChallengeIds": [ + "62ea7f97a74ddca83bcf45a5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d9260f21282a2b1cfa9a20", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 10 + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63d925a021282a2b1cfa9935" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "reward": { - "rewardId": "65686cfe0ed7ad000120be9f", - "stats": [ + { + "ChallengeDescription": "Beat Art Gallery 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d9267421282a2b1cfa9b10", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d9260f21282a2b1cfa9a20" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" + ] }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Very", - "Hard", - "Station" - ], - "orderNo": 2147484491, - "createdAt": "2023-11-30T11:07:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Art Gallery 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63d926b421282a2b1cfa9bea", + "ChallengeName": "Art Gallery Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfcc29144c59ea90c02", - "isCompleted": false + "StatId": "artgallery-stealth-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63d9267421282a2b1cfa9b10" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Art", + "Gallery" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d9301321282a2b1cfabcdc", + "ChallengeName": "Night Club Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 10 + "StatId": "nightclub-loud-normal", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0256fdd7be8e288a1f", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender III", - "description": "Beat Station 15 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfefef2e2aa25ce284b" + ], + "PrerequisiteChallengeIds": [ + "62f26ebda74ddca83bcf6987" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d9305121282a2b1cfabcdd", + "ChallengeName": "Night Club Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 15 + "StatId": "nightclub-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d9301321282a2b1cfabcdc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d024ac7d600016d9a49", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d9309721282a2b1cfabf0e", + "ChallengeName": "Night Club Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "nightclub-loud-normal", + "TargetProgress": 120 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d9305121282a2b1cfabcdd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484497, - "createdAt": "2023-11-30T11:07:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63d930c321282a2b1cfabf0f", + "ChallengeName": "Night Club Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cfefef2e2aa25ce284b", - "isCompleted": false + "StatId": "nightclub-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63d9309721282a2b1cfabf0e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93ae321282a2b1cfaeff5", + "ChallengeName": "Night Club Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 15 + "StatId": "nightclub-loud-hard", + "TargetProgress": 55 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0256fdd7be8e288a21", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender IV", - "description": "Beat Station 25 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0256fdd7be8e288a1f" + ], + "PrerequisiteChallengeIds": [ + "62f4e806a74ddca83bcf73bf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93b5521282a2b1cfaf100", + "ChallengeName": "Night Club Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 25 + "StatId": "nightclub-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63d93ae321282a2b1cfaeff5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d02799e2d000125ec7f", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93bb621282a2b1cfaf101", + "ChallengeName": "Night Club Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "nightclub-loud-hard", + "TargetProgress": 85 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d93b5521282a2b1cfaf100" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484498, - "createdAt": "2023-11-30T11:07:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93bf821282a2b1cfaf24b", + "ChallengeName": "Night Club Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0256fdd7be8e288a1f", - "isCompleted": false + "StatId": "nightclub-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d93bb621282a2b1cfaf101" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93e4c21282a2b1cfafa14", + "ChallengeName": "Night Club Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 25 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 35 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0426756e51ee17758a", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender V", - "description": "Beat Station 35 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0256fdd7be8e288a21" + ], + "PrerequisiteChallengeIds": [ + "62f4ed1da74ddca83bcf73f0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93eb321282a2b1cfafab6", + "ChallengeName": "Night Club Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 35 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63d93e4c21282a2b1cfafa14" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d04cb1af600014c5ace", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93eef21282a2b1cfafab7", + "ChallengeName": "Night Club Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 65 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d93eb321282a2b1cfafab6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Station", - "Stealth", - "Very", - "Hard" - ], - "orderNo": 2147484503, - "createdAt": "2023-11-30T11:07:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63d93f2621282a2b1cfafab8", + "ChallengeName": "Night Club Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0256fdd7be8e288a21", - "isCompleted": false + "StatId": "nightclub-loud-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63d93eef21282a2b1cfafab7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9427121282a2b1cfb02dd", + "ChallengeName": "Night Club Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 35 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0826756e51ee177590", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender VI", - "description": "Beat Station 50 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0426756e51ee17758a" + ], + "PrerequisiteChallengeIds": [ + "62f4efd5a74ddca83bcf7402" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d942b721282a2b1cfb02de", + "ChallengeName": "Night Club Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 50 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63d9427121282a2b1cfb02dd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d08cb1af600014c5acf", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9433c21282a2b1cfb02df", + "ChallengeName": "Night Club Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "nightclub-loud-overkill", + "TargetProgress": 30 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d942b721282a2b1cfb02de" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484514, - "createdAt": "2023-11-30T11:07:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63d9437221282a2b1cfb02e0", + "ChallengeName": "Night Club Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0426756e51ee17758a", - "isCompleted": false + "StatId": "nightclub-loud-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63d9433c21282a2b1cfb02df" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d945b421282a2b1cfb0ee9", + "ChallengeName": "Night Club Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 50 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 80 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0cd0ad8d2a2fd380db", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender VII", - "description": "Beat Station 65 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0826756e51ee177590" + ], + "PrerequisiteChallengeIds": [ + "62f4f3f0a74ddca83bcf7536" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d945e421282a2b1cfb0eea", + "ChallengeName": "Night Club Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "value": 65 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d945b421282a2b1cfb0ee9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d0c2d2f8f00011342e4", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d9463c21282a2b1cfb1413", + "ChallengeName": "Night Club Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "nightclub-stealth-normal", + "TargetProgress": 120 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d945e421282a2b1cfb0eea" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63d9466621282a2b1cfb1414", + "ChallengeName": "Night Club Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Night", + "Club" + ] + }, + { + "ChallengeDescription": "Beat Night Club 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d9477a21282a2b1cfb1f5b", + "ChallengeName": "Night Club Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-stealth-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [ + "62f4f67aa74ddca83bcf757b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484523, - "createdAt": "2023-11-30T11:07:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d947b521282a2b1cfb2734", + "ChallengeName": "Night Club Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0826756e51ee177590", - "isCompleted": false + "StatId": "nightclub-stealth-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63d9477a21282a2b1cfb1f5b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d947f021282a2b1cfb2735", + "ChallengeName": "Night Club Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-hard", - "currentValue": 0, - "targetValue": 65 + "StatId": "nightclub-stealth-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0dfef2e2aa25ce284f", - "namespace": "pd3", - "name": "Station Stealthy III: Repeat Offender VIII", - "description": "Beat Station 80 times on Very Hard or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0cd0ad8d2a2fd380db" + ], + "PrerequisiteChallengeIds": [ + "63d947b521282a2b1cfb2734" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63d9483b21282a2b1cfb2aa0", + "ChallengeName": "Night Club Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "value": 80 + "StatId": "nightclub-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63d947f021282a2b1cfb2735" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d0de2d5c20001f6bc50", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da425721282a2b1cff5e04", + "ChallengeName": "Night Club Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 300 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4f8f2a74ddca83bcf7595" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Very", - "Hard" - ], - "orderNo": 2147484527, - "createdAt": "2023-11-30T11:07:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da42a521282a2b1cff5f4b", + "ChallengeName": "Night Club Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0cd0ad8d2a2fd380db", - "isCompleted": false + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da425721282a2b1cff5e04" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da42f321282a2b1cff6096", + "ChallengeName": "Night Club Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-veryhard", - "currentValue": 0, - "targetValue": 80 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf45bcccf1de730209f", - "namespace": "pd3", - "name": "Station Stealthy IV", - "description": "Beat Station on Overkill or higher difficulty before the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf45369de0001f0ba8d", - "stats": [ - { - "statCode": "infamy-point", - "value": 180 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Stealth", - "Heist", - "Hard", - "Station" - ], - "orderNo": 2147484474, - "createdAt": "2023-11-30T11:07:32Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf86f824913a5f0b60a", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender I", - "description": "Beat Station 3 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf45bcccf1de730209f" + ], + "PrerequisiteChallengeIds": [ + "63da42a521282a2b1cff5f4b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da433921282a2b1cff6251", + "ChallengeName": "Night Club Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 3 + "StatId": "nightclub-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da42f321282a2b1cff6096" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686cf8f2344f00012b4958", - "stats": [ + { + "ChallengeDescription": "Beat Night Club 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da5c3021282a2b1c000301", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f4fb93a74ddca83bcf7605" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" + ] }, - "tags": [ - "Map", - "Heist", - "Special", - "Station", - "Overkill" - ], - "orderNo": 2147484482, - "createdAt": "2023-11-30T11:07:36Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Night Club 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da5c6921282a2b1c0003df", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf45bcccf1de730209f", - "isCompleted": false + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da5c3021282a2b1c000301" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da5cde21282a2b1c0004be", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 3 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d01f46e611ca4072c2e", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender II", - "description": "Beat Station 6 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf86f824913a5f0b60a" + ], + "PrerequisiteChallengeIds": [ + "63da5c6921282a2b1c0003df" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Night Club 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da5d2a21282a2b1c00089b", + "ChallengeName": "Night Club Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 6 + "StatId": "nightclub-stealth-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da5cde21282a2b1c0004be" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Night", + "Club" ] }, - "reward": { - "rewardId": "65686d01eec864000185b6f0", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da623021282a2b1c003188", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f10488a74ddca83bcf5ca9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484496, - "createdAt": "2023-11-30T11:07:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da627e21282a2b1c003a13", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686cf86f824913a5f0b60a", - "isCompleted": false + "StatId": "firstplayable-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da623021282a2b1c003188" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da62f421282a2b1c003af6", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 6 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0626756e51ee17758c", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender III", - "description": "Beat Station 10 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d01f46e611ca4072c2e" + ], + "PrerequisiteChallengeIds": [ + "63da627e21282a2b1c003a13" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da633321282a2b1c003cb4", + "ChallengeName": "Sharke Bank (FP) Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 10 + "StatId": "firstplayable-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da62f421282a2b1c003af6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d0646ba6d0001a75256", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da656421282a2b1c004e86", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f108e5a74ddca83bcf5ce2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484511, - "createdAt": "2023-11-30T11:07:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da65b121282a2b1c00541b", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d01f46e611ca4072c2e", - "isCompleted": false + "StatId": "firstplayable-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da656421282a2b1c004e86" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da65fd21282a2b1c005641", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 10 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0726756e51ee17758e", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender IV", - "description": "Beat Station 15 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0626756e51ee17758c" + ], + "PrerequisiteChallengeIds": [ + "63da65b121282a2b1c00541b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da664f21282a2b1c005867", + "ChallengeName": "Sharke Bank (FP) Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 15 + "StatId": "firstplayable-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da65fd21282a2b1c005641" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d07c344f50001149fca", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da66f121282a2b1c005b61", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f10dfea74ddca83bcf5cf1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484513, - "createdAt": "2023-11-30T11:07:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da673a21282a2b1c005fb9", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0626756e51ee17758c", - "isCompleted": false + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da66f121282a2b1c005b61" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da677b21282a2b1c006408", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 15 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0956fdd7be8e288a25", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender V", - "description": "Beat Station 20 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0726756e51ee17758e" + ], + "PrerequisiteChallengeIds": [ + "63da673a21282a2b1c005fb9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da67c721282a2b1c0065d7", + "ChallengeName": "Sharke Bank (FP) Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 20 + "StatId": "firstplayable-loud-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da677b21282a2b1c006408" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d09f2344f00012b4959", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da683921282a2b1c006cb6", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f13650a74ddca83bcf5e9e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484515, - "createdAt": "2023-11-30T11:07:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da687121282a2b1c006d23", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0726756e51ee17758e", - "isCompleted": false + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da683921282a2b1c006cb6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da68a521282a2b1c006e78", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 20 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0d56fdd7be8e288a29", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender VI", - "description": "Beat Station 25 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0956fdd7be8e288a25" + ], + "PrerequisiteChallengeIds": [ + "63da687121282a2b1c006d23" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da68d921282a2b1c006e79", + "ChallengeName": "Sharke Bank (FP) Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 25 + "StatId": "firstplayable-loud-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da68a521282a2b1c006e78" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d0d74e34400016c218b", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da74a621282a2b1c010d4c", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f251b8a74ddca83bcf68c2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484530, - "createdAt": "2023-11-30T11:07:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da751e21282a2b1c011273", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0956fdd7be8e288a25", - "isCompleted": false + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da74a621282a2b1c010d4c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da756621282a2b1c011428", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 25 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d1092e1ea9e5c215317", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender VII", - "description": "Beat Station 30 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0d56fdd7be8e288a29" + ], + "PrerequisiteChallengeIds": [ + "63da751e21282a2b1c011273" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da760821282a2b1c011bce", + "ChallengeName": "Sharke Bank (FP) Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 30 + "StatId": "firstplayable-stealth-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da756621282a2b1c011428" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d1041323f00017789e1", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da786721282a2b1c01357f", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 290 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f26185a74ddca83bcf68f1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484539, - "createdAt": "2023-11-30T11:08:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da78de21282a2b1c013a9b", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0d56fdd7be8e288a29", - "isCompleted": false + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da786721282a2b1c01357f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da793121282a2b1c013e03", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 30 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d109c6dfc822b7f52fc", - "namespace": "pd3", - "name": "Station Stealthy IV: Repeat Offender VIII", - "description": "Beat Station 40 times on Overkill or higher difficulty before the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d1092e1ea9e5c215317" + ], + "PrerequisiteChallengeIds": [ + "63da78de21282a2b1c013a9b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da796c21282a2b1c013e77", + "ChallengeName": "Sharke Bank (FP) Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "value": 40 + "StatId": "firstplayable-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da793121282a2b1c013e03" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "65686d104985b400010d5131", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da79d121282a2b1c014358", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 310 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f26466a74ddca83bcf6925" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" + ] }, - "tags": [ - "Map", - "Heist", - "Stealth", - "Station", - "Overkill" - ], - "orderNo": 2147484540, - "createdAt": "2023-11-30T11:08:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da7a1c21282a2b1c0145e3", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d1092e1ea9e5c215317", - "isCompleted": false + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da79d121282a2b1c014358" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da7a7621282a2b1c014fda", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "station-stealth-overkill", - "currentValue": 0, - "targetValue": 40 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf292e1ea9e5c215311", - "namespace": "pd3", - "name": "Station: Full Payout", - "description": "Escape with the maximum amount of bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf26b58a900019a8226", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Station", - "Max" - ], - "orderNo": 2147484466, - "createdAt": "2023-11-30T11:07:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "station-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ec0421282a2b1cd9cbf4", - "namespace": "pd3", - "name": "Stryk7 I", - "description": "Defeat 50 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3ec04f885db000189fcda", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483972, - "createdAt": "2023-01-27T15:21:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ec4c21282a2b1cd9cc69", - "namespace": "pd3", - "name": "Stryk7 II", - "description": "Defeat 100 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ec0421282a2b1cd9cbf4" + ], + "PrerequisiteChallengeIds": [ + "63da7a1c21282a2b1c0145e3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da7ac821282a2b1c01543e", + "ChallengeName": "Sharke Bank (FP) Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 100 + "StatId": "firstplayable-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da7a7621282a2b1c014fda" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d3ec4cf885db000189fcdd", - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da7b6a21282a2b1c015814", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62f266f6a74ddca83bcf6948" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483973, - "createdAt": "2023-01-27T15:22:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da7baa21282a2b1c015815", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ec0421282a2b1cd9cbf4", - "isCompleted": false + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da7b6a21282a2b1c015814" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da7bdd21282a2b1c015980", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ec8121282a2b1cd9cdb9", - "namespace": "pd3", - "name": "Stryk7 III", - "description": "Defeat 200 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ec4c21282a2b1cd9cc69" + ], + "PrerequisiteChallengeIds": [ + "63da7baa21282a2b1c015815" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Sharke Bank (FP) 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da7c2b21282a2b1c015b44", + "ChallengeName": "Sharke Bank (FP) Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 200 + "StatId": "firstplayable-stealth-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da7bdd21282a2b1c015980" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Sharke", + "Bank" ] }, - "reward": { - "rewardId": "63d3ec81f885db000189fcde", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da7d3521282a2b1c0166b9", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "cargodock-loud-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637ce8fe2bae6007875d2a2d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483974, - "createdAt": "2023-01-27T15:23:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da7d6f21282a2b1c016798", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ec4c21282a2b1cd9cc69", - "isCompleted": false + "StatId": "cargodock-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da7d3521282a2b1c0166b9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da7dd321282a2b1c0168e9", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "cargodock-loud-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ecae21282a2b1cd9cdba", - "namespace": "pd3", - "name": "Stryk7 IV", - "description": "Defeat 350 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ec8121282a2b1cd9cdb9" + ], + "PrerequisiteChallengeIds": [ + "63da7d6f21282a2b1c016798" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da7e1c21282a2b1c0168ea", + "ChallengeName": "Cargo Dock Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 350 + "StatId": "cargodock-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da7dd321282a2b1c0168e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d3ecaef885db000189fce5", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da814f21282a2b1c0181ab", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "cargodock-loud-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637cf9a62bae6007875d435b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483975, - "createdAt": "2023-01-27T15:24:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da818d21282a2b1c018c04", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ec8121282a2b1cd9cdb9", - "isCompleted": false + "StatId": "cargodock-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da814f21282a2b1c0181ab" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da81e321282a2b1c018c05", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e50d477f4d322dc61d6c60", - "namespace": "pd3", - "name": "Stryk7 Master", - "description": "Complete a heist with all base mods unlocked for the Stryk7 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50d47ae93c90001c98fff", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL25", - "Meta", - "Mod", - "Stryk7", - "Unlock" - ], - "orderNo": 2147484277, - "createdAt": "2023-02-09T15:12:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b42b7f4d322dc6199fdb", - "namespace": "pd3", - "name": "Stryk7 Rookie", - "description": "Complete a heist using the Stryk7 with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b42bae93c90001c9736c", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL25", - "Meta", - "Mod", - "Stryk7", - "Unlock" - ], - "orderNo": 2147484239, - "createdAt": "2023-02-08T14:39:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-mod-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "cargodock-loud-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2aa537f0dd5f341fd1f50", - "namespace": "pd3", - "name": "Stryk7 Suppressed I", - "description": "Defeat 10 enemies with the suppressor equipped on the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-suppressor-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "63d2aa530c06b20001e779c3", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7", - "Suppressor" - ], - "orderNo": 2147483912, - "createdAt": "2023-01-26T16:29:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-suppressor-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2aabe7f0dd5f341fd1fc0", - "namespace": "pd3", - "name": "Stryk7 Suppressed II", - "description": "Defeat 50 enemies with the suppressor equipped on the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2aa537f0dd5f341fd1f50" + ], + "PrerequisiteChallengeIds": [ + "63da818d21282a2b1c018c04" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da822a21282a2b1c018c06", + "ChallengeName": "Cargo Dock Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "value": 50 + "StatId": "cargodock-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da81e321282a2b1c018c05" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d2aabe0c06b20001e779c4", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da82db21282a2b1c0195e9", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "637cff752bae6007875d4ac5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7", - "Suppressor" - ], - "orderNo": 2147483913, - "createdAt": "2023-01-26T16:30:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da834821282a2b1c019e72", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2aa537f0dd5f341fd1f50", - "isCompleted": false + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da82db21282a2b1c0195e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da837a21282a2b1c019f51", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2aafb7f0dd5f341fd1fc1", - "namespace": "pd3", - "name": "Stryk7 Suppressed III", - "description": "Defeat 100 enemies with the suppressor equipped on the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2aabe7f0dd5f341fd1fc0" + ], + "PrerequisiteChallengeIds": [ + "63da834821282a2b1c019e72" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da83bb21282a2b1c01a396", + "ChallengeName": "Cargo Dock Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "value": 100 + "StatId": "cargodock-loud-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da837a21282a2b1c019f51" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d2aafb0c06b20001e779c5", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da850e21282a2b1c01a9e5", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63861d922bae60078766283b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7", - "Suppressor" - ], - "orderNo": 2147483914, - "createdAt": "2023-01-26T16:31:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da854a21282a2b1c01ab34", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2aabe7f0dd5f341fd1fc0", - "isCompleted": false + "StatId": "cargodock-loud-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da850e21282a2b1c01a9e5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da859e21282a2b1c01adc7", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ab4d7f0dd5f341fd1fc2", - "namespace": "pd3", - "name": "Stryk7 Suppressed IV", - "description": "Defeat 200 enemies with the suppressor equipped on the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2aafb7f0dd5f341fd1fc1" + ], + "PrerequisiteChallengeIds": [ + "63da854a21282a2b1c01ab34" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da861821282a2b1c01b21b", + "ChallengeName": "Cargo Dock Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "value": 200 + "StatId": "cargodock-loud-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da859e21282a2b1c01adc7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d2ab4d0c06b20001e779c6", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da86d321282a2b1c01b825", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638621aa2bae600787663167" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7", - "Suppressor" - ], - "orderNo": 2147483915, - "createdAt": "2023-01-26T16:33:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da870e21282a2b1c01b826", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2aafb7f0dd5f341fd1fc1", - "isCompleted": false + "StatId": "cargodock-stealth-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da86d321282a2b1c01b825" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da876821282a2b1c01bd49", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2ab7f7f0dd5f341fd1fc3", - "namespace": "pd3", - "name": "Stryk7 Suppressed V", - "description": "Defeat 400 enemies with the suppressor equipped on the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2ab4d7f0dd5f341fd1fc2" + ], + "PrerequisiteChallengeIds": [ + "63da870e21282a2b1c01b826" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da87a421282a2b1c01be31", + "ChallengeName": "Cargo Dock Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "value": 400 + "StatId": "cargodock-stealth-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da876821282a2b1c01bd49" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d2ab7f0c06b20001e779c7", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da881621282a2b1c01c27c", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638722612bae60078767392e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7", - "Suppressor" - ], - "orderNo": 2147483916, - "createdAt": "2023-01-26T16:34:07Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da888521282a2b1c01c5e2", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2ab4d7f0dd5f341fd1fc2", - "isCompleted": false + "StatId": "cargodock-stealth-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da881621282a2b1c01c27c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da88f421282a2b1c01cb28", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-suppressor-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3ecd421282a2b1cd9cdbb", - "namespace": "pd3", - "name": "Stryk7 V", - "description": "Defeat 500 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ecae21282a2b1cd9cdba" + ], + "PrerequisiteChallengeIds": [ + "63da888521282a2b1c01c5e2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da895321282a2b1c01cf72", + "ChallengeName": "Cargo Dock Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 500 + "StatId": "cargodock-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da88f421282a2b1c01cb28" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "63d3ecd4f885db000189fcea", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da8a1a21282a2b1c01dd8f", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638727c52bae600787674153" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147483976, - "createdAt": "2023-01-27T15:25:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da8a5b21282a2b1c01dd90", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ecae21282a2b1cd9cdba", - "isCompleted": false + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da8a1a21282a2b1c01dd8f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da8a9d21282a2b1c01de93", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e4f0de7f4d322dc61ca8d6", - "namespace": "pd3", - "name": "Stryk7 Veteran", - "description": "Complete a heist with four mod slots filled on the Stryk7 with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e4f0deae93c90001c98a85", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL25", - "Meta", - "Mod", - "Stryk7", - "Unlock" - ], - "orderNo": 2147484256, - "createdAt": "2023-02-09T13:10:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "pistol-stryk7-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d48683c1792981dccede", - "namespace": "pd3", - "name": "Stryk7 VI", - "description": "Defeat 750 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3ecd421282a2b1cd9cdbb" + ], + "PrerequisiteChallengeIds": [ + "63da8a5b21282a2b1c01dd90" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da8ae821282a2b1c01e2e7", + "ChallengeName": "Cargo Dock Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 750 + "StatId": "cargodock-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da8a9d21282a2b1c01de93" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "6411d486e2027d0001c0f7d8", - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da8b4921282a2b1c01e2e8", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638729eb2bae600787674656" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147484356, - "createdAt": "2023-03-15T14:21:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Cargo Dock 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da8b9d21282a2b1c01e651", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3ecd421282a2b1cd9cdbb", - "isCompleted": false + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da8b4921282a2b1c01e2e8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da8bf921282a2b1c01e88e", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411d4ce83c1792981dcd0af", - "namespace": "pd3", - "name": "Stryk7 VII", - "description": "Defeat 1000 enemies with the Stryk7", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411d48683c1792981dccede" + ], + "PrerequisiteChallengeIds": [ + "63da8b9d21282a2b1c01e651" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Cargo Dock 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da8c2e21282a2b1c01ebfd", + "ChallengeName": "Cargo Dock Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "value": 1000 + "StatId": "cargodock-stealth-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da8bf921282a2b1c01e88e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Cargo", + "Dock" ] }, - "reward": { - "rewardId": "6411d4cee2027d0001c0f7e2", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da8e7421282a2b1c01faac", + "ChallengeName": "Penthouse Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "penthouse-loud-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63872eca2bae600787675134" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" + ] }, - "tags": [ - "Combat", - "IL25", - "Kill", - "Stryk7" - ], - "orderNo": 2147484357, - "createdAt": "2023-03-15T14:23:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da8ebf21282a2b1c01fe13", + "ChallengeName": "Penthouse Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "6411d48683c1792981dccede", - "isCompleted": false + "StatId": "penthouse-loud-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da8e7421282a2b1c01faac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da8ef321282a2b1c01fe14", + "ChallengeName": "Penthouse Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "pistol-stryk7-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb3957f0dd5f341f308dd", - "namespace": "pd3", - "name": "Stunner I", - "description": "Stun 5 different enemies.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "stun-enemy", - "value": 5 - } - ] - }, - "reward": { - "rewardId": "63ceb395c9460a0001ef5920", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Stun" - ], - "orderNo": 2147483707, - "createdAt": "2023-01-23T16:19:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "stun-enemy", - "currentValue": 0, - "targetValue": 5 + "StatId": "penthouse-loud-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb3ca7f0dd5f341f308de", - "namespace": "pd3", - "name": "Stunner II", - "description": "Stun 15 different enemies.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb3957f0dd5f341f308dd" + ], + "PrerequisiteChallengeIds": [ + "63da8ebf21282a2b1c01fe13" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "63da8f2c21282a2b1c01fef0", + "ChallengeName": "Penthouse Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "value": 15 + "StatId": "penthouse-loud-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da8ef321282a2b1c01fe14" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Penthouse" ] }, - "reward": { - "rewardId": "63ceb3cac9460a0001ef5921", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da8f8621282a2b1c020186", + "ChallengeName": "Penthouse Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "penthouse-loud-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63874bacce9f3b5ae57de0e6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Stun" - ], - "orderNo": 2147483708, - "createdAt": "2023-01-23T16:20:26Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da8fb221282a2b1c020260", + "ChallengeName": "Penthouse Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb3957f0dd5f341f308dd", - "isCompleted": false + "StatId": "penthouse-loud-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da8f8621282a2b1c020186" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da8fe821282a2b1c02033b", + "ChallengeName": "Penthouse Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "currentValue": 0, - "targetValue": 15 + "StatId": "penthouse-loud-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb3fe7f0dd5f341f30926", - "namespace": "pd3", - "name": "Stunner III", - "description": "Stun 30 different enemies.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb3ca7f0dd5f341f308de" + ], + "PrerequisiteChallengeIds": [ + "63da8fb221282a2b1c020260" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da902e21282a2b1c020418", + "ChallengeName": "Penthouse Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "value": 30 + "StatId": "penthouse-loud-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da8fe821282a2b1c02033b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63ceb3fec9460a0001ef5922", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da909a21282a2b1c02060e", + "ChallengeName": "Penthouse Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63875161ce9f3b5ae57df0b4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Stun" - ], - "orderNo": 2147483709, - "createdAt": "2023-01-23T16:21:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da90d821282a2b1c0206e9", + "ChallengeName": "Penthouse Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb3ca7f0dd5f341f308de", - "isCompleted": false + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da909a21282a2b1c02060e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da911821282a2b1c020781", + "ChallengeName": "Penthouse Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "currentValue": 0, - "targetValue": 30 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb42e7f0dd5f341f30927", - "namespace": "pd3", - "name": "Stunner IV", - "description": "Stun 50 different enemies.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb3fe7f0dd5f341f30926" + ], + "PrerequisiteChallengeIds": [ + "63da90d821282a2b1c0206e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "63da915221282a2b1c020782", + "ChallengeName": "Penthouse Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "value": 50 + "StatId": "penthouse-loud-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da911821282a2b1c020781" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63ceb42ec9460a0001ef5923", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da924f21282a2b1c020beb", + "ChallengeName": "Penthouse Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63875434ce9f3b5ae57df452" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Stun" - ], - "orderNo": 2147483710, - "createdAt": "2023-01-23T16:22:06Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da928521282a2b1c020bec", + "ChallengeName": "Penthouse Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb3fe7f0dd5f341f30926", - "isCompleted": false + "StatId": "penthouse-loud-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da924f21282a2b1c020beb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da92ce21282a2b1c020ce0", + "ChallengeName": "Penthouse Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "currentValue": 0, - "targetValue": 50 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceb4577f0dd5f341f30928", - "namespace": "pd3", - "name": "Stunner V", - "description": "Stun 75 different enemies.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceb42e7f0dd5f341f30927" + ], + "PrerequisiteChallengeIds": [ + "63da928521282a2b1c020bec" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 40 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "63da930c21282a2b1c020e10", + "ChallengeName": "Penthouse Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "value": 75 + "StatId": "penthouse-loud-overkill", + "TargetProgress": 40 } + ], + "PrerequisiteChallengeIds": [ + "63da92ce21282a2b1c020ce0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Penthouse" ] }, - "reward": { - "rewardId": "63ceb457c9460a0001ef5924", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da939421282a2b1c020e11", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 80 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63876b441c49e9669d114272" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Stun" - ], - "orderNo": 2147483711, - "createdAt": "2023-01-23T16:22:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da93c121282a2b1c020e12", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63ceb42e7f0dd5f341f30927", - "isCompleted": false + "StatId": "penthouse-stealth-normal", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da939421282a2b1c020e11" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da93fa21282a2b1c020e13", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "stun-enemy", - "currentValue": 0, - "targetValue": 75 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea3ea7f0dd5f341f2fe24", - "namespace": "pd3", - "name": "Surveillance I", - "description": "Mark a Security Camera.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-camera", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cea3eac9460a0001ef58ce", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Tutorial", - "Camera" - ], - "orderNo": 2147483677, - "createdAt": "2023-01-23T15:12:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-camera", - "currentValue": 0, - "targetValue": 1 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 120 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea4347f0dd5f341f2fe5a", - "namespace": "pd3", - "name": "Surveillance II", - "description": "Mark 50 different Security Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea3ea7f0dd5f341f2fe24" + ], + "PrerequisiteChallengeIds": [ + "63da93c121282a2b1c020e12" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "63da944e21282a2b1c020ef1", + "ChallengeName": "Penthouse Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "value": 50 + "StatId": "penthouse-stealth-normal", + "TargetProgress": 150 } + ], + "PrerequisiteChallengeIds": [ + "63da93fa21282a2b1c020e13" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Penthouse" ] }, - "reward": { - "rewardId": "63cea434c9460a0001ef58cf", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da94c921282a2b1c020ef2", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 55 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63876d321c49e9669d114559" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Camera" - ], - "orderNo": 2147483678, - "createdAt": "2023-01-23T15:13:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da951821282a2b1c021277", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cea3ea7f0dd5f341f2fe24", - "isCompleted": false + "StatId": "penthouse-stealth-hard", + "TargetProgress": 70 } + ], + "PrerequisiteChallengeIds": [ + "63da94c921282a2b1c020ef2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da955021282a2b1c021278", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "currentValue": 0, - "targetValue": 50 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 85 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea46e7f0dd5f341f2fea0", - "namespace": "pd3", - "name": "Surveillance III", - "description": "Mark 150 different Security Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea4347f0dd5f341f2fe5a" + ], + "PrerequisiteChallengeIds": [ + "63da951821282a2b1c021277" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da958c21282a2b1c021279", + "ChallengeName": "Penthouse Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "value": 150 + "StatId": "penthouse-stealth-hard", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63da955021282a2b1c021278" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63cea46ec9460a0001ef58d0", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da95f421282a2b1c02127a", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 35 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63875161ce9f3b5ae57df0b4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Camera" - ], - "orderNo": 2147483679, - "createdAt": "2023-01-23T15:14:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da962821282a2b1c021397", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cea4347f0dd5f341f2fe5a", - "isCompleted": false + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 50 } + ], + "PrerequisiteChallengeIds": [ + "63da95f421282a2b1c02127a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da966a21282a2b1c021471", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "currentValue": 0, - "targetValue": 150 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 65 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea4b27f0dd5f341f2fea1", - "namespace": "pd3", - "name": "Surveillance IV", - "description": "Mark 300 different Security Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea46e7f0dd5f341f2fea0" + ], + "PrerequisiteChallengeIds": [ + "63da962821282a2b1c021397" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "63da96b021282a2b1c021472", + "ChallengeName": "Penthouse Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "value": 300 + "StatId": "penthouse-stealth-veryhard", + "TargetProgress": 80 } + ], + "PrerequisiteChallengeIds": [ + "63da966a21282a2b1c021471" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Penthouse" ] }, - "reward": { - "rewardId": "63cea4b2c9460a0001ef58d1", - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da971221282a2b1c021663", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 20 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "638dbe5d9248292658eb0e83" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" + ] }, - "tags": [ - "Heist", - "Camera" - ], - "orderNo": 2147483680, - "createdAt": "2023-01-23T15:16:02Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Beat Penthouse 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da974d21282a2b1c021664", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cea46e7f0dd5f341f2fea0", - "isCompleted": false + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 25 } + ], + "PrerequisiteChallengeIds": [ + "63da971221282a2b1c021663" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da978921282a2b1c021b3f", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "currentValue": 0, - "targetValue": 300 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cea4ed7f0dd5f341f2fea2", - "namespace": "pd3", - "name": "Surveillance V", - "description": "Mark 500 different Security Cameras.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cea4b27f0dd5f341f2fea1" + ], + "PrerequisiteChallengeIds": [ + "63da974d21282a2b1c021664" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Beat Penthouse 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "63da97c421282a2b1c021b40", + "ChallengeName": "Penthouse Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "value": 500 + "StatId": "penthouse-stealth-overkill", + "TargetProgress": 40 } - ] - }, - "reward": { - "rewardId": "63cea4edc9460a0001ef58d2", - "stats": [ + ], + "PrerequisiteChallengeIds": [ + "63da978921282a2b1c021b3f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Penthouse" + ] + }, + { + "ChallengeDescription": "Complete a heist using the NWB9 with a mod equipped", + "ChallengeID": "63e3aed67f4d322dc61976e6", + "ChallengeName": "NWB9 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "NWB9", + "Tutorial", + "IL21" + ] + }, + { + "ChallengeDescription": "Complete a heist using the CAR4 with a mod equipped", + "ChallengeID": "63e3af7e7f4d322dc6197d78", + "ChallengeName": "CAR4 Rookie", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-car4-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "CAR4" + ] + }, + { + "ChallengeDescription": "Complete a heist using the VF7S with a mod equipped", + "ChallengeID": "63e3b0257f4d322dc6198484", + "ChallengeName": "VF7S Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "VF7S", + "IL77" + ] + }, + { + "ChallengeDescription": "Complete a heist using the KU59 with a mod equipped", + "ChallengeID": "63e3b0897f4d322dc6198648", + "ChallengeName": "KU59 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "KU59", + "IL35" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Commando with a mod equipped", + "ChallengeID": "63e3b0e37f4d322dc619872b", + "ChallengeName": "Commando Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Commando", + "IL29" + ] + }, + { + "ChallengeDescription": "Complete a heist using the PC9 with a mod equipped", + "ChallengeID": "63e3b1bd7f4d322dc619907b", + "ChallengeName": "PC9 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "PC9", + "IL18" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Compact7 with a mod equipped", + "ChallengeID": "63e3b20f7f4d322dc61996b9", + "ChallengeName": "Compact7 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Compact7", + "IL65" + ] + }, + { + "ChallengeDescription": "Complete a heist using the R880 with a mod equipped", + "ChallengeID": "63e3b2667f4d322dc619979b", + "ChallengeName": "R880 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Mosconi12C with a mod equipped", + "ChallengeID": "63e3b2fd7f4d322dc619987d", + "ChallengeName": "Mosconi12C Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Mosconi12C", + "IL43" + ] + }, + { + "ChallengeDescription": "Complete a heist using the A114 with a mod equipped", + "ChallengeID": "63e3b3907f4d322dc6199c9e", + "ChallengeName": "A114 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Complete a heist using the R900S with a mod equipped", + "ChallengeID": "63e3b3ea7f4d322dc6199e08", + "ChallengeName": "R900S Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R900S", + "IL53" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Stryk7 with a mod equipped", + "ChallengeID": "63e3b42b7f4d322dc6199fdb", + "ChallengeName": "Stryk7 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Stryk7", + "IL25" + ] + }, + { + "ChallengeDescription": "Complete a heist using the S403 with a mod equipped", + "ChallengeID": "63e3b46a7f4d322dc6199fdc", + "ChallengeName": "S403 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S403", + "IL59" + ] + }, + { + "ChallengeDescription": "Complete a heist using the S40 with a mod equipped", + "ChallengeID": "63e3b4be7f4d322dc619a0cb", + "ChallengeName": "S40 Rookie", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S40" + ] + }, + { + "ChallengeDescription": "Complete a heist using the SPM11 with a mod equipped", + "ChallengeID": "63e3b5147f4d322dc619a229", + "ChallengeName": "SPM11 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "SPM11", + "IL38" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Bison with a mod equipped", + "ChallengeID": "63e3b5687f4d322dc619a2a8", + "ChallengeName": "Bison Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bison", + "IL70" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Castigo44 with a mod equipped", + "ChallengeID": "63e3b5ac7f4d322dc619a2a9", + "ChallengeName": "Castigo44 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Castigo44", + "IL10" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the NWB9 with the weapon equipped.", + "ChallengeID": "63e3cfef7f4d322dc61a0840", + "ChallengeName": "NWB9 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-nwb9-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "NWB9", + "IL21" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the CAR4 with the weapon equipped", + "ChallengeID": "63e3d0627f4d322dc61a08b1", + "ChallengeName": "CAR4 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-car4-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "CAR4" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the VF7S with the weapon equipped.", + "ChallengeID": "63e3d0b77f4d322dc61a0994", + "ChallengeName": "VF7S Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "VF7S", + "IL77" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the KU59 with the weapon equipped.", + "ChallengeID": "63e3d11e7f4d322dc61a0995", + "ChallengeName": "KU59 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "KU59", + "IL35" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Commando with the weapon equipped.", + "ChallengeID": "63e3d18e7f4d322dc61a0a7a", + "ChallengeName": "Commando Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Commando", + "IL29" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the PC9 with the weapon equipped", + "ChallengeID": "63e4ed457f4d322dc61c9b76", + "ChallengeName": "PC9 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "PC9", + "IL18" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Compact7 with the weapon equipped", + "ChallengeID": "63e4ed9e7f4d322dc61c9b77", + "ChallengeName": "Compact7 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Compact7", + "IL65" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the R880 with the weapon equipped", + "ChallengeID": "63e4ee267f4d322dc61c9d3c", + "ChallengeName": "R880 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Mosconi12C with the weapon equipped", + "ChallengeID": "63e4eed37f4d322dc61ca3e6", + "ChallengeName": "Mosconi12C Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Mosconi12C", + "IL43" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the A114 with the weapon equipped", + "ChallengeID": "63e4f02c7f4d322dc61ca621", + "ChallengeName": "A114 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the R900S with the weapon equipped", + "ChallengeID": "63e4f07d7f4d322dc61ca696", + "ChallengeName": "R900S Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R900S", + "IL53" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Stryk7 with the weapon equipped", + "ChallengeID": "63e4f0de7f4d322dc61ca8d6", + "ChallengeName": "Stryk7 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Stryk7", + "IL25" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the S403 with the weapon equipped", + "ChallengeID": "63e4f2127f4d322dc61cac36", + "ChallengeName": "S403 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S403", + "IL59" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the S40 with the weapon equipped", + "ChallengeID": "63e4f2a57f4d322dc61caf1a", + "ChallengeName": "S40 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S40" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the SPM11 with the weapon equipped", + "ChallengeID": "63e4f2f67f4d322dc61cb3a7", + "ChallengeName": "SPM11 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "SPM11", + "IL38" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Bison with the weapon equipped", + "ChallengeID": "63e4f3437f4d322dc61cb43a", + "ChallengeName": "Bison Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bison", + "IL70" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Castigo44 with the weapon equipped", + "ChallengeID": "63e4f38a7f4d322dc61cb6e9", + "ChallengeName": "Castigo44 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Castigo44", + "IL10" + ] + }, + { + "ChallengeDescription": "Complete Crowd Control Tutorial", + "ChallengeID": "63e5049e7f4d322dc61d286e", + "ChallengeName": "Tutorial Crowd Control", + "InfamyPointReward": 25, + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "complete-crowdcontrol", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Heist", - "Camera" - ], - "orderNo": 2147483681, - "createdAt": "2023-01-23T15:17:01Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63cea4b27f0dd5f341f2fea1", - "isCompleted": false + "AccelByteSku": "pd3_coin_cash", + "AccelbyteItemId": "d08e66f985674e3a8d534b23ed3b9bb7", + "Quantity": 2500 } + ], + "Tags": [ + "Tutorial", + "Heist", + "Client" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Loud Combat Tutorial", + "ChallengeID": "63e504eb7f4d322dc61d2c08", + "ChallengeName": "Tutorial Loud Combat", + "InfamyPointReward": 25, + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "mark-camera", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfef527f0dd5f341f40031", - "namespace": "pd3", - "name": "Tactical Detonation I", - "description": "Shoot a grenade belt on a Nader.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-choker-belt", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfef52c9460a0001ef757a", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Choker", - "Belt", - "Destroy" - ], - "orderNo": 2147483793, - "createdAt": "2023-01-24T14:46:42Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "destroy-choker-belt", - "currentValue": 0, - "targetValue": 1 + "StatId": "complete-loudcombat", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfef9a7f0dd5f341f40032", - "namespace": "pd3", - "name": "Tactical Detonation II", - "description": "Shoot 10 grenade belts on Naders.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfef527f0dd5f341f40031" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "destroy-choker-belt", - "value": 10 + "AccelByteSku": "pd3_coin_cash", + "AccelbyteItemId": "d08e66f985674e3a8d534b23ed3b9bb7", + "Quantity": 2500 } + ], + "Tags": [ + "Tutorial", + "Heist", + "Client" ] }, - "reward": { - "rewardId": "63cfef9ac9460a0001ef758a", - "stats": [ + { + "ChallengeDescription": "Complete Stealth Detection Tutorial", + "ChallengeID": "63e505117f4d322dc61d2c7a", + "ChallengeName": "Tutorial Stealth Detection", + "InfamyPointReward": 25, + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "complete-stealthdetection", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Combat", - "Choker", - "Destroy", - "Belt" - ], - "orderNo": 2147483794, - "createdAt": "2023-01-24T14:47:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63cfef527f0dd5f341f40031", - "isCompleted": false + "AccelByteSku": "pd3_coin_cash", + "AccelbyteItemId": "d08e66f985674e3a8d534b23ed3b9bb7", + "Quantity": 2500 } + ], + "Tags": [ + "Tutorial", + "Heist", + "Client" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Social Stealth Tutorial", + "ChallengeID": "63e505437f4d322dc61d2dd8", + "ChallengeName": "Tutorial Social Stealth", + "InfamyPointReward": 25, + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "destroy-choker-belt", - "currentValue": 0, - "targetValue": 10 + "StatId": "complete-socialstealth", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfefe97f0dd5f341f40033", - "namespace": "pd3", - "name": "Tactical Detonation III", - "description": "Shoot 30 grenade belts on Naders.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfef9a7f0dd5f341f40032" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "destroy-choker-belt", - "value": 30 + "AccelByteSku": "pd3_coin_cash", + "AccelbyteItemId": "d08e66f985674e3a8d534b23ed3b9bb7", + "Quantity": 2500 } + ], + "Tags": [ + "Tutorial", + "Heist", + "Client" ] }, - "reward": { - "rewardId": "63cfefe9c9460a0001ef758b", - "stats": [ + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the NWB9 with the weapon equipped", + "ChallengeID": "63e508ad7f4d322dc61d4a5e", + "ChallengeName": "NWB9 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 - } + "StatId": "assaultrifle-nwb9-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "NWB9", + "IL21" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the CAR4 with the weapon equipped", + "ChallengeID": "63e509117f4d322dc61d4c23", + "ChallengeName": "CAR4 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-car4-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "CAR4" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the VF7S with the weapon equipped", + "ChallengeID": "63e509897f4d322dc61d4df6", + "ChallengeName": "VF7S Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-vf7s-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "VF7S", + "IL77" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the KU59 with the weapon equipped", + "ChallengeID": "63e509d87f4d322dc61d4f4e", + "ChallengeName": "KU59 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-ku59-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "KU59", + "IL35" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Commando with the weapon equipped", + "ChallengeID": "63e50a977f4d322dc61d5182", + "ChallengeName": "Commando Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-commando-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Commando", + "IL29" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the PC9 with the weapon equipped", + "ChallengeID": "63e50b507f4d322dc61d56c9", + "ChallengeName": "PC9 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-pc9-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "PC9", + "IL18" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Compact7 with the weapon equipped", + "ChallengeID": "63e50bd77f4d322dc61d5bef", + "ChallengeName": "Compact7 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-compact7-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Compact7", + "IL65" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the R880 with the weapon equipped", + "ChallengeID": "63e50c1c7f4d322dc61d5dba", + "ChallengeName": "R880 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-r880-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R880", + "IL2" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Mosconi12C with the weapon equipped", + "ChallengeID": "63e50c807f4d322dc61d6075", + "ChallengeName": "Mosconi12C Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-mosconi12c-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Mosconi12C", + "IL43" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the A114 with the weapon equipped", + "ChallengeID": "63e50cba7f4d322dc61d66e2", + "ChallengeName": "A114 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-a114-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "A114", + "IL15" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the R900S with the weapon equipped", + "ChallengeID": "63e50cf97f4d322dc61d67d0", + "ChallengeName": "R900S Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-r900s-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "R900S", + "IL53" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Stryk7 with the weapon equipped", + "ChallengeID": "63e50d477f4d322dc61d6c60", + "ChallengeName": "Stryk7 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-stryk7-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Stryk7", + "IL25" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the S403 with the weapon equipped", + "ChallengeID": "63e50d867f4d322dc61d6d73", + "ChallengeName": "S403 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S403", + "IL59" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the S40 with the weapon equipped", + "ChallengeID": "63e50dd57f4d322dc61d6edb", + "ChallengeName": "S40 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s40-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "S40" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the SPM11 with the weapon equipped", + "ChallengeID": "63e50e1d7f4d322dc61d7284", + "ChallengeName": "SPM11 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-spm11-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "SPM11", + "IL38" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Bison with the weapon equipped", + "ChallengeID": "63e50e6c7f4d322dc61d7564", + "ChallengeName": "Bison Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bison-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bison", + "IL70" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Castigo44 with the weapon equipped", + "ChallengeID": "63e50ea17f4d322dc61d7728", + "ChallengeName": "Castigo44 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-castigo44-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Castigo44", + "IL10" + ] + }, + { + "ChallengeDescription": "Do not let the Armored Transport come to a halt during escort.", + "ChallengeID": "63ee1a9e8f18e8f291865084", + "ChallengeName": "Armored Transport Optional Objective I - Smooth Sailing", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "armoredtransport-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Armored", + "Transport", + "Optional" + ] + }, + { + "ChallengeDescription": "Tie up the bank manager before the objective where you need him", + "ChallengeID": "63ee1b778f18e8f2918651d4", + "ChallengeName": "Branch Bank Optional Objective II - Ahead of schedule", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Branch", + "Bank", + "Optional" + ] + }, + { + "ChallengeDescription": "Flee before the blockers come up again", + "ChallengeID": "63ee1bc48f18e8f291865720", + "ChallengeName": "Branch Bank Optional Objective III - Quick Escape", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "branchbank-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Branch", + "Bank", + "Optional" + ] + }, + { + "ChallengeDescription": "Access the Jewelry Workshop in under 5 minutes in stealth on OVERKILL difficulty.", + "ChallengeID": "63ee20d98f18e8f291867610", + "ChallengeName": "Jewelry Store Optional Objective I - Eye-Opener", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Jewelry", + "Store", + "Optional" + ] + }, + { + "ChallengeDescription": "Successfully blackmail the manager to stay within the store in stealth on any difficulty.", + "ChallengeID": "63ee211c8f18e8f29186792c", + "ChallengeName": "Jewelry Store Optional Objective II - Employee of the Month", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Jewelry", + "Store", + "Optional" + ] + }, + { + "ChallengeDescription": "Find the rare loot and secure it.", + "ChallengeID": "63ee216c8f18e8f291867af4", + "ChallengeName": "Jewelry Store Optional Objective IV - Rare Loot", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-optional-objective-4", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Jewelry", + "Store", + "Optional" + ] + }, + { + "ChallengeDescription": "In the Jewelry Store Heist, control the public showroom, take all its loot and escape without calling the alarm on OVERKILL difficulty.", + "ChallengeID": "63ee21ba8f18e8f291867c60", + "ChallengeName": "Jewelry Store Optional Objective V - Show Control", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "jewelrystore-optional-objective-5", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Jewelry", + "Store", + "Optional" + ] + }, + { + "ChallengeDescription": "Steal the centrepiece painting by Shanda Latrell in Art Gallery.", + "ChallengeID": "63ee29128f18e8f291869c4b", + "ChallengeName": "Art Gallery Optional Objective I - Centrepiece", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Art", + "Gallery", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist by stealing the loot in all seven exhibition rooms.", + "ChallengeID": "63ee29698f18e8f29186a16e", + "ChallengeName": "Art Gallery Optional Objective II - Client Requests", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "artgallery-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Art", + "Gallery", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete Nightclub before the assault has started without raising any alarms.", + "ChallengeID": "63ee29c38f18e8f29186a3a4", + "ChallengeName": "Night Club Optional Objective I - The Silent Dancer", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Night", + "Club", + "Optional" + ] + }, + { + "ChallengeDescription": "Before the assault has started, access the VIP area with a self-printed invitation.", + "ChallengeID": "63ee2a1f8f18e8f29186a5df", + "ChallengeName": "Night Club Optional Objective II - Self Invited", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Night", + "Club", + "Optional" + ] + }, + { + "ChallengeDescription": "Before the assault has started, Access the VIP area without any VIP identification.", + "ChallengeID": "63ee2a818f18e8f29186a5e0", + "ChallengeName": "Night Club Optional Objective III - DJ of the Night", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "nightclub-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Night", + "Club", + "Optional" + ] + }, + { + "ChallengeDescription": "In stealth, secure all the loot from the vault by using the staircases only (not the elevator)", + "ChallengeID": "63ee2af08f18e8f29186a825", + "ChallengeName": "Sharke Bank (FP) - Optional Objective II - Errand Boy", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "firstplayable-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Sharke", + "Bank", + "Optional" + ] + }, + { + "ChallengeDescription": "Secure both hi-tech devices at their maximum value by making sure their temprature doesnt drop too much while securing them", + "ChallengeID": "63ee2b428f18e8f29186a988", + "ChallengeName": "Cargo Dock Optional Objective I - Tacti-cool", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "Optional" + ] + }, + { + "ChallengeDescription": "Secure all available loot in the heist", + "ChallengeID": "63ee2b918f18e8f29186aa00", + "ChallengeName": "Cargo Dock Optional Objective II - No loot left behind", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist in under 12 minutes", + "ChallengeID": "63ee2bdb8f18e8f29186aa70", + "ChallengeName": "Cargo Dock Optional Objective III - Speed run", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete stealth without killing any guards or taking down the security camera operator on Overkill", + "ChallengeID": "63ee2c1c8f18e8f29186ab68", + "ChallengeName": "Cargo Dock Optional Objective V - Ghost", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "cargodock-optional-objective-5", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Cargo", + "Dock", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the Penthouse in stealth without killing anyone on Overkill", + "ChallengeID": "63ee2c5e8f18e8f29186ace2", + "ChallengeName": "Penthouse Optional Objective I - Live and Let live", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Penthouse", + "Optional" + ] + }, + { + "ChallengeDescription": "Kidnap Mason while he is talking on the phone, scan his iris and complete the level in stealth without harming him.", + "ChallengeID": "63ee2ca58f18e8f29186ad58", + "ChallengeName": "Penthouse Optional Objective II - Busy Signal", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Penthouse", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete all the mandatory objectives in loud and open the panic room by taking mason to the Iris scanner without killing him.", + "ChallengeID": "63ee2cec8f18e8f29186add4", + "ChallengeName": "Penthouse Optional Objective III - Eye Catching", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "penthouse-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Penthouse", + "Optional" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the S403", + "ChallengeID": "63ee2ef68f18e8f29186bc16", + "ChallengeName": "S403 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the S403", + "ChallengeID": "63ee2f698f18e8f29186bd66", + "ChallengeName": "S403 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "pistol-s403-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "63ee2ef68f18e8f29186bc16" ], - "items": [] + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" + ] }, - "tags": [ - "Combat", - "Choker", - "Belt", - "Destroy" - ], - "orderNo": 2147483795, - "createdAt": "2023-01-24T14:49:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 200 enemies with the S403", + "ChallengeID": "63ee2fd68f18e8f29186be5a", + "ChallengeName": "S403 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfef9a7f0dd5f341f40032", - "isCompleted": false + "StatId": "pistol-s403-kills", + "TargetProgress": 200 } + ], + "PrerequisiteChallengeIds": [ + "63ee2f698f18e8f29186bd66" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 350 enemies with the S403", + "ChallengeID": "63ee30658f18e8f29186bfbb", + "ChallengeName": "S403 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "destroy-choker-belt", - "currentValue": 0, - "targetValue": 30 + "StatId": "pistol-s403-kills", + "TargetProgress": 350 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cff0297f0dd5f341f40098", - "namespace": "pd3", - "name": "Tactical Detonation IV", - "description": "Shoot 60 grenade belts on Naders.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfefe97f0dd5f341f40033" + ], + "PrerequisiteChallengeIds": [ + "63ee2fd68f18e8f29186be5a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the S403", + "ChallengeID": "63ee30b98f18e8f29186c213", + "ChallengeName": "S403 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "destroy-choker-belt", - "value": 60 + "StatId": "pistol-s403-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "63ee30658f18e8f29186bfbb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" + ] + }, + { + "ChallengeDescription": "Defeat 10 special enemies with the HET5", + "ChallengeID": "63ee39838f18e8f29186df5d", + "ChallengeName": "HET5 Special Units I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-het5-specialenemies-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Special", + "Kill", + "IL40" + ] + }, + { + "ChallengeDescription": "Defeat 25 special enemies with the HET5", + "ChallengeID": "63ee39e88f18e8f29186e0b1", + "ChallengeName": "HET5 Special Units II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "overkill-het5-specialenemies-kills", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "63ee39838f18e8f29186df5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Special", + "Kill", + "IL40" ] }, - "reward": { - "rewardId": "63cff029c9460a0001ef758c", - "stats": [ + { + "ChallengeDescription": "Defeat 50 special enemies with the HET5", + "ChallengeID": "63ee3a8d8f18e8f29186e574", + "ChallengeName": "HET5 Special Units III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "overkill-het5-specialenemies-kills", + "TargetProgress": 50 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ee39e88f18e8f29186e0b1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Special", + "Kill", + "IL40" + ] }, - "tags": [ - "Combat", - "Choker", - "Belt", - "Destroy" - ], - "orderNo": 2147483796, - "createdAt": "2023-01-24T14:50:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 100 special enemies with the HET5", + "ChallengeID": "63ee3ae68f18e8f29186e672", + "ChallengeName": "HET5 Special Units IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfefe97f0dd5f341f40033", - "isCompleted": false + "StatId": "overkill-het5-specialenemies-kills", + "TargetProgress": 100 } + ], + "PrerequisiteChallengeIds": [ + "63ee3a8d8f18e8f29186e574" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Special", + "Kill", + "IL40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 250 special enemies with the HET5", + "ChallengeID": "63ee3b418f18e8f29186e756", + "ChallengeName": "HET5 Special Units V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "destroy-choker-belt", - "currentValue": 0, - "targetValue": 60 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfbe617f0dd5f341f3937e", - "namespace": "pd3", - "name": "Triage I", - "description": "Deploy a Medic bag.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-medic-bag", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63cfbe61c9460a0001ef6a30", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "Deploy", - "Medic", - "Tutorial" - ], - "orderNo": 2147483742, - "createdAt": "2023-01-24T11:17:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "deploy-medic-bag", - "currentValue": 0, - "targetValue": 1 + "StatId": "overkill-het5-specialenemies-kills", + "TargetProgress": 250 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfbe997f0dd5f341f3937f", - "namespace": "pd3", - "name": "Triage II", - "description": "Deploy 10 Medic bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfbe617f0dd5f341f3937e" + ], + "PrerequisiteChallengeIds": [ + "63ee3ae68f18e8f29186e672" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Special", + "Kill", + "IL40" ] }, - "objective": { - "stats": [ - { - "statCode": "deploy-medic-bag", - "value": 10 + { + "ChallengeDescription": "", + "ChallengeID": "63f336b08f18e8f291913e73", + "ChallengeName": "Achievement Mask On", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "mask-on-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63cfbe99c9460a0001ef6a31", - "stats": [ - { - "statCode": "infamy-point", - "value": 60 + { + "ChallengeDescription": "", + "ChallengeID": "63f6215e8f18e8f2919c2483", + "ChallengeName": "Achievement Heist Kill Sentry Turret", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "heist-sentry-turret-kills", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Combat", - "Deploy", - "Medic" - ], - "orderNo": 2147483743, - "createdAt": "2023-01-24T11:18:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - { - "challengeId": "63cfbe617f0dd5f341f3937e", - "isCompleted": false + { + "ChallengeDescription": "", + "ChallengeID": "63f621d28f18e8f2919c28e4", + "ChallengeName": "Achievement Taser Battery Enemy Stuns", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "taser-battery-enemy-stuns", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ - { - "statCode": "deploy-medic-bag", - "currentValue": 0, - "targetValue": 10 + { + "ChallengeDescription": "", + "ChallengeID": "63f621fd8f18e8f2919c29c5", + "ChallengeName": "Achievement Core Buffs Active", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "core-buffs-active", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfbee07f0dd5f341f39380", - "namespace": "pd3", - "name": "Triage III", - "description": "Deploy 50 Medic bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfbe997f0dd5f341f3937f" + }, + { + "ChallengeDescription": "", + "ChallengeID": "63f622378f18e8f2919c2b86", + "ChallengeName": "Achievement Primary Full Mod Unlock", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "primary-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f6225c8f18e8f2919c2db7", + "ChallengeName": "Achievement Customize Mask", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "deploy-medic-bag", - "value": 50 + "StatId": "customize-mask", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63cfbee0c9460a0001ef6a32", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f622918f18e8f2919c2f08", + "ChallengeName": "Achievement Armored Transport Truck No Stop", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "armoredtransport-truck-no-stop", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Combat", - "Deploy", - "Medic" - ], - "orderNo": 2147483744, - "createdAt": "2023-01-24T11:20:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f622b28f18e8f2919c2fe9", + "ChallengeName": "Achievement Armored Transport Civilians Gone", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfbe997f0dd5f341f3937f", - "isCompleted": false + "StatId": "armoredtransport-civilians-gone", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f622d48f18e8f2919c30ca", + "ChallengeName": "Achievement Art Gallery Shanda Panting Secured", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "deploy-medic-bag", - "currentValue": 0, - "targetValue": 50 + "StatId": "artgallery-shanda-painting-secured", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63cfbf3a7f0dd5f341f393ce", - "namespace": "pd3", - "name": "Triage IV", - "description": "Deploy 100 Medic bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63cfbee07f0dd5f341f39380" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f622ef8f18e8f2919c30cb", + "ChallengeName": "Achievement Art Gallery Exhibition Bags Secured", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "deploy-medic-bag", - "value": 100 + "StatId": "artgallery-exhibition-bags-secured", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63cfbf3ac9460a0001ef6a33", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f6232a8f18e8f2919c313c", + "ChallengeName": "Achievement Branch Bank No Dye Packs Exploded", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "branchbank-no-dye-packs-exploded", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Combat", - "Deploy", - "Medic" - ], - "orderNo": 2147483745, - "createdAt": "2023-01-24T11:21:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f623438f18e8f2919c328d", + "ChallengeName": "Achievement Branch Bank Open Deposit Boxes", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63cfbee07f0dd5f341f39380", - "isCompleted": false + "StatId": "branchbank-open-deposit-boxes", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f6235d8f18e8f2919c328e", + "ChallengeName": "Achievement Cargo Dock Max Hi Tech Secured", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "deploy-medic-bag", - "currentValue": 0, - "targetValue": 100 + "StatId": "cargodock-max-hi-tech-secured", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e5049e7f4d322dc61d286e", - "namespace": "pd3", - "name": "Tutorial Crowd Control", - "description": "Complete Crowd Control Tutorial", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f623888f18e8f2919c360f", + "ChallengeName": "Achievement Cargo Dock Max Payout", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-crowdcontrol", - "value": 1 + "StatId": "cargodock-max-payout-achievement", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63e5049eae93c90001c98e3b", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f623b48f18e8f2919c36f0", + "ChallengeName": "Achievement Sharke Bank Max Payout", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 25 + "StatId": "firstplayable-max-payout-achievement", + "TargetProgress": 1 } ], - "items": [ - { - "itemId": "f693f83bf5074e50be6329ec77e21730", - "quantity": 2500, - "isActive": false - } + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "tags": [ - "Tutorial", - "Heist" - ], - "orderNo": 2147484262, - "createdAt": "2023-02-09T14:35:10Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f623ce8f18e8f2919c3841", + "ChallengeName": "Achievement Sharke Bank No HR Computer", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-crowdcontrol", - "currentValue": 0, - "targetValue": 1 + "StatId": "firstplayable-no-hr-computer", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e504eb7f4d322dc61d2c08", - "namespace": "pd3", - "name": "Tutorial Loud Combat", - "description": "Complete Loud Combat Tutorial", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f624038f18e8f2919c3922", + "ChallengeName": "Achievement Jewelry Store Max Payout", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-loudcombat", - "value": 1 + "StatId": "jewelrystore-max-payout-achievement", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63e504ebae93c90001c98e3c", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f624278f18e8f2919c3a03", + "ChallengeName": "Achievement Jewelry Store Speed Run", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 25 + "StatId": "jewelrystore-speed-run", + "TargetProgress": 1 } ], - "items": [ - { - "itemId": "f693f83bf5074e50be6329ec77e21730", - "quantity": 2500, - "isActive": false - } + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "tags": [ - "Tutorial", - "Heist" - ], - "orderNo": 2147484263, - "createdAt": "2023-02-09T14:36:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f6243f8f18e8f2919c3a74", + "ChallengeName": "Achievement Night Club No ID VIP Area", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-loudcombat", - "currentValue": 0, - "targetValue": 1 + "StatId": "nightclub-no-id-vip-area", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e505437f4d322dc61d2dd8", - "namespace": "pd3", - "name": "Tutorial Social Stealth", - "description": "Complete Social Stealth Tutorial", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f624628f18e8f2919c3a75", + "ChallengeName": "Achievement Night Club Survived Assaults", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-socialstealth", - "value": 1 + "StatId": "nightclub-survived-assaults", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "63e50543ae93c90001c98e3f", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f6247e8f18e8f2919c3b56", + "ChallengeName": "Achievement Penthouse No Guard Kills", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 25 + "StatId": "penthouse-no-guard-kills", + "TargetProgress": 1 } ], - "items": [ - { - "itemId": "f693f83bf5074e50be6329ec77e21730", - "quantity": 2500, - "isActive": false - } + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "tags": [ - "Tutorial", - "Heist" - ], - "orderNo": 2147484265, - "createdAt": "2023-02-09T14:37:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "63f624968f18e8f2919c3bc7", + "ChallengeName": "Achievement Penthouse Human Shield Extract", + "InfamyPointReward": "-1", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-socialstealth", - "currentValue": 0, - "targetValue": 1 + "StatId": "penthouse-human-shield-extract", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e505117f4d322dc61d2c7a", - "namespace": "pd3", - "name": "Tutorial Stealth Detection", - "description": "Complete Stealth Detection Tutorial", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the NWB9", + "ChallengeID": "6411b9c983c1792981dad870", + "ChallengeName": "NWB9 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-stealthdetection", - "value": 1 + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 750 } + ], + "PrerequisiteChallengeIds": [ + "62c43a2e28fe1154bf4bdbfb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "IL21" ] }, - "reward": { - "rewardId": "63e50511ae93c90001c98e3d", - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the NWB9", + "ChallengeID": "6411ba1683c1792981daddb7", + "ChallengeName": "NWB9 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 25 + "StatId": "assaultrifle-nwb9-kills", + "TargetProgress": 1000 } ], - "items": [ - { - "itemId": "f693f83bf5074e50be6329ec77e21730", - "quantity": 2500, - "isActive": false - } + "PrerequisiteChallengeIds": [ + "6411b9c983c1792981dad870" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "NWB9", + "Kill", + "IL21" ] }, - "tags": [ - "Tutorial", - "Heist" - ], - "orderNo": 2147484264, - "createdAt": "2023-02-09T14:37:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the CAR4", + "ChallengeID": "6411bcd083c1792981db16f4", + "ChallengeName": "CAR4 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "complete-stealthdetection", - "currentValue": 0, - "targetValue": 1 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d2865c7f0dd5f341fca8b3", - "namespace": "pd3", - "name": "VF7S ADS I", - "description": "Defeat 20 enemies while aiming down sights with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "63d2865c0c06b20001e76ed6", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "ADS", - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483867, - "createdAt": "2023-01-26T13:55:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d286b87f0dd5f341fca985", - "namespace": "pd3", - "name": "VF7S ADS II", - "description": "Defeat 50 enemies while aiming down sights with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d2865c7f0dd5f341fca8b3" + ], + "PrerequisiteChallengeIds": [ + "62c43e2828fe1154bf4bdc6b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the CAR4", + "ChallengeID": "6411bd1883c1792981db20a8", + "ChallengeName": "CAR4 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "value": 50 + "StatId": "assaultrifle-car4-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411bcd083c1792981db16f4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "CAR4", + "Kill" ] }, - "reward": { - "rewardId": "63d286b80c06b20001e76ed7", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the VF7S", + "ChallengeID": "6411bf7f83c1792981db560c", + "ChallengeName": "VF7S VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3da5c640c786dc2682388" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" + ] }, - "tags": [ - "ADS", - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483868, - "createdAt": "2023-01-26T13:57:12Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the VF7S", + "ChallengeID": "6411bfca83c1792981db5b5f", + "ChallengeName": "VF7S VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d2865c7f0dd5f341fca8b3", - "isCompleted": false + "StatId": "assaultrifle-vf7s-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411bf7f83c1792981db560c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "VF7S", + "Kill", + "IL77" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the KU59", + "ChallengeID": "6411c1c683c1792981db86a4", + "ChallengeName": "KU59 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d286f67f0dd5f341fca986", - "namespace": "pd3", - "name": "VF7S ADS III", - "description": "Defeat 100 enemies while aiming down sights with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d286b87f0dd5f341fca985" + ], + "PrerequisiteChallengeIds": [ + "63d3dce2640c786dc26831fb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the KU59", + "ChallengeID": "6411c20083c1792981db8f81", + "ChallengeName": "KU59 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "value": 100 + "StatId": "assaultrifle-ku59-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411c1c683c1792981db86a4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "KU59", + "Kill", + "IL35" ] }, - "reward": { - "rewardId": "63d286f60c06b20001e76ed8", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Commando", + "ChallengeID": "6411c2c983c1792981db97ef", + "ChallengeName": "Commando VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "smg-commando-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3e584640c786dc26889b7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" + ] }, - "tags": [ - "ADS", - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483869, - "createdAt": "2023-01-26T13:58:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Commando", + "ChallengeID": "6411c32083c1792981db9c62", + "ChallengeName": "Commando VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d286b87f0dd5f341fca985", - "isCompleted": false + "StatId": "smg-commando-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411c2c983c1792981db97ef" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Commando", + "Kill", + "IL29" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the PC9", + "ChallengeID": "6411c50183c1792981dbc394", + "ChallengeName": "PC9 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "smg-pc9-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d287397f0dd5f341fca987", - "namespace": "pd3", - "name": "VF7S ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d286f67f0dd5f341fca986" + ], + "PrerequisiteChallengeIds": [ + "63d3ea1621282a2b1cd9bafd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "PC9", + "Combat", + "Kill", + "IL18" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the PC9", + "ChallengeID": "6411c53a83c1792981dbc5d3", + "ChallengeName": "PC9 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "value": 200 + "StatId": "smg-pc9-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411c50183c1792981dbc394" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "PC9", + "Kill", + "IL18" ] }, - "reward": { - "rewardId": "63d287390c06b20001e76ed9", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Compact7", + "ChallengeID": "6411cc3e83c1792981dc3710", + "ChallengeName": "Compact7 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "smg-compact7-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c4426128fe1154bf4bdd28" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Kill", + "IL65" + ] }, - "tags": [ - "ADS", - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483870, - "createdAt": "2023-01-26T13:59:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Compact7", + "ChallengeID": "6411cc8d83c1792981dc413c", + "ChallengeName": "Compact7 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d286f67f0dd5f341fca986", - "isCompleted": false + "StatId": "smg-compact7-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411cc3e83c1792981dc3710" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Compact7", + "Kill", + "IL65" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the R880", + "ChallengeID": "6411cd5583c1792981dc4e97", + "ChallengeName": "R880 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "shotgun-r880-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d287717f0dd5f341fca988", - "namespace": "pd3", - "name": "VF7S ADS V", - "description": "Defeat 400 enemies while aiming down sights with the VF7S.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d287397f0dd5f341fca987" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "Kill", + "IL2" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the R880", + "ChallengeID": "6411ce6183c1792981dc5e98", + "ChallengeName": "R880 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "value": 400 + "StatId": "shotgun-r880-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411cd5583c1792981dc4e97" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R880", + "Kill", + "IL2" ] }, - "reward": { - "rewardId": "63d287710c06b20001e76eda", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Mosconi12C", + "ChallengeID": "6411d07983c1792981dc80d8", + "ChallengeName": "Mosconi12C VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3ebac21282a2b1cd9cb0b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" + ] }, - "tags": [ - "ADS", - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483871, - "createdAt": "2023-01-26T14:00:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Mosconi12C", + "ChallengeID": "6411d0db83c1792981dc8c6f", + "ChallengeName": "Mosconi12C VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d287397f0dd5f341fca987", - "isCompleted": false + "StatId": "shotgun-mosconi12c-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d07983c1792981dc80d8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mosconi12C", + "Kill", + "IL43" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the A114", + "ChallengeID": "6411d1e483c1792981dc9950", + "ChallengeName": "A114 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d925640c786dc2681094", - "namespace": "pd3", - "name": "VF7S I", - "description": "Defeat 50 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "63d3d925f885db000189ee81", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483947, - "createdAt": "2023-01-27T14:01:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "marksman-a114-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d95d640c786dc2681095", - "namespace": "pd3", - "name": "VF7S II", - "description": "Defeat 100 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d925640c786dc2681094" + ], + "PrerequisiteChallengeIds": [ + "62c45dfb28fe1154bf4be126" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Kill", + "IL15" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the A114", + "ChallengeID": "6411d22183c1792981dc9c6c", + "ChallengeName": "A114 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 100 + "StatId": "marksman-a114-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d1e483c1792981dc9950" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "A114", + "Kill", + "IL15" ] }, - "reward": { - "rewardId": "63d3d95df885db000189eee7", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the R900S", + "ChallengeID": "6411d32183c1792981dcaee3", + "ChallengeName": "R900S VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "marksman-r900s-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c546b228fe1154bf4be4f5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Kill", + "IL53" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483948, - "createdAt": "2023-01-27T14:02:05Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the R900S", + "ChallengeID": "6411d37583c1792981dcb765", + "ChallengeName": "R900S VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3d925640c786dc2681094", - "isCompleted": false + "StatId": "marksman-r900s-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d32183c1792981dcaee3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "R900S", + "Kill", + "IL53" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Stryk7", + "ChallengeID": "6411d48683c1792981dccede", + "ChallengeName": "Stryk7 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3d9d3640c786dc2681185", - "namespace": "pd3", - "name": "VF7S III", - "description": "Defeat 200 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d95d640c786dc2681095" + ], + "PrerequisiteChallengeIds": [ + "63d3ecd421282a2b1cd9cdbb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Stryk7", + "ChallengeID": "6411d4ce83c1792981dcd0af", + "ChallengeName": "Stryk7 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 200 + "StatId": "pistol-stryk7-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d48683c1792981dccede" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Stryk7", + "Kill", + "IL25" ] }, - "reward": { - "rewardId": "63d3d9d3f885db000189eeef", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the S403", + "ChallengeID": "6411d5a483c1792981dcda17", + "ChallengeName": "S403 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "pistol-s403-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63ee30b98f18e8f29186c213" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483949, - "createdAt": "2023-01-27T14:04:03Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the S403", + "ChallengeID": "6411d5de83c1792981dcda93", + "ChallengeName": "S403 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3d95d640c786dc2681095", - "isCompleted": false + "StatId": "pistol-s403-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d5a483c1792981dcda17" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S403", + "Kill", + "IL59" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the S40", + "ChallengeID": "6411d6d283c1792981dce085", + "ChallengeName": "S40 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "pistol-s40-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3da14640c786dc26815b3", - "namespace": "pd3", - "name": "VF7S IV", - "description": "Defeat 350 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3d9d3640c786dc2681185" + ], + "PrerequisiteChallengeIds": [ + "62c55c3028fe1154bf4be5b7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the S40", + "ChallengeID": "6411d70b83c1792981dce24e", + "ChallengeName": "S40 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 350 + "StatId": "pistol-s40-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d6d283c1792981dce085" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "S40", + "Kill" ] }, - "reward": { - "rewardId": "63d3da14f885db000189ef54", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the SPM11", + "ChallengeID": "6411d7c183c1792981dce993", + "ChallengeName": "SPM11 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "pistol-spm11-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3ef2121282a2b1cd9d7de" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483950, - "createdAt": "2023-01-27T14:05:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the SPM11", + "ChallengeID": "6411d7fb83c1792981dcec5b", + "ChallengeName": "SPM11 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3d9d3640c786dc2681185", - "isCompleted": false + "StatId": "pistol-spm11-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411d7c183c1792981dce993" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "SPM11", + "Kill", + "IL38" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Bison", + "ChallengeID": "6411da0283c1792981dd1fe3", + "ChallengeName": "Bison VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e509897f4d322dc61d4df6", - "namespace": "pd3", - "name": "VF7S Master", - "description": "Complete a heist with all base mods unlocked for the VF7S with the weapon equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e50989ae93c90001c98f53", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "IL77", - "Meta", - "Mod", - "Unlock", - "VF7S" - ], - "orderNo": 2147484268, - "createdAt": "2023-02-09T14:56:09Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 + "StatId": "revolver-bison-kills", + "TargetProgress": 750 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3b0257f4d322dc6198484", - "namespace": "pd3", - "name": "VF7S Rookie", - "description": "Complete a heist using the VF7S with a mod equipped", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3b025ae93c90001c9723e", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "IL77", - "Meta", - "Mod", - "Unlock", - "VF7S" - ], - "orderNo": 2147484230, - "createdAt": "2023-02-08T14:22:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-mod-equipped", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63d3da5c640c786dc2682388", - "namespace": "pd3", - "name": "VF7S V", - "description": "Defeat 500 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3da14640c786dc26815b3" + ], + "PrerequisiteChallengeIds": [ + "63d3f05e21282a2b1cd9db20" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Bison", + "ChallengeID": "6411da3f83c1792981dd2218", + "ChallengeName": "Bison VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 500 + "StatId": "revolver-bison-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411da0283c1792981dd1fe3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bison", + "Kill", + "IL70" ] }, - "reward": { - "rewardId": "63d3da5cf885db000189f0e5", - "stats": [ + { + "ChallengeDescription": "Defeat 750 enemies with the Castigo44", + "ChallengeID": "6411db7583c1792981dd3f5d", + "ChallengeName": "Castigo44 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "revolver-castigo44-kills", + "TargetProgress": 750 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "62c5719528fe1154bf4be616" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "Kill", + "IL10" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147483951, - "createdAt": "2023-01-27T14:06:20Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 1000 enemies with the Castigo44", + "ChallengeID": "6411dbb983c1792981dd4668", + "ChallengeName": "Castigo44 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3da14640c786dc26815b3", - "isCompleted": false + "StatId": "revolver-castigo44-kills", + "TargetProgress": 1000 } + ], + "PrerequisiteChallengeIds": [ + "6411db7583c1792981dd3f5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Castigo44", + "Kill", + "IL10" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the Mamba", + "ChallengeID": "6411dcb183c1792981dd5517", + "ChallengeName": "Mamba VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63e3d0b77f4d322dc61a0994", - "namespace": "pd3", - "name": "VF7S Veteran", - "description": "Complete a heist with four mod slots filled on the VF7S with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63e3d0b7ae93c90001c9761f", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "IL77", - "Meta", - "Mod", - "Unlock", - "VF7S" - ], - "orderNo": 2147484247, - "createdAt": "2023-02-08T16:41:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "assaultrifle-vf7s-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "overkill-mamba-kills", + "TargetProgress": 400 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411bf7f83c1792981db560c", - "namespace": "pd3", - "name": "VF7S VI", - "description": "Defeat 750 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63d3da5c640c786dc2682388" + ], + "PrerequisiteChallengeIds": [ + "62c5752128fe1154bf4be648" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Kill" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Defeat 500 enemies with the Mamba", + "ChallengeID": "6411dd0683c1792981dd5bf6", + "ChallengeName": "Mamba VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 750 + "StatId": "overkill-mamba-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "6411dcb183c1792981dd5517" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Mamba", + "Kill" ] }, - "reward": { - "rewardId": "6411bf7fe2027d0001c0f147", - "stats": [ + { + "ChallengeDescription": "Defeat 400 enemies with the HET5", + "ChallengeID": "6411dde083c1792981dd70be", + "ChallengeName": "HET5 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "overkill-het5-kills", + "TargetProgress": 400 } ], - "items": [] + "PrerequisiteChallengeIds": [ + "63d3f1ab21282a2b1cd9e27c" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147484338, - "createdAt": "2023-03-15T12:52:15Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "Defeat 500 enemies with the HET5", + "ChallengeID": "6411de1d83c1792981dd72fa", + "ChallengeName": "HET5 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "63d3da5c640c786dc2682388", - "isCompleted": false + "StatId": "overkill-het5-kills", + "TargetProgress": 500 } + ], + "PrerequisiteChallengeIds": [ + "6411dde083c1792981dd70be" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "HET5", + "Kill", + "IL40" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f2117b7c7bc2db6168db2e", + "ChallengeName": "Achievement Steam Mask On", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "mask-on-steam", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6411bfca83c1792981db5b5f", - "namespace": "pd3", - "name": "VF7S VII", - "description": "Defeat 1000 enemies with the VF7S", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6411bf7f83c1792981db560c" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43e61088b9a1e4d5e59a9", + "ChallengeName": "Achievement Steam Armored Transport Civilians Gone", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "value": 1000 + "StatId": "armoredtransport-civilians-gone-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "6411bfcae2027d0001c0f154", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43e9a7c7bc2db61690a56", + "ChallengeName": "Achievement XBox Armored Transport Civilians Gone", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "armoredtransport-civilians-gone-xbox", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Combat", - "IL77", - "Kill", - "VF7S" - ], - "orderNo": 2147484339, - "createdAt": "2023-03-15T12:53:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43ee27c7bc2db61690a58", + "ChallengeName": "Achievement Epic Armored Transport Civilians Gone", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "6411bf7f83c1792981db560c", - "isCompleted": false + "StatId": "armoredtransport-civilians-gone-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43fcf7c7bc2db61690a59", + "ChallengeName": "Achievement Steam Armored Transport Truck No Stop", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "assaultrifle-vf7s-kills", - "currentValue": 0, - "targetValue": 1000 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf556fdd7be8e288a19", - "namespace": "pd3", - "name": "Villa Loud I", - "description": "Beat Villa on Normal or higher difficulty after the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-normal", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf5d643980001fdc6e7", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Normal", - "Villa" - ], - "orderNo": 2147484477, - "createdAt": "2023-11-30T11:07:33Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf6e2096738d1318f32", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender I", - "description": "Beat Villa 15 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf556fdd7be8e288a19" + "StatId": "armoredtransport-truck-no-stop-steam", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f43ffd088b9a1e4d5e59aa", + "ChallengeName": "Achievement XBox Armored Transport Truck No Stop", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 15 + "StatId": "armoredtransport-truck-no-stop-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686cf6e2e56b00017de99b", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f440807c7bc2db61690aca", + "ChallengeName": "Achievement PlayStation Armored Transport Truck No Stop", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 110 + "StatId": "armoredtransport-truck-no-stop-playstation", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484479, - "createdAt": "2023-11-30T11:07:34Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f44118088b9a1e4d5e5a21", + "ChallengeName": "Achievement Epic Armored Transport Truck No Stop", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cf556fdd7be8e288a19", - "isCompleted": false + "StatId": "armoredtransport-truck-no-stop-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f44168088b9a1e4d5e5a93", + "ChallengeName": "Achievement Steam Art Gallery Exhibition Bags Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 15 + "StatId": "artgallery-exhibition-bags-secured-steam", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfae2096738d1318f34", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender II", - "description": "Beat Villa 30 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf6e2096738d1318f32" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f4419e088b9a1e4d5e5a94", + "ChallengeName": "Achievement XBox Art Gallery Exhibition Bags Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 30 + "StatId": "artgallery-exhibition-bags-secured-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686cfad643980001fdc6e8", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f441e17c7bc2db61690b3b", + "ChallengeName": "Achievement PlayStation Art Gallery Exhibition Bags Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 130 + "StatId": "artgallery-exhibition-bags-secured-playstation", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484483, - "createdAt": "2023-11-30T11:07:38Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f442147c7bc2db61690b3c", + "ChallengeName": "Achievement Epic Art Gallery Exhibition Bags Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cf6e2096738d1318f32", - "isCompleted": false + "StatId": "artgallery-exhibition-bags-secured-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f459c5088b9a1e4d5e60cf", + "ChallengeName": "Achievement XBox Mask On", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 30 + "StatId": "mask-on-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfbd0ad8d2a2fd380d3", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender III", - "description": "Beat Villa 45 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfae2096738d1318f34" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f45a13088b9a1e4d5e60d0", + "ChallengeName": "Achievement PlayStation Mask On", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 45 + "StatId": "mask-on-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686cfb2697b30001ac3fd5", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f45a457c7bc2db616911f0", + "ChallengeName": "Achievement Epic Mask On", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "mask-on-epic", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Heist", - "Map", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484487, - "createdAt": "2023-11-30T11:07:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f4d59f088b9a1e4d5e7101", + "ChallengeName": "Achievement Steam Customize Mask", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cfae2096738d1318f34", - "isCompleted": false + "StatId": "customize-mask-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f4d5d5088b9a1e4d5e7102", + "ChallengeName": "Achievement XBox Customize Mask", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 45 + "StatId": "customize-mask-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d03c29144c59ea90c08", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender IV", - "description": "Beat Villa 60 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfbd0ad8d2a2fd380d3" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f4d61d088b9a1e4d5e7103", + "ChallengeName": "Achievement PlayStation Customize Mask", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 60 + "StatId": "customize-mask-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0341323f00017789e0", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f4d64b088b9a1e4d5e7104", + "ChallengeName": "Achievement Epic Customize Mask", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "customize-mask-epic", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Heist", - "Map", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484501, - "createdAt": "2023-11-30T11:07:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5b4dc088b9a1e4d5ee735", + "ChallengeName": "Achievement Steam Art Gallery Shanda Panting Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cfbd0ad8d2a2fd380d3", - "isCompleted": false + "StatId": "artgallery-shanda-painting-secured-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5b5307c7bc2db61699d4d", + "ChallengeName": "Achievement XBox Art Gallery Shanda Panting Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 60 + "StatId": "artgallery-shanda-painting-secured-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d06d0ad8d2a2fd380d7", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender V", - "description": "Beat Villa 80 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d03c29144c59ea90c08" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5b5707c7bc2db61699d4e", + "ChallengeName": "Achievement PlayStation Art Gallery Shanda Panting Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 80 + "StatId": "artgallery-shanda-painting-secured-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d060aa8ea00019739a9", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5b5a07c7bc2db61699dc0", + "ChallengeName": "Achievement Epic Art Gallery Shanda Panting Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "artgallery-shanda-painting-secured-epic", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484510, - "createdAt": "2023-11-30T11:07:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5b9087c7bc2db6169a977", + "ChallengeName": "Achievement Steam Branch Bank No Dye Packs Exploded", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d03c29144c59ea90c08", - "isCompleted": false + "StatId": "branchbank-no-dye-packs-exploded-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ba5f7c7bc2db6169ac24", + "ChallengeName": "Achievement XBox Branch Bank No Dye Packs Exploded", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 80 + "StatId": "branchbank-no-dye-packs-exploded-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0bd0ad8d2a2fd380d9", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender VI", - "description": "Beat Villa 100 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d06d0ad8d2a2fd380d7" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ba9e088b9a1e4d5ef215", + "ChallengeName": "Achievement PlayStation Branch Bank No Dye Packs Exploded", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 100 + "StatId": "branchbank-no-dye-packs-exploded-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0b32f3d4000104edb8", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bad1088b9a1e4d5ef287", + "ChallengeName": "Achievement Epic Branch Bank No Dye Packs Exploded", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "branchbank-no-dye-packs-exploded-epic", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484522, - "createdAt": "2023-11-30T11:07:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bb7b088b9a1e4d5ef3e3", + "ChallengeName": "Achievement Steam Branch Bank Open Deposit Boxes", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d06d0ad8d2a2fd380d7", - "isCompleted": false + "StatId": "branchbank-open-deposit-boxes-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bc367c7bc2db6169afd7", + "ChallengeName": "Achievement XBox Branch Bank Open Deposit Boxes", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 100 + "StatId": "branchbank-open-deposit-boxes-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0de2096738d1318f3a", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender VII", - "description": "Beat Villa 120 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0bd0ad8d2a2fd380d9" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bc7a088b9a1e4d5ef628", + "ChallengeName": "Achievement PlayStation Branch Bank Open Deposit Boxes", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 120 + "StatId": "branchbank-open-deposit-boxes-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0d4ac7d600016d9a4a", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bcac088b9a1e4d5efb3a", + "ChallengeName": "Achievement Epic Branch Bank Open Deposit Boxes", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "branchbank-open-deposit-boxes-epic", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484528, - "createdAt": "2023-11-30T11:07:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bd08088b9a1e4d5efbac", + "ChallengeName": "Achievement Steam Cargo Dock Max Hi Tech Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0bd0ad8d2a2fd380d9", - "isCompleted": false + "StatId": "cargodock-max-hi-tech-secured-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bd3a7c7bc2db6169b239", + "ChallengeName": "Achievement XBox Cargo Dock Max Hi Tech Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 120 + "StatId": "cargodock-max-hi-tech-secured-xbox", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d10d0ad8d2a2fd380e1", - "namespace": "pd3", - "name": "Villa Loud I: Repeat Offender VIII", - "description": "Beat Villa 150 times on Normal or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0de2096738d1318f3a" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bd76088b9a1e4d5efd05", + "ChallengeName": "Achievement Epic Cargo Dock Max Hi Tech Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "value": 150 + "StatId": "cargodock-max-hi-tech-secured-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d106afee800019232d0", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5bdca7c7bc2db6169b4f9", + "ChallengeName": "Achievement PlayStation Cargo Dock Max Hi Tech Secured", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "cargodock-max-hi-tech-secured-playstation", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Normal" - ], - "orderNo": 2147484538, - "createdAt": "2023-11-30T11:08:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c315088b9a1e4d5f0412", + "ChallengeName": "Achievement Steam Cargo Dock Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0de2096738d1318f3a", - "isCompleted": false + "StatId": "cargodock-max-payout-achievement-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c348088b9a1e4d5f0413", + "ChallengeName": "Achievement XBox Cargo Dock Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-normal", - "currentValue": 0, - "targetValue": 150 + "StatId": "cargodock-max-payout-achievement-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf11b19600f98d3872c", - "namespace": "pd3", - "name": "Villa Loud II", - "description": "Beat Villa on Hard or higher difficulty after the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-hard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf10bb829000183baf9", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Hard", - "Villa" - ], - "orderNo": 2147484462, - "createdAt": "2023-11-30T11:07:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5c375088b9a1e4d5f0414", + "ChallengeName": "Achievement PlayStation Cargo Dock Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "cargodock-max-payout-achievement-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf792e1ea9e5c215313", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender I", - "description": "Beat Villa 10 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf11b19600f98d3872c" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c3a67c7bc2db6169bc63", + "ChallengeName": "Achievement Epic Cargo Dock Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 10 + "StatId": "cargodock-max-payout-achievement-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686cf76b6dac0001745e82", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c3fc7c7bc2db6169bc64", + "ChallengeName": "Achievement Steam Core Buffs Active", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "core-buffs-active-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484480, - "createdAt": "2023-11-30T11:07:35Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c424088b9a1e4d5f0415", + "ChallengeName": "Achievement XBox Core Buffs Active", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cf11b19600f98d3872c", - "isCompleted": false + "StatId": "core-buffs-active-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c44c7c7bc2db6169bc65", + "ChallengeName": "Achievement PlayStation Core Buffs Active", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 10 + "StatId": "core-buffs-active-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d00f46e611ca4072c2c", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender II", - "description": "Beat Villa 20 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf792e1ea9e5c215313" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5c4727c7bc2db6169bcea", + "ChallengeName": "Achievement Epic Core Buffs Active", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 20 + "StatId": "core-buffs-active-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d00eb4e1d0001f241d9", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ccfb7c7bc2db6169cead", + "ChallengeName": "Achievement Steam Heist Kill Sentry Turret", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "heist-sentry-turret-kills-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484495, - "createdAt": "2023-11-30T11:07:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cd2c088b9a1e4d5f1bdc", + "ChallengeName": "Achievement XBox Heist Kill Sentry Turret", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cf792e1ea9e5c215313", - "isCompleted": false + "StatId": "heist-sentry-turret-kills-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cd63088b9a1e4d5f1c4e", + "ChallengeName": "Achievement PlayStation Heist Kill Sentry Turret", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 20 + "StatId": "heist-sentry-turret-kills-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d04c29144c59ea90c0a", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender III", - "description": "Beat Villa 30 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d00f46e611ca4072c2c" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cd907c7bc2db6169d18b", + "ChallengeName": "Achievement Epic Heist Kill Sentry Turret", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 30 + "StatId": "heist-sentry-turret-kills-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d044985b400010d5130", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ceba7c7bc2db6169d35c", + "ChallengeName": "Achievement Steam Jewelry Store Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "jewelrystore-max-payout-achievement-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484505, - "createdAt": "2023-11-30T11:07:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cee37c7bc2db6169d3ff", + "ChallengeName": "Achievement XBox Jewelry Store Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d00f46e611ca4072c2c", - "isCompleted": false + "StatId": "jewelrystore-max-payout-achievement-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cf0a7c7bc2db6169d48f", + "ChallengeName": "Achievement PlayStation Jewelry Store Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 30 + "StatId": "jewelrystore-max-payout-achievement-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d05f78542b0d6155f64", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender IV", - "description": "Beat Villa 40 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d04c29144c59ea90c0a" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cf417c7bc2db6169d5e3", + "ChallengeName": "Achievement Epic Jewelry Store Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 40 + "StatId": "jewelrystore-max-payout-achievement-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d05eec864000185b6f1", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cfa8088b9a1e4d5f222b", + "ChallengeName": "Achievement Steam Jewelry Store Speed Run", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "jewelrystore-speed-run-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484508, - "createdAt": "2023-11-30T11:07:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5cfd7088b9a1e4d5f229d", + "ChallengeName": "Achievement XBox Jewelry Store Speed Run", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d04c29144c59ea90c0a", - "isCompleted": false + "StatId": "jewelrystore-speed-run-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d00c7c7bc2db6169d814", + "ChallengeName": "Achievement PlayStation Jewelry Store Speed Run", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 40 + "StatId": "jewelrystore-speed-run-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0998d0b724c6df8ca9", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender V", - "description": "Beat Villa 55 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d05f78542b0d6155f64" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d0487c7bc2db6169d969", + "ChallengeName": "Achievement Epic Jewelry Store Speed Run", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 55 + "StatId": "jewelrystore-speed-run-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d09eb244a00018970b9", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d1ae7c7bc2db6169dd1e", + "ChallengeName": "Achievement Steam Night Club No ID VIP Area", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "nightclub-no-id-vip-area-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484517, - "createdAt": "2023-11-30T11:07:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d1de088b9a1e4d5f27e4", + "ChallengeName": "Achievement XBox Night Club No ID VIP Area", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d05f78542b0d6155f64", - "isCompleted": false + "StatId": "nightclub-no-id-vip-area-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d2157c7bc2db6169dd1f", + "ChallengeName": "Achievement PlayStation Night Club No ID VIP Area", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 55 + "StatId": "nightclub-no-id-vip-area-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0a5bcccf1de73020a1", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender VI", - "description": "Beat Villa 70 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0998d0b724c6df8ca9" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5d23e7c7bc2db6169de24", + "ChallengeName": "Achievement Epic Night Club No ID VIP Area", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 70 + "StatId": "nightclub-no-id-vip-area-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0a4318a100016e88c0", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dc2f088b9a1e4d5f40ea", + "ChallengeName": "Achievement Steam Night Club Survived Assaults", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "nightclub-survived-assaults-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484519, - "createdAt": "2023-11-30T11:07:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dc777c7bc2db6169fea2", + "ChallengeName": "Achievement XBox Night Club Survived Assaults", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0998d0b724c6df8ca9", - "isCompleted": false + "StatId": "nightclub-survived-assaults-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dca47c7bc2db6169fea3", + "ChallengeName": "Achievement PlayStation Night Club Survived Assaults", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 70 + "StatId": "nightclub-survived-assaults-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ef46e611ca4072c30", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender VII", - "description": "Beat Villa 85 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0a5bcccf1de73020a1" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dcdc088b9a1e4d5f4323", + "ChallengeName": "Achievement Epic Night Club Survived Assaults", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 85 + "StatId": "nightclub-survived-assaults-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0e2d2f8f00011342e5", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dd4f088b9a1e4d5f447a", + "ChallengeName": "Achievement Steam Penthouse Human Shield Extract", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "penthouse-human-shield-extract-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484531, - "createdAt": "2023-11-30T11:07:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dda07c7bc2db616a01a4", + "ChallengeName": "Achievement XBox Penthouse Human Shield Extract", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0a5bcccf1de73020a1", - "isCompleted": false + "StatId": "penthouse-human-shield-extract-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ddd2088b9a1e4d5f4567", + "ChallengeName": "Achievement PlayStation Penthouse Human Shield Extract", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 85 + "StatId": "penthouse-human-shield-extract-playstation", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ec29144c59ea90c0c", - "namespace": "pd3", - "name": "Villa Loud II: Repeat Offender VIII", - "description": "Beat Villa 100 times on Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0ef46e611ca4072c30" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5ddff088b9a1e4d5f4568", + "ChallengeName": "Achievement Epic Penthouse Human Shield Extract", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "value": 100 + "StatId": "penthouse-human-shield-extract-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d0eeb4e1d0001f241da", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5de42088b9a1e4d5f45df", + "ChallengeName": "Achievement Steam Penthouse No Guard Kills", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "penthouse-no-guard-kills-steam", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Hard" - ], - "orderNo": 2147484533, - "createdAt": "2023-11-30T11:07:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5de79088b9a1e4d5f4651", + "ChallengeName": "Achievement XBox Penthouse No Guard Kills", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0ef46e611ca4072c30", - "isCompleted": false + "StatId": "penthouse-no-guard-kills-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dea87c7bc2db616a0389", + "ChallengeName": "Achievement PlayStation Penthouse No Guard Kills", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-hard", - "currentValue": 0, - "targetValue": 100 + "StatId": "penthouse-no-guard-kills-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf09c6dfc822b7f52f6", - "namespace": "pd3", - "name": "Villa Loud III", - "description": "Beat Villa on Very Hard or higher difficulty after the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-veryhard", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf05eab960001dcc236", - "stats": [ - { - "statCode": "infamy-point", - "value": 140 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Very", - "Hard", - "Villa" - ], - "orderNo": 2147484460, - "createdAt": "2023-11-30T11:07:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 1 + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5dedf7c7bc2db616a0405", + "ChallengeName": "Achievement Epic Penthouse No Guard Kills", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "penthouse-no-guard-kills-epic", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfc6f824913a5f0b60c", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender I", - "description": "Beat Villa 5 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf09c6dfc822b7f52f6" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5df6d088b9a1e4d5f47c3", + "ChallengeName": "Achievement Steam Primary Full Mod Unlock", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "value": 5 + "StatId": "primary-full-mod-unlock-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686cfc5eab960001dcc237", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5df97088b9a1e4d5f48b2", + "ChallengeName": "Achievement XBox Primary Full Mod Unlock", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 130 + "StatId": "primary-full-mod-unlock-xbox", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484489, - "createdAt": "2023-11-30T11:07:40Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dfc17c7bc2db616a055e", + "ChallengeName": "Achievement PlayStation Primary Full Mod Unlock", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cf09c6dfc822b7f52f6", - "isCompleted": false + "StatId": "primary-full-mod-unlock-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5dfef088b9a1e4d5f493a", + "ChallengeName": "Achievement Epic Primary Full Mod Unlock", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 5 + "StatId": "primary-full-mod-unlock-epic", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0326756e51ee177588", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender II", - "description": "Beat Villa 10 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfc6f824913a5f0b60c" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e037088b9a1e4d5f493b", + "ChallengeName": "Achievement Steam Sharke Bank Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "value": 10 + "StatId": "firstplayable-max-payout-achievement-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d03c344f50001149fc9", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e063088b9a1e4d5f493c", + "ChallengeName": "Achievement XBox Sharke Bank Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 150 + "StatId": "firstplayable-max-payout-achievement-xbox", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484502, - "createdAt": "2023-11-30T11:07:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e0ac088b9a1e4d5f4c16", + "ChallengeName": "Achievement PlayStation Sharke Bank Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686cfc6f824913a5f0b60c", - "isCompleted": false + "StatId": "firstplayable-max-payout-achievement-playstation", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e0dd088b9a1e4d5f4c17", + "ChallengeName": "Achievement Epic Sharke Bank Max Payout", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 10 + "StatId": "firstplayable-max-payout-achievement-epic", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0956fdd7be8e288a27", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender III", - "description": "Beat Villa 15 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0326756e51ee177588" + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e127088b9a1e4d5f4d35", + "ChallengeName": "Achievement Steam Sharke Bank No HR Computer", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "value": 15 + "StatId": "firstplayable-no-hr-computer-steam", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "reward": { - "rewardId": "65686d095eab960001dcc238", - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e161088b9a1e4d5f4d36", + "ChallengeName": "Achievement PlayStation Sharke Bank No HR Computer", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 170 + "StatId": "firstplayable-no-hr-computer-playstation", + "TargetProgress": 1 } ], - "items": [] + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484516, - "createdAt": "2023-11-30T11:07:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e1887c7bc2db616a097f", + "ChallengeName": "Achievement Epic Sharke Bank No HR Computer", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "challengeId": "65686d0326756e51ee177588", - "isCompleted": false + "StatId": "firstplayable-no-hr-computer-epic", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "", + "ChallengeID": "64f5e2157c7bc2db616a0bbf", + "ChallengeName": "Achievement XBox Sharke Bank No HR Computer", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 15 + "StatId": "firstplayable-no-hr-computer-xbox", + "TargetProgress": 1 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0dd0ad8d2a2fd380dd", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender IV", - "description": "Beat Villa 25 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0956fdd7be8e288a27" + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5e25e7c7bc2db616a0d18", + "ChallengeName": "Achievement Steam Taser Battery Enemy Stuns", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "taser-battery-enemy-stuns-steam", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" ] - }, - "objective": { - "stats": [ + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5e287088b9a1e4d5f5249", + "ChallengeName": "Achievement XBox Taser Battery Enemy Stuns", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "taser-battery-enemy-stuns-xbox", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5e2b27c7bc2db616a0ef2", + "ChallengeName": "Achievement PlayStation Taser Battery Enemy Stuns", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "taser-battery-enemy-stuns-playstation", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] + }, + { + "ChallengeDescription": "", + "ChallengeID": "64f5e2d8088b9a1e4d5f543e", + "ChallengeName": "Achievement Epic Taser Battery Enemy Stuns", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "taser-battery-enemy-stuns-epic", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Achievement" + ] + }, + { + "ChallengeDescription": "Beat Station on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "6539196dbea814bc50da5027", + "ChallengeName": "Station Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "653919c9bea814bc50da5029", + "ChallengeName": "Station Stealthy II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65391a3abea814bc50da502d", + "ChallengeName": "Station Stealthy III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65391aaf1af97db0922a18ae", + "ChallengeName": "Station Stealthy IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Station" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags.", + "ChallengeID": "65391b85bea814bc50da5031", + "ChallengeName": "Station: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Max" + ] + }, + { + "ChallengeDescription": "Complete the heist in less than 7 minutes.", + "ChallengeID": "65391bd01af97db0922a18b0", + "ChallengeName": "Station Optional Objective I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist without any crew member killing anyone.", + "ChallengeID": "65391c40bea814bc50da5033", + "ChallengeName": "Station Optional Objective II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist on Overkill with all the loot and without any crew member killing anyone.", + "ChallengeID": "65391c9c1af97db0922a18b2", + "ChallengeName": "Station Optional Objective III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Optional" + ] + }, + { + "ChallengeDescription": "Beat Villa on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65391d3b1af97db0922a18b4", + "ChallengeName": "Villa Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Villa" + ] + }, + { + "ChallengeDescription": "Beat Villa on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65391d7abea814bc50da5037", + "ChallengeName": "Villa Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Villa" + ] + }, + { + "ChallengeDescription": "Beat Villa on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65391dcebea814bc50da503b", + "ChallengeName": "Villa Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Villa" + ] + }, + { + "ChallengeDescription": "Beat Villa on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65391e14bea814bc50da503d", + "ChallengeName": "Villa Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Villa" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags.", + "ChallengeID": "653922371af97db0922a18bb", + "ChallengeName": "Villa: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Villa", + "Max" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the Assault has started.", + "ChallengeID": "6539228b1af97db0922a18be", + "ChallengeName": "Villa: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Villa", + "No", + "Down" + ] + }, + { + "ChallengeDescription": "Complete the heist without cooking a bad batch.", + "ChallengeID": "653922d71af97db0922a18c0", + "ChallengeName": "Villa Optional Objective I", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Villa", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist with 19 bags cooked and secured, without a bad batch.", + "ChallengeID": "65392322bea814bc50da5043", + "ChallengeName": "Villa Optional Objective II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Villa", + "Optional" + ] + }, + { + "ChallengeDescription": "Complete the heist with 7 pure bags cooked and secured on Overkill or higher.", + "ChallengeID": "653923791af97db0922a18c2", + "ChallengeName": "Villa Optional Objective III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Villa", + "Optional" + ] + }, + { + "ChallengeDescription": "Beat Station 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a21a0bea814bc50da5129", + "ChallengeName": "Station Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "6539196dbea814bc50da5027" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a22e61af97db0922a1996", + "ChallengeName": "Station Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a21a0bea814bc50da5129" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a2331bea814bc50da512f", + "ChallengeName": "Station Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "653a22e61af97db0922a1996" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a2388bea814bc50da5131", + "ChallengeName": "Station Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "653a2331bea814bc50da512f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a23ecbea814bc50da5133", + "ChallengeName": "Station Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "653a2388bea814bc50da5131" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a2433bea814bc50da5137", + "ChallengeName": "Station Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "653a23ecbea814bc50da5133" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a24731af97db0922a1998", + "ChallengeName": "Station Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 120 + } + ], + "PrerequisiteChallengeIds": [ + "653a2433bea814bc50da5137" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "653a24c6bea814bc50da5139", + "ChallengeName": "Station Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [ + "653a24731af97db0922a1998" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a25dfbea814bc50da513b", + "ChallengeName": "Station Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "653919c9bea814bc50da5029" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a263abea814bc50da513d", + "ChallengeName": "Station Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "653a25dfbea814bc50da513b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Stealth", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a2696bea814bc50da513f", + "ChallengeName": "Station Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a263abea814bc50da513d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Station", + "Stealth", + "Heist", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a26f3bea814bc50da5141", + "ChallengeName": "Station Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "653a2696bea814bc50da513f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a275b1af97db0922a199e", + "ChallengeName": "Station Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [ + "653a26f3bea814bc50da5141" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a27a9bea814bc50da5143", + "ChallengeName": "Station Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [ + "653a275b1af97db0922a199e" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a27eabea814bc50da5147", + "ChallengeName": "Station Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 85 + } + ], + "PrerequisiteChallengeIds": [ + "653a27a9bea814bc50da5143" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a285dbea814bc50da5149", + "ChallengeName": "Station Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "653a27eabea814bc50da5147" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a63601af97db0922a19cd", + "ChallengeName": "Station Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [ + "65391a3abea814bc50da502d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a6434bea814bc50da5186", + "ChallengeName": "Station Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "653a63601af97db0922a19cd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Station" + ] + }, + { + "ChallengeDescription": "Beat Station 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a64721af97db0922a19cf", + "ChallengeName": "Station Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "653a6434bea814bc50da5186" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a64cbbea814bc50da5188", + "ChallengeName": "Station Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "653a64721af97db0922a19cf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a64fe1af97db0922a19d3", + "ChallengeName": "Station Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [ + "653a64cbbea814bc50da5188" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Station", + "Stealth", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a653f1af97db0922a19d5", + "ChallengeName": "Station Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "653a64fe1af97db0922a19d3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a6582bea814bc50da518a", + "ChallengeName": "Station Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-hard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [ + "653a653f1af97db0922a19d5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "653a65d9bea814bc50da518e", + "ChallengeName": "Station Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "653a6582bea814bc50da518a" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Station 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a671b1af97db0922a19d7", + "ChallengeName": "Station Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [ + "65391aaf1af97db0922a18ae" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Special", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a675cbea814bc50da5192", + "ChallengeName": "Station Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [ + "653a671b1af97db0922a19d7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a678ebea814bc50da5194", + "ChallengeName": "Station Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "653a675cbea814bc50da5192" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a67dc1af97db0922a19d9", + "ChallengeName": "Station Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "653a678ebea814bc50da5194" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a682fbea814bc50da5196", + "ChallengeName": "Station Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "653a67dc1af97db0922a19d9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a68931af97db0922a19dd", + "ChallengeName": "Station Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "653a682fbea814bc50da5196" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a68d0bea814bc50da5198", + "ChallengeName": "Station Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a68931af97db0922a19dd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Station 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "653a693cbea814bc50da519a", + "ChallengeName": "Station Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "station-stealth-overkill", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "653a68d0bea814bc50da5198" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Station", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a7125bea814bc50da51a2", + "ChallengeName": "Villa Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "65391d3b1af97db0922a18b4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a715fbea814bc50da51a4", + "ChallengeName": "Villa Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a7125bea814bc50da51a2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a71941af97db0922a19e7", + "ChallengeName": "Villa Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "653a715fbea814bc50da51a4" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a71e51af97db0922a19e9", + "ChallengeName": "Villa Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "653a71941af97db0922a19e7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a7221bea814bc50da51a8", + "ChallengeName": "Villa Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "653a71e51af97db0922a19e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a7269bea814bc50da51aa", + "ChallengeName": "Villa Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "653a7221bea814bc50da51a8" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a72b0bea814bc50da51ac", + "ChallengeName": "Villa Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 120 + } + ], + "PrerequisiteChallengeIds": [ + "653a7269bea814bc50da51aa" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "653a7307bea814bc50da51b0", + "ChallengeName": "Villa Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [ + "653a72b0bea814bc50da51ac" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Normal" + ] + }, + { + "ChallengeDescription": "Beat Villa 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a761cbea814bc50da51b6", + "ChallengeName": "Villa Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "65391d7abea814bc50da5037" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a765b1af97db0922a19eb", + "ChallengeName": "Villa Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "653a761cbea814bc50da51b6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a769f1af97db0922a19ed", + "ChallengeName": "Villa Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a765b1af97db0922a19eb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a776d1af97db0922a19ef", + "ChallengeName": "Villa Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "653a769f1af97db0922a19ed" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a77b21af97db0922a19f1", + "ChallengeName": "Villa Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [ + "653a776d1af97db0922a19ef" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a77f51af97db0922a19f3", + "ChallengeName": "Villa Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [ + "653a77b21af97db0922a19f1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a78211af97db0922a19f5", + "ChallengeName": "Villa Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 85 + } + ], + "PrerequisiteChallengeIds": [ + "653a77f51af97db0922a19f3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a78661af97db0922a19f7", + "ChallengeName": "Villa Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "653a78211af97db0922a19f5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7ac5bea814bc50da51be", + "ChallengeName": "Villa Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [ + "65391dcebea814bc50da503b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7af91af97db0922a19fb", + "ChallengeName": "Villa Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "653a7ac5bea814bc50da51be" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7b381af97db0922a19fd", + "ChallengeName": "Villa Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "653a7af91af97db0922a19fb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7b72bea814bc50da51c2", + "ChallengeName": "Villa Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "653a7b381af97db0922a19fd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7bac1af97db0922a19ff", + "ChallengeName": "Villa Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [ + "653a7b72bea814bc50da51c2" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7bef1af97db0922a1a01", + "ChallengeName": "Villa Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "653a7bac1af97db0922a19ff" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7c4cbea814bc50da51c6", + "ChallengeName": "Villa Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [ + "653a7bef1af97db0922a1a01" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "653a7c991af97db0922a1a03", + "ChallengeName": "Villa Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "653a7c4cbea814bc50da51c6" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Villa 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7df81af97db0922a1a05", + "ChallengeName": "Villa Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [ + "65391e14bea814bc50da503d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7e261af97db0922a1a07", + "ChallengeName": "Villa Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [ + "653a7df81af97db0922a1a05" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7e66bea814bc50da51ca", + "ChallengeName": "Villa Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "653a7e261af97db0922a1a07" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Villa" + ] + }, + { + "ChallengeDescription": "Beat Villa 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7e931af97db0922a1a0b", + "ChallengeName": "Villa Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "653a7e66bea814bc50da51ca" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7edcbea814bc50da51cc", + "ChallengeName": "Villa Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "653a7e931af97db0922a1a0b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7f32bea814bc50da51ce", + "ChallengeName": "Villa Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "653a7edcbea814bc50da51cc" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7f64bea814bc50da51d0", + "ChallengeName": "Villa Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "653a7f32bea814bc50da51ce" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Villa 45 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "653a7fd8bea814bc50da51d4", + "ChallengeName": "Villa Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "villa-loud-overkill", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "653a7f64bea814bc50da51d0" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Villa", + "Overkill" + ] + }, + { + "ChallengeDescription": "Complete the heist with 19 pure batches cooked and secured on Overkill or higher.", + "ChallengeID": "6540bfab1af97db0922a1fa1", + "ChallengeName": "Villa Optional Objective IV", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "villa-optional-objective-4", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_cosmetic_weapon_charm_villa1", + "AccelbyteItemId": "8fe6eec8a321417d97fdf4395c3fa312", + "Quantity": 1 + } + ], + "Tags": [ + "Map", + "Heist", + "Villa", + "Optional" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654ced29bea814bc50da616b", + "ChallengeName": "Data Center Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654ced5a1af97db0922a2a13", + "ChallengeName": "Data Center Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654ced87bea814bc50da616d", + "ChallengeName": "Data Center Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654cee9e1af97db0922a2a17", + "ChallengeName": "Data Center Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654cf5f7bea814bc50da6177", + "ChallengeName": "Data Center Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654cf6881af97db0922a2a1f", + "ChallengeName": "Data Center Stealthy II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654cf6febea814bc50da617b", + "ChallengeName": "Data Center Stealthy III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654cf8aabea814bc50da617d", + "ChallengeName": "Data Center Stealthy IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags", + "ChallengeID": "654cfb8f1af97db0922a2a23", + "ChallengeName": "Data Center: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Max", + "Payout", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started", + "ChallengeID": "654cfbfcbea814bc50da6185", + "ChallengeName": "Data Center: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "No", + "Downs", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Steal the AI core from Data Center.", + "ChallengeID": "654cfc8f1af97db0922a2a25", + "ChallengeName": "Data Center Optional Objective I", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "Blow out the wall within 20 seconds after picking up the heavy server bag after the alarm has gone off.", + "ChallengeID": "654cfcbfbea814bc50da6187", + "ChallengeName": "Data Center Optional Objective II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-optional-objective-2", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "On Overkill difficulty or higher, as a crew, after picking up the combined server, don’t let it touch the ground or become downed while carrying it until you secure it.", + "ChallengeID": "654cfd0dbea814bc50da6189", + "ChallengeName": "Data Center Optional Objective III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-optional-objective-3", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Heist", + "Optional" + ] + }, + { + "ChallengeDescription": "On Very Hard difficulty or higher, decrypt every server and secure them.", + "ChallengeID": "654cfd431af97db0922a2a29", + "ChallengeName": "Data Center Optional Objective IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-optional-objective-4", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Heist", + "Optional" + ] + }, + { + "ChallengeDescription": "On Very Hard, complete the heist without anyone in the crew using vents and without raising the alarm.", + "ChallengeID": "654cfd71bea814bc50da618b", + "ChallengeName": "Data Center Optional Objective V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-optional-objective-5", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Heist", + "Optional" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df29e1af97db0922a2af3", + "ChallengeName": "Data Center Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654ced29bea814bc50da616b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df373bea814bc50da6269", + "ChallengeName": "Data Center Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654df29e1af97db0922a2af3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Loud", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 45 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df3f51af97db0922a2af5", + "ChallengeName": "Data Center Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "654df373bea814bc50da6269" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 60 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df4401af97db0922a2af9", + "ChallengeName": "Data Center Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "654df3f51af97db0922a2af5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 80 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df485bea814bc50da626b", + "ChallengeName": "Data Center Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 190 + } + ], + "PrerequisiteChallengeIds": [ + "654df4401af97db0922a2af9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 100 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df4d11af97db0922a2afb", + "ChallengeName": "Data Center Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654df485bea814bc50da626b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 120 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df50cbea814bc50da626d", + "ChallengeName": "Data Center Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [ + "654df4d11af97db0922a2afb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 150 times on Normal or higher difficulty after the Assault has started", + "ChallengeID": "654df548bea814bc50da6271", + "ChallengeName": "Data Center Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [ + "654df50cbea814bc50da626d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e048d1af97db0922a2b07", + "ChallengeName": "Data Center Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654ced5a1af97db0922a2a13" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Data", + "Center", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Data Center 20 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e050f1af97db0922a2b09", + "ChallengeName": "Data Center Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "654e048d1af97db0922a2b07" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Data", + "Center", + "Hard" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e06411af97db0922a2b0b", + "ChallengeName": "Data Center Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e050f1af97db0922a2b09" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 40 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e06651af97db0922a2b0d", + "ChallengeName": "Data Center Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "654e06411af97db0922a2b0b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 55 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e06b9bea814bc50da6285", + "ChallengeName": "Data Center Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [ + "654e06651af97db0922a2b0d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 70 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e06f5bea814bc50da6287", + "ChallengeName": "Data Center Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [ + "654e06b9bea814bc50da6285" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 85 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e07501af97db0922a2b11", + "ChallengeName": "Data Center Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 85 + } + ], + "PrerequisiteChallengeIds": [ + "654e06f5bea814bc50da6287" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 100 times on Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e07a71af97db0922a2b13", + "ChallengeName": "Data Center Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e07501af97db0922a2b11" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 5 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e1c151af97db0922a2b31", + "ChallengeName": "Data Center Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [ + "654ced87bea814bc50da616d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e224a1af97db0922a2b3b", + "ChallengeName": "Data Center Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654e1c151af97db0922a2b31" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e22771af97db0922a2b3d", + "ChallengeName": "Data Center Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654e224a1af97db0922a2b3b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 25 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e22b0bea814bc50da6293", + "ChallengeName": "Data Center Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "654e22771af97db0922a2b3d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 35 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e231a1af97db0922a2b41", + "ChallengeName": "Data Center Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [ + "654e22b0bea814bc50da6293" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 50 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e236dbea814bc50da6295", + "ChallengeName": "Data Center Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e231a1af97db0922a2b41" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 65 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e23d91af97db0922a2b43", + "ChallengeName": "Data Center Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [ + "654e236dbea814bc50da6295" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 80 times on Very Hard or higher difficulty after the Assault has started", + "ChallengeID": "654e241a1af97db0922a2b47", + "ChallengeName": "Data Center Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "654e23d91af97db0922a2b43" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Loud", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the FSA12", + "ChallengeID": "654e246cbea814bc50da6297", + "ChallengeName": "FSA12 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 3 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e27e71af97db0922a2b4f", + "ChallengeName": "Data Center Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [ + "654cee9e1af97db0922a2a17" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 6 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e28201af97db0922a2b51", + "ChallengeName": "Data Center Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [ + "654e27e71af97db0922a2b4f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e285f1af97db0922a2b53", + "ChallengeName": "Data Center Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654e28201af97db0922a2b51" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e28b01af97db0922a2b55", + "ChallengeName": "Data Center Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654e285f1af97db0922a2b53" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 20 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e28ecbea814bc50da6299", + "ChallengeName": "Data Center Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "654e28b01af97db0922a2b55" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 25 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e2933bea814bc50da629b", + "ChallengeName": "Data Center Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "654e28ecbea814bc50da6299" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e298fbea814bc50da629d", + "ChallengeName": "Data Center Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e2933bea814bc50da629b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 45 times on Overkill or higher difficulty after the Assault has started", + "ChallengeID": "654e29d9bea814bc50da629f", + "ChallengeName": "Data Center Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-loud-overkill", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "654e298fbea814bc50da629d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Loud", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2a9fbea814bc50da62a3", + "ChallengeName": "Data Center Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654cf5f7bea814bc50da6177" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Map", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2ca2bea814bc50da62a5", + "ChallengeName": "Data Center Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e2a9fbea814bc50da62a3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 45 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2d08bea814bc50da62a7", + "ChallengeName": "Data Center Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [ + "654e2ca2bea814bc50da62a5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 60 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2d381af97db0922a2b5d", + "ChallengeName": "Data Center Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [ + "654e2d08bea814bc50da62a7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the FSA12.", + "ChallengeID": "654e2d84bea814bc50da62a9", + "ChallengeName": "FSA12 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e246cbea814bc50da6297" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 80 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2d861af97db0922a2b61", + "ChallengeName": "Data Center Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "654e2d381af97db0922a2b5d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Heist", + "Stealth", + "Normal", + "Data", + "Center", + "Map" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the FSA12.", + "ChallengeID": "654e2dadbea814bc50da62ab", + "ChallengeName": "FSA12 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e2d84bea814bc50da62a9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 100 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2dca1af97db0922a2b63", + "ChallengeName": "Data Center Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e2d861af97db0922a2b61" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the FSA12.", + "ChallengeID": "654e2dd21af97db0922a2b65", + "ChallengeName": "FSA12 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [ + "654e2dadbea814bc50da62ab" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the FSA12.", + "ChallengeID": "654e2dfb1af97db0922a2b67", + "ChallengeName": "FSA12 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [ + "654e2dd21af97db0922a2b65" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 120 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2e09bea814bc50da62ad", + "ChallengeName": "Data Center Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 120 + } + ], + "PrerequisiteChallengeIds": [ + "654e2dca1af97db0922a2b63" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Normal", + "Data", + "Center", + "Stealth" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the FSA12.", + "ChallengeID": "654e2e1fbea814bc50da62af", + "ChallengeName": "FSA12 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [ + "654e2dfb1af97db0922a2b67" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the FSA12.", + "ChallengeID": "654e2e5f1af97db0922a2b69", + "ChallengeName": "FSA12 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [ + "654e2e1fbea814bc50da62af" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 150 times on Normal or higher difficulty before the Assault has started", + "ChallengeID": "654e2e6a1af97db0922a2b6b", + "ChallengeName": "Data Center Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [ + "654e2e09bea814bc50da62ad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Normal", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while firing from the hip with the FSA12.", + "ChallengeID": "654e2e9f1af97db0922a2b6f", + "ChallengeName": "FSA12 Hip Fire I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-hipfire-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Hip", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while firing from the hip with the FSA12.", + "ChallengeID": "654e2edd1af97db0922a2b71", + "ChallengeName": "FSA12 Hip Fire II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-hipfire-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e2e9f1af97db0922a2b6f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Hip", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while firing from the hip with the FSA12.", + "ChallengeID": "654e2f1a1af97db0922a2b73", + "ChallengeName": "FSA12 Hip Fire III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-hipfire-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e2edd1af97db0922a2b71" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Hip", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while firing from the hip with the FSA12.", + "ChallengeID": "654e2f9ebea814bc50da62b1", + "ChallengeName": "FSA12 Hip Fire IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-hipfire-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e2f1a1af97db0922a2b73" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Hip", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while firing from the hip with the FSA12.", + "ChallengeID": "654e2fc81af97db0922a2b75", + "ChallengeName": "FSA12 Hip Fire V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-hipfire-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "654e2f9ebea814bc50da62b1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "Hip", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies without reloading 5 times using the FSA12.", + "ChallengeID": "654e3041bea814bc50da62b5", + "ChallengeName": "FSA12 Single Clip I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-noreload-kills", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies without reloading 15 times using the FSA12.", + "ChallengeID": "654e30671af97db0922a2b77", + "ChallengeName": "FSA12 Single Clip II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-noreload-kills", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654e3041bea814bc50da62b5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies without reloading 30 times using the FSA12.", + "ChallengeID": "654e3096bea814bc50da62b7", + "ChallengeName": "FSA12 Single Clip III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-noreload-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e30671af97db0922a2b77" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies without reloading 50 times using the FSA12.", + "ChallengeID": "654e30e8bea814bc50da62b9", + "ChallengeName": "FSA12 Single Clip IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-noreload-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e3096bea814bc50da62b7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 2 enemies without reloading 75 times using the FSA12 .", + "ChallengeID": "654e3103bea814bc50da62bb", + "ChallengeName": "FSA12 Single Clip V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-noreload-kills", + "TargetProgress": 75 + } + ], + "PrerequisiteChallengeIds": [ + "654e30e8bea814bc50da62b9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FSA12", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Complete a heist using the FSA12 with a mod equipped.", + "ChallengeID": "654e328cbea814bc50da62bd", + "ChallengeName": "FSA12 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FSA12" + ] + }, + { + "ChallengeDescription": "Complete a heist with 4 mod slots filled on the FSA12 with the weapon equipped.", + "ChallengeID": "654e32babea814bc50da62bf", + "ChallengeName": "FSA12 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FSA12" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the FSA12 with the weapon equipped.", + "ChallengeID": "654e32dcbea814bc50da62c1", + "ChallengeName": "FSA12 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "shotgun-fsa12-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FSA12" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e33521af97db0922a2b7f", + "ChallengeName": "Data Center Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654cf6881af97db0922a2a1f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 20 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e3385bea814bc50da62c3", + "ChallengeName": "Data Center Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "654e33521af97db0922a2b7f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e33c01af97db0922a2b81", + "ChallengeName": "Data Center Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e3385bea814bc50da62c3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 40 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e33ff1af97db0922a2b83", + "ChallengeName": "Data Center Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "654e33c01af97db0922a2b81" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the FIK22.", + "ChallengeID": "654e34201af97db0922a2b85", + "ChallengeName": "FIK22 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 55 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e3446bea814bc50da62c5", + "ChallengeName": "Data Center Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [ + "654e33ff1af97db0922a2b83" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the FIK22.", + "ChallengeID": "654e34481af97db0922a2b87", + "ChallengeName": "FIK22 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e34201af97db0922a2b85" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the FIK22.", + "ChallengeID": "654e346abea814bc50da62c7", + "ChallengeName": "FIK22 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e34481af97db0922a2b87" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 70 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e34931af97db0922a2b89", + "ChallengeName": "Data Center Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [ + "654e3446bea814bc50da62c5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the FIK22.", + "ChallengeID": "654e34b61af97db0922a2b8b", + "ChallengeName": "FIK22 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [ + "654e346abea814bc50da62c7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 85 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e34bebea814bc50da62cb", + "ChallengeName": "Data Center Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 85 + } + ], + "PrerequisiteChallengeIds": [ + "654e34931af97db0922a2b89" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the FIK22.", + "ChallengeID": "654e34d3bea814bc50da62cd", + "ChallengeName": "FIK22 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [ + "654e34b61af97db0922a2b8b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 100 times on Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e34edbea814bc50da62cf", + "ChallengeName": "Data Center Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e34bebea814bc50da62cb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Data", + "Center", + "Hard" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the FIK22.", + "ChallengeID": "654e34f41af97db0922a2b8d", + "ChallengeName": "FIK22 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [ + "654e34d3bea814bc50da62cd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Cobmat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the FIK22.", + "ChallengeID": "654e35efbea814bc50da62d3", + "ChallengeName": "FIK22 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [ + "654e34f41af97db0922a2b8d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 5 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e36801af97db0922a2b8f", + "ChallengeName": "Data Center Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [ + "654cf6febea814bc50da617b" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e36c0bea814bc50da62d5", + "ChallengeName": "Data Center Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654e36801af97db0922a2b8f" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e36f61af97db0922a2b93", + "ChallengeName": "Data Center Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654e36c0bea814bc50da62d5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the FIK22.", + "ChallengeID": "654e36ffbea814bc50da62d7", + "ChallengeName": "FIK22 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the FIK22.", + "ChallengeID": "654e371fbea814bc50da62d9", + "ChallengeName": "FIK22 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e36ffbea814bc50da62d7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the FIK22.", + "ChallengeID": "654e373c1af97db0922a2b95", + "ChallengeName": "FIK22 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-ads-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e371fbea814bc50da62d9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 25 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e3741bea814bc50da62db", + "ChallengeName": "Data Center Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "654e36f61af97db0922a2b93" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Data", + "Center", + "Stealth", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the FIK22.", + "ChallengeID": "654e37611af97db0922a2b97", + "ChallengeName": "FIK22 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-ads-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e373c1af97db0922a2b95" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 35 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e3769bea814bc50da62dd", + "ChallengeName": "Data Center Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [ + "654e3741bea814bc50da62db" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the FIK22.", + "ChallengeID": "654e3785bea814bc50da62df", + "ChallengeName": "FIK22 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-ads-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "654e37611af97db0922a2b97" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 50 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e3798bea814bc50da62e1", + "ChallengeName": "Data Center Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e3769bea814bc50da62dd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Very", + "Hard", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 65 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e37d71af97db0922a2b99", + "ChallengeName": "Data Center Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [ + "654e3798bea814bc50da62e1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Data", + "Center", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Defeat 10 Heavy SWAT with a Headshot using the FIK22.", + "ChallengeID": "654e37e8bea814bc50da62e3", + "ChallengeName": "FIK22 Armored Headshot I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-armored-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Armor", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 80 times on Very Hard or higher difficulty before the Assault has started", + "ChallengeID": "654e38091af97db0922a2b9b", + "ChallengeName": "Data Center Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [ + "654e37d71af97db0922a2b99" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Data", + "Center", + "Very", + "Hard" + ] + }, + { + "ChallengeDescription": "Defeat 50 Heavy SWAT with a Headshot using the FIK22.", + "ChallengeID": "654e380c1af97db0922a2b9d", + "ChallengeName": "FIK22 Armored Headshot II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-armored-headshot-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e37e8bea814bc50da62e3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Armor", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 Heavy SWAT with a Headshot using the FIK22.", + "ChallengeID": "654e3835bea814bc50da62e7", + "ChallengeName": "FIK22 Armored Headshot III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-armored-headshot-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e380c1af97db0922a2b9d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Armor", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 Heavy SWAT with a Headshot using the FIK22.", + "ChallengeID": "654e3873bea814bc50da62e9", + "ChallengeName": "FIK22 Armored Headshot IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-armored-headshot-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e3835bea814bc50da62e7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Armor", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 Heavy SWAT with a Headshot using the FIK22.", + "ChallengeID": "654e38a21af97db0922a2b9f", + "ChallengeName": "FIK22 Armored Headshot V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-armored-headshot-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "654e3873bea814bc50da62e9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "FIK22", + "Armor", + "Headshot", + "Kill" + ] + }, + { + "ChallengeDescription": "Complete a heist using the FIK22 with a mod equipped.", + "ChallengeID": "654e38cb1af97db0922a2ba1", + "ChallengeName": "FIK22 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FIK22" + ] + }, + { + "ChallengeDescription": "Complete a heist with 4 mod slots filled on the FIK22 with the weapon equipped.", + "ChallengeID": "654e38ecbea814bc50da62eb", + "ChallengeName": "FIK22 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FIK22" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the FIK22 with the weapon equipped.", + "ChallengeID": "654e390a1af97db0922a2ba3", + "ChallengeName": "FIK22 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "marksman-fik22-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "FIK22" + ] + }, + { + "ChallengeDescription": "Beat Data Center 3 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e392b1af97db0922a2ba5", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [ + "654cf8aabea814bc50da617d" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 6 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e3961bea814bc50da62ed", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [ + "654e392b1af97db0922a2ba5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 10 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e398bbea814bc50da62ef", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [ + "654e3961bea814bc50da62ed" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Data", + "Center", + "Map", + "Heist", + "Stealth", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 15 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e39ccbea814bc50da62f1", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [ + "654e398bbea814bc50da62ef" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Data", + "Center", + "Overkill" + ] + }, + { + "ChallengeDescription": "Beat Data Center 20 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e3a22bea814bc50da62f3", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [ + "654e39ccbea814bc50da62f1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Data", + "Center", + "Overkill", + "Stealth" + ] + }, + { + "ChallengeDescription": "Beat Data Center 25 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e3a4d1af97db0922a2ba9", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [ + "654e3a22bea814bc50da62f3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 30 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e3a7e1af97db0922a2bad", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [ + "654e3a4d1af97db0922a2ba9" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Beat Data Center 40 times on Overkill or higher difficulty before the Assault has started", + "ChallengeID": "654e3aa8bea814bc50da62f5", + "ChallengeName": "Data Center Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "datacenter-stealth-overkill", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [ + "654e3a7e1af97db0922a2bad" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Heist", + "Stealth", + "Overkill", + "Data", + "Center" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the WAR 45.", + "ChallengeID": "654e3dd11af97db0922a2bb1", + "ChallengeName": "WAR45 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the WAR 45.", + "ChallengeID": "654e3df21af97db0922a2bb3", + "ChallengeName": "WAR45 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e3dd11af97db0922a2bb1" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the WAR 45.", + "ChallengeID": "654e3e171af97db0922a2bb5", + "ChallengeName": "WAR45 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "value": 25 + "StatId": "smg-war45-kills", + "TargetProgress": 200 } - ] - }, - "reward": { - "rewardId": "65686d0deb244a00018970ba", - "stats": [ + ], + "PrerequisiteChallengeIds": [ + "654e3df21af97db0922a2bb3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the WAR45.", + "ChallengeID": "654e3ebcbea814bc50da62fb", + "ChallengeName": "WAR45 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 190 + "StatId": "smg-war45-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [ + "654e3e171af97db0922a2bb5" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the WAR45.", + "ChallengeID": "654e3ee21af97db0922a2bb7", + "ChallengeName": "WAR45 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-kills", + "TargetProgress": 500 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484529, - "createdAt": "2023-11-30T11:07:57Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [ + "654e3ebcbea814bc50da62fb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the WAR45.", + "ChallengeID": "654e3f04bea814bc50da62fd", + "ChallengeName": "WAR45 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ { - "challengeId": "65686d0956fdd7be8e288a27", - "isCompleted": false + "StatId": "smg-war45-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [ + "654e3ee21af97db0922a2bb7" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the WAR45.", + "ChallengeID": "654e3f21bea814bc50da62ff", + "ChallengeName": "WAR45 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [ + "654e3f04bea814bc50da62fd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the WAR45.", + "ChallengeID": "654e3f58bea814bc50da6301", + "ChallengeName": "WAR45 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-ads-kills", + "TargetProgress": 20 } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the WAR45.", + "ChallengeID": "654e3fa21af97db0922a2bbb", + "ChallengeName": "WAR45 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e3f58bea814bc50da6301" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the WAR45.", + "ChallengeID": "654e3fc01af97db0922a2bbd", + "ChallengeName": "WAR45 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-ads-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e3fa21af97db0922a2bbb" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the WAR45.", + "ChallengeID": "654e3fdb1af97db0922a2bbf", + "ChallengeName": "WAR45 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-ads-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e3fc01af97db0922a2bbd" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the WAR45.", + "ChallengeID": "654e40151af97db0922a2bc1", + "ChallengeName": "WAR45 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-ads-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "654e3fdb1af97db0922a2bbf" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the WAR45.", + "ChallengeID": "654e412ebea814bc50da6305", + "ChallengeName": "WAR45 Suppressed I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the WAR45.", + "ChallengeID": "654e415a1af97db0922a2bc3", + "ChallengeName": "WAR45 Suppressed II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [ + "654e412ebea814bc50da6305" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the WAR45.", + "ChallengeID": "654e4188bea814bc50da6307", + "ChallengeName": "WAR45 Suppressed III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-suppressor-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [ + "654e415a1af97db0922a2bc3" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the WAR45.", + "ChallengeID": "654e41b2bea814bc50da6309", + "ChallengeName": "WAR45 Suppressed IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-suppressor-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [ + "654e4188bea814bc50da6307" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the WAR45.", + "ChallengeID": "654e41d41af97db0922a2bc7", + "ChallengeName": "WAR45 Suppressed V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-suppressor-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [ + "654e41b2bea814bc50da6309" + ], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "WAR45", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Complete a heist using the WAR45 with a mod equipped.", + "ChallengeID": "654e41f31af97db0922a2bc9", + "ChallengeName": "WAR45 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "WAR45" + ] + }, + { + "ChallengeDescription": "Complete a heist with 4 mod slots filled on the WAR45 with the weapon equipped.", + "ChallengeID": "654e4211bea814bc50da630b", + "ChallengeName": "WAR45 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "WAR45" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the WAR45 with the weapon equipped.", + "ChallengeID": "654e42341af97db0922a2bcb", + "ChallengeName": "WAR45 Master ", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-war45-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "WAR45" + ] + }, + { + "ChallengeDescription": "Adaptable Ballistic Vest", + "ChallengeID": "65b90e00875efe084f509eee", + "ChallengeName": "Infamy MS - Armor - Adaptable Ballistic Vest", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "infamy-point", + "TargetProgress": 6200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_armor_adaptableballistictvest", + "AccelbyteItemId": "acb5042baefb4f63adb979b44379a3e8", + "Quantity": 1 + } + ], + "Tags": [ + "General", + "Meta" + ] + }, + { + "ChallengeDescription": "Beat Fort on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e361", + "ChallengeName": "Fort Loud I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e363", + "ChallengeName": "Fort Loud II", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e365", + "ChallengeName": "Fort Loud III", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e367", + "ChallengeName": "Fort Loud IV", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e369", + "ChallengeName": "Fort Stealthy I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e36b", + "ChallengeName": "Fort Stealthy II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e36d", + "ChallengeName": "Fort Stealthy III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e36f", + "ChallengeName": "Fort Stealthy IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Escape with the maximum amount of bags.", + "ChallengeID": "65ca11ea83991e391072e371", + "ChallengeName": "Fort: Full Payout", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-max-payout", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Max", + "Payout", + "Fort" + ] + }, + { + "ChallengeDescription": "Escape without being downed after the assault has started.", + "ChallengeID": "65ca11ea83991e391072e373", + "ChallengeName": "Fort: On Your Feet", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-no-downs", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "No", + "Downs", + "Fort" + ] + }, + { + "ChallengeDescription": "Complete the heist without raising the alarm or triggering the weighted floor.", + "ChallengeID": "65ca11ea83991e391072e375", + "ChallengeName": "Fort Optional Objective I", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Fort", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "Use the donut box to successfully distract law enforcement.", + "ChallengeID": "65ca11ea83991e391072e377", + "ChallengeName": "Fort Optional Objective II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Fort", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "As a Crew, eat all the donuts that aren't in the donut box.", + "ChallengeID": "65ca11ea83991e391072e379", + "ChallengeName": "Fort Optional Objective III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Fort", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "After the alarm has been raised, steal the data Vlad is looking for.", + "ChallengeID": "65ca11ea83991e391072e37b", + "ChallengeName": "Fort Optional Objective IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Fort", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "Before the alarm has been raised, plant the audio bugs in the police station.", + "ChallengeID": "65ca11ea83991e391072e37d", + "ChallengeName": "Fort Optional Objective V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-optional-objective-1", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Fort", + "Optional", + "Heist" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e37f", + "ChallengeName": "Fort Loud I: Repeat Offender I", + "InfamyPointReward": 110, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e381", + "ChallengeName": "Fort Loud I: Repeat Offender II", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 45 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e383", + "ChallengeName": "Fort Loud I: Repeat Offender III", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 60 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e385", + "ChallengeName": "Fort Loud I: Repeat Offender IV", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 80 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e387", + "ChallengeName": "Fort Loud I: Repeat Offender V", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 100 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e389", + "ChallengeName": "Fort Loud I: Repeat Offender VI", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 120 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e38b", + "ChallengeName": "Fort Loud I: Repeat Offender VII", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 120 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 150 times on Normal or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e38d", + "ChallengeName": "Fort Loud I: Repeat Offender VIII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e38f", + "ChallengeName": "Fort Loud II: Repeat Offender I", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 20 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e391", + "ChallengeName": "Fort Loud II: Repeat Offender II", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e393", + "ChallengeName": "Fort Loud II: Repeat Offender III", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 40 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e395", + "ChallengeName": "Fort Loud II: Repeat Offender IV", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 55 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e397", + "ChallengeName": "Fort Loud II: Repeat Offender V", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 70 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e399", + "ChallengeName": "Fort Loud II: Repeat Offender VI", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 85 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e39b", + "ChallengeName": "Fort Loud II: Repeat Offender VII", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 100 times on Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11ea83991e391072e39d", + "ChallengeName": "Fort Loud II: Repeat Offender VIII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 5 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e39f", + "ChallengeName": "Fort Loud III: Repeat Offender I", + "InfamyPointReward": 130, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3a1", + "ChallengeName": "Fort Loud III: Repeat Offender II", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3a3", + "ChallengeName": "Fort Loud III: Repeat Offender III", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 25 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3a5", + "ChallengeName": "Fort Loud III: Repeat Offender IV", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 35 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3a7", + "ChallengeName": "Fort Loud III: Repeat Offender V", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 50 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3a9", + "ChallengeName": "Fort Loud III: Repeat Offender VI", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 65 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3ab", + "ChallengeName": "Fort Loud III: Repeat Offender VII", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 80 times on Very Hard or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3ad", + "ChallengeName": "Fort Loud III: Repeat Offender VIII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 3 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3af", + "ChallengeName": "Fort Loud IV: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 6 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3b1", + "ChallengeName": "Fort Loud IV: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3b3", + "ChallengeName": "Fort Loud IV: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3b5", + "ChallengeName": "Fort Loud IV: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 20 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3b7", + "ChallengeName": "Fort Loud IV: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 25 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3b9", + "ChallengeName": "Fort Loud IV: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3bb", + "ChallengeName": "Fort Loud IV: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 45 times on Overkill or higher difficulty after the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3bd", + "ChallengeName": "Fort Loud IV: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-loud-overkill", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Loud", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3bf", + "ChallengeName": "Fort Stealthy I: Repeat Offender I", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3c1", + "ChallengeName": "Fort Stealthy I: Repeat Offender II", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 45 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3c3", + "ChallengeName": "Fort Stealthy I: Repeat Offender III", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 45 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 60 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3c5", + "ChallengeName": "Fort Stealthy I: Repeat Offender IV", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 80 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3c7", + "ChallengeName": "Fort Stealthy I: Repeat Offender V", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 100 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3c9", + "ChallengeName": "Fort Stealthy I: Repeat Offender VI", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 120 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3cb", + "ChallengeName": "Fort Stealthy I: Repeat Offender VII", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 120 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 150 times on Normal or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3cd", + "ChallengeName": "Fort Stealthy I: Repeat Offender VIII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-normal", + "TargetProgress": 150 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Normal", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3cf", + "ChallengeName": "Fort Stealthy II: Repeat Offender I", + "InfamyPointReward": 150, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 20 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3d1", + "ChallengeName": "Fort Stealthy II: Repeat Offender II", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3d3", + "ChallengeName": "Fort Stealthy II: Repeat Offender III", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 40 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3d5", + "ChallengeName": "Fort Stealthy II: Repeat Offender IV", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 55 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3d7", + "ChallengeName": "Fort Stealthy II: Repeat Offender V", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 55 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 70 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3d9", + "ChallengeName": "Fort Stealthy II: Repeat Offender VI", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 70 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 85 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3db", + "ChallengeName": "Fort Stealthy II: Repeat Offender VII", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 85 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 100 times on Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3dd", + "ChallengeName": "Fort Stealthy II: Repeat Offender VIII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-hard", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 5 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3df", + "ChallengeName": "Fort Stealthy III: Repeat Offender I", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3e1", + "ChallengeName": "Fort Stealthy III: Repeat Offender II", + "InfamyPointReward": 180, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3e3", + "ChallengeName": "Fort Stealthy III: Repeat Offender III", + "InfamyPointReward": 200, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 25 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3e5", + "ChallengeName": "Fort Stealthy III: Repeat Offender IV", + "InfamyPointReward": 220, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 35 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3e7", + "ChallengeName": "Fort Stealthy III: Repeat Offender V", + "InfamyPointReward": 240, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 35 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 50 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3e9", + "ChallengeName": "Fort Stealthy III: Repeat Offender VI", + "InfamyPointReward": 260, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 65 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3eb", + "ChallengeName": "Fort Stealthy III: Repeat Offender VII", + "InfamyPointReward": 280, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 65 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 80 times on Very Hard or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3ed", + "ChallengeName": "Fort Stealthy III: Repeat Offender VIII", + "InfamyPointReward": 300, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-veryhard", + "TargetProgress": 80 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Very", + "Hard", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 3 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3ef", + "ChallengeName": "Fort Stealthy IV: Repeat Offender I", + "InfamyPointReward": 170, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 3 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 6 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3f1", + "ChallengeName": "Fort Stealthy IV: Repeat Offender II", + "InfamyPointReward": 190, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 6 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 10 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3f3", + "ChallengeName": "Fort Stealthy IV: Repeat Offender III", + "InfamyPointReward": 210, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 15 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3f5", + "ChallengeName": "Fort Stealthy IV: Repeat Offender IV", + "InfamyPointReward": 230, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 20 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3f7", + "ChallengeName": "Fort Stealthy IV: Repeat Offender V", + "InfamyPointReward": 250, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 25 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3f9", + "ChallengeName": "Fort Stealthy IV: Repeat Offender VI", + "InfamyPointReward": 270, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 25 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 30 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3fb", + "ChallengeName": "Fort Stealthy IV: Repeat Offender VII", + "InfamyPointReward": 290, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Beat Fort 40 times on Overkill or higher difficulty before the Assault has started.", + "ChallengeID": "65ca11eb83991e391072e3fd", + "ChallengeName": "Fort Stealthy IV: Repeat Offender VIII", + "InfamyPointReward": 310, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "fort-stealth-overkill", + "TargetProgress": 40 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Map", + "Stealth", + "Heist", + "Overkill", + "Fort" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the ATK7.", + "ChallengeID": "65cf4cad83991e391072e403", + "ChallengeName": "ATK7 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the ATK7.", + "ChallengeID": "65cf4cd683991e391072e405", + "ChallengeName": "ATK7 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the ATK7.", + "ChallengeID": "65cf4d0383991e391072e407", + "ChallengeName": "ATK7 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the ATK7.", + "ChallengeID": "65cf4d2b75263788121d0ee0", + "ChallengeName": "ATK7 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the ATK7.", + "ChallengeID": "65cf4d5875263788121d0ee2", + "ChallengeName": "ATK7 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the ATK7.", + "ChallengeID": "65cf4d7a75263788121d0ee4", + "ChallengeName": "ATK7 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the ATK7.", + "ChallengeID": "65cf4da083991e391072e409", + "ChallengeName": "ATK7 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Kill" + ] + }, + { + "ChallengeDescription": "Complete a heist using the ATK7 with a mod equipped.", + "ChallengeID": "65cf4e0375263788121d0ee6", + "ChallengeName": "ATK7 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "ATK7" + ] + }, + { + "ChallengeDescription": "Complete a heist with 4 mod slots filled on the ATK7 with the weapon equipped.", + "ChallengeID": "65cf4e3583991e391072e40b", + "ChallengeName": "ATK7 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "ATK7" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the ATK7 with the weapon equipped.", + "ChallengeID": "65cf4e6d75263788121d0ee8", + "ChallengeName": "ATK7 Master ", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "ATK7" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies with the suppressor equipped on the ATK7.", + "ChallengeID": "65cf4ecf83991e391072e40d", + "ChallengeName": "ATK7 Suppressed I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-suppressor-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the suppressor equipped on the ATK7.", + "ChallengeID": "65cf4eff75263788121d0eea", + "ChallengeName": "ATK7 Suppressed II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-suppressor-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the suppressor equipped on the ATK7.", + "ChallengeID": "65cf4f3183991e391072e40f", + "ChallengeName": "ATK7 Suppressed III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-suppressor-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the suppressor equipped on the ATK7.", + "ChallengeID": "65cf4f5a83991e391072e411", + "ChallengeName": "ATK7 Suppressed IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-suppressor-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies with the suppressor equipped on the ATK7.", + "ChallengeID": "65cf4f8683991e391072e413", + "ChallengeName": "ATK7 Suppressed V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-suppressor-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "Suppressor", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the ATK7.", + "ChallengeID": "65cf502c83991e391072e415", + "ChallengeName": "ATK7 ADS I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the ATK7.", + "ChallengeID": "65cf505075263788121d0eec", + "ChallengeName": "ATK7 ADS II", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the ATK7.", + "ChallengeID": "65cf507b83991e391072e417", + "ChallengeName": "ATK7 ADS III", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-ads-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the ATK7.", + "ChallengeID": "65cf50b575263788121d0eee", + "ChallengeName": "ATK7 ADS IV", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-ads-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the ATK7.", + "ChallengeID": "65cf50d983991e391072e419", + "ChallengeName": "ATK7 ADS V", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "smg-atk7-ads-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "ATK7", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the RG5", + "ChallengeID": "65cf516b75263788121d0ef0", + "ChallengeName": "RG5 I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the RG5", + "ChallengeID": "65cf518f83991e391072e41b", + "ChallengeName": "RG5 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the RG5", + "ChallengeID": "65cf51b975263788121d0ef2", + "ChallengeName": "RG5 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the RG5", + "ChallengeID": "65cf51ec83991e391072e41d", + "ChallengeName": "RG5 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the RG5", + "ChallengeID": "65cf521183991e391072e41f", + "ChallengeName": "RG5 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the RG5", + "ChallengeID": "65cf523775263788121d0ef4", + "ChallengeName": "RG5 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the RG5", + "ChallengeID": "65cf526783991e391072e421", + "ChallengeName": "RG5 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "Kill" + ] + }, + { + "ChallengeDescription": "Complete a heist using the RG5 with a mod equipped", + "ChallengeID": "65cf52cb75263788121d0ef6", + "ChallengeName": "RG5 Rookie", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "RG5" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the RG5 with the weapon equipped", + "ChallengeID": "65cf52f783991e391072e423", + "ChallengeName": "RG5 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "RG5" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the RG5 with the weapon equipped", + "ChallengeID": "65cf532083991e391072e425", + "ChallengeName": "RG5 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "RG5" + ] + }, + { + "ChallengeDescription": "Defeat 20 enemies while aiming down sights with the RG5", + "ChallengeID": "65cf56ae83991e391072e427", + "ChallengeName": "RG5 ADS I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-ads-kills", + "TargetProgress": 20 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies while aiming down sights with the RG5", + "ChallengeID": "65cf56d075263788121d0ef8", + "ChallengeName": "RG5 ADS II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-ads-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies while aiming down sights with the RG5", + "ChallengeID": "65cf56f275263788121d0efa", + "ChallengeName": "RG5 ADS III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-ads-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies while aiming down sights with the RG5", + "ChallengeID": "65cf571075263788121d0efc", + "ChallengeName": "RG5 ADS IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-ads-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat 400 enemies while aiming down sights with the RG5", + "ChallengeID": "65cf573575263788121d0efe", + "ChallengeName": "RG5 ADS V", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-ads-kills", + "TargetProgress": 400 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "RG5", + "ADS", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the RG5", + "ChallengeID": "65cf587c75263788121d0f00", + "ChallengeName": "RG5 Headshot I", + "InfamyPointReward": 20, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "RG5" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the RG5", + "ChallengeID": "65cf590a83991e391072e429", + "ChallengeName": "RG5 Headshot II", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "RG5" + ] + }, + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the RG5", + "ChallengeID": "65cf593483991e391072e42b", + "ChallengeName": "RG5 Headshot III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-headshot-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "RG5" + ] + }, + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the RG5", + "ChallengeID": "65cf596883991e391072e42d", + "ChallengeName": "RG5 Headshot IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "assaultrifle-rg5-headshot-kills", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Headshot", + "RG5" + ] + }, + { + "ChallengeDescription": "Defeat 50 enemies with the Bullkick500", + "ChallengeID": "65cf59ee75263788121d0f02", + "ChallengeName": "Bullkick500 I", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 100 enemies with the Bullkick500", + "ChallengeID": "65cf5a8275263788121d0f04", + "ChallengeName": "Bullkick500 II", + "InfamyPointReward": 50, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 200 enemies with the Bullkick500", + "ChallengeID": "65cf5aa783991e391072e42f", + "ChallengeName": "Bullkick500 III", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 200 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 350 enemies with the Bullkick500", + "ChallengeID": "65cf5ad175263788121d0f06", + "ChallengeName": "Bullkick500 IV", + "InfamyPointReward": 70, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 350 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 500 enemies with the Bullkick500", + "ChallengeID": "65cf5b0883991e391072e431", + "ChallengeName": "Bullkick500 V", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 500 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 750 enemies with the Bullkick500", + "ChallengeID": "65cf5b3675263788121d0f08", + "ChallengeName": "Bullkick500 VI", + "InfamyPointReward": 90, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 750 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Defeat 1000 enemies with the Bullkick500", + "ChallengeID": "65cf5b5c75263788121d0f0a", + "ChallengeName": "Bullkick500 VII", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-kills", + "TargetProgress": 1000 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Kill", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Complete a heist using the Bullkick500 with a mod equipped", + "ChallengeID": "65cf5b9575263788121d0f0c", + "ChallengeName": "Bullkick500 Rookie", + "InfamyPointReward": 40, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-mod-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Complete a heist with four mod slots filled on the Bullkick500 with the weapon equipped", + "ChallengeID": "65cf5bc575263788121d0f0e", + "ChallengeName": "Bullkick500 Veteran", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-four-mods-equipped", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "Complete a heist with all base mods unlocked for the Bullkick500 with the weapon equipped", + "ChallengeID": "65cf5bee83991e391072e433", + "ChallengeName": "Bullkick500 Master", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-full-mod-unlock", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Meta", + "Mod", + "Unlock", + "Bullkick500" + ] + }, + { + "ChallengeDescription": "With the Bullkick500, defeat 2 enemies without reloading, 5 times", + "ChallengeID": "65cf5c8e83991e391072e435", + "ChallengeName": "Bullkick500 Single Clip I", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-noreload-kills", + "TargetProgress": 5 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "With the Bullkick500, defeat 2 enemies without reloading, 15 times", + "ChallengeID": "65cf5cc475263788121d0f10", + "ChallengeName": "Bullkick500 Single Clip II", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-noreload-kills", + "TargetProgress": 15 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "With the Bullkick500, defeat 2 enemies without reloading, 30 times", + "ChallengeID": "65cf5cf083991e391072e437", + "ChallengeName": "Bullkick500 Single Clip III", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-noreload-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "With the Bullkick500, defeat 2 enemies without reloading, 50 times", + "ChallengeID": "65cf5d2683991e391072e439", + "ChallengeName": "Bullkick500 Single Clip IV", + "InfamyPointReward": 140, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-noreload-kills", + "TargetProgress": 50 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "With the Bullkick500, defeat 2 enemies without reloading, 75 times", + "ChallengeID": "65cf5d4d75263788121d0f12", + "ChallengeName": "Bullkick500 Single Clip V", + "InfamyPointReward": 160, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-noreload-kills", + "TargetProgress": 75 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "No", + "Reload", + "Kill" + ] + }, + { + "ChallengeDescription": "Defeat an enemy by headshot with the Bullkick500", + "ChallengeID": "65cf5dbb83991e391072e43b", + "ChallengeName": "Bullkick500 Headshot I", + "InfamyPointReward": 60, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-headshot-kills", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "Kill", + "Headshot" + ] + }, + { + "ChallengeDescription": "Defeat 10 enemies by headshot with the Bullkick500", + "ChallengeID": "65cf5dea75263788121d0f14", + "ChallengeName": "Bullkick500 Headshot II", + "InfamyPointReward": 80, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-headshot-kills", + "TargetProgress": 10 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "Kill", + "Headshot" + ] + }, + { + "ChallengeDescription": "Defeat 30 enemies by headshot with the Bullkick500", + "ChallengeID": "65cf5e1275263788121d0f16", + "ChallengeName": "Bullkick500 Headshot III", + "InfamyPointReward": 100, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-headshot-kills", + "TargetProgress": 30 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "Kill", + "Headshot" + ] + }, + { + "ChallengeDescription": "Defeat 60 enemies by headshot with the Bullkick500", + "ChallengeID": "65cf5e4275263788121d0f18", + "ChallengeName": "Bullkick500 Headshot IV", + "InfamyPointReward": 120, + "IsActive": false, + "ObjectiveStatData": [ + { + "StatId": "revolver-bullkick500-headshot-kills", + "TargetProgress": 60 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [], + "Tags": [ + "Combat", + "Bullkick500", + "Kill", + "Headshot" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 39 to unlock Shock Grenade", + "ChallengeID": "65fc2d24fa6db5e692c730e6", + "ChallengeName": "Infamy MS - Throwable - Shock Grenade", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 25 + "StatId": "infamy-point", + "TargetProgress": 10100 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0f56fdd7be8e288a2b", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender V", - "description": "Beat Villa 35 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0dd0ad8d2a2fd380dd" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-veryhard", - "value": 35 + "AccelByteSku": "pd3_throwable_shockgrenade", + "AccelbyteItemId": "463cd5cb379f4ea6946c25a37702ef56", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "reward": { - "rewardId": "65686d0fbe7e6d0001670da9", - "stats": [ + { + "ChallengeDescription": "Place 4 Medic Bags", + "ChallengeID": "65cf730c75263788121d0f1a", + "ChallengeName": "Daily Medic Bag I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 210 + "StatId": "deploy-medic-bag", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484535, - "createdAt": "2023-11-30T11:07:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0dd0ad8d2a2fd380dd", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place 10 Medic Bags.", + "ChallengeID": "65cf924583991e391072e43d", + "ChallengeName": "Daily Medic Bag II", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 35 + "StatId": "deploy-medic-bag", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ff46e611ca4072c32", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender VI", - "description": "Beat Villa 50 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0f56fdd7be8e288a2b" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-veryhard", - "value": 50 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "65686d0fe2e56b00017de99c", - "stats": [ + { + "ChallengeDescription": "Place 4 Armor Bags.", + "ChallengeID": "65d4810683991e391072e43f", + "ChallengeName": "Daily Armor Bag I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 230 + "StatId": "deploy-armor-bag", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484536, - "createdAt": "2023-11-30T11:07:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0f56fdd7be8e288a2b", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place 4 Ammo Bags.", + "ChallengeID": "65d4813083991e391072e441", + "ChallengeName": "Daily Ammo Bag I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 50 + "StatId": "deploy-ammo-bag", + "TargetProgress": 4 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0f9c6dfc822b7f52fa", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender VII", - "description": "Beat Villa 65 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0ff46e611ca4072c32" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-veryhard", - "value": 65 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0fa50f3200012cd1d5", - "stats": [ + { + "ChallengeDescription": "Place 10 Armor Bags.", + "ChallengeID": "65d4816775263788121d0f1c", + "ChallengeName": "Daily Armor Bag II", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 250 + "StatId": "deploy-armor-bag", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484537, - "createdAt": "2023-11-30T11:07:59Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0ff46e611ca4072c32", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Trade 8 hostages for resources.", + "ChallengeID": "65d8baab83991e391072e446", + "ChallengeName": "Daily Trading I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 65 + "StatId": "hostages-traded", + "TargetProgress": 8 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d109c6dfc822b7f52fe", - "namespace": "pd3", - "name": "Villa Loud III: Repeat Offender VIII", - "description": "Beat Villa 80 times on Very Hard or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0f9c6dfc822b7f52fa" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-veryhard", - "value": 80 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d105a06df0001828473", - "stats": [ + { + "ChallengeDescription": "Kill 15 enemies with a throwing knife.", + "ChallengeID": "65d8bb8775263788121d0f20", + "ChallengeName": "Daily Throwing Knife I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 270 + "StatId": "throwingknife-kills", + "TargetProgress": 15 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Very", - "Hard" - ], - "orderNo": 2147484541, - "createdAt": "2023-11-30T11:08:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0f9c6dfc822b7f52fa", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Lockpick 10 locks.", + "ChallengeID": "de48dec26214f47e201a826a", + "ChallengeName": "Daily Lockpick I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-veryhard", - "currentValue": 0, - "targetValue": 80 + "StatId": "lock-picked", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf2d0ad8d2a2fd380cd", - "namespace": "pd3", - "name": "Villa Loud IV", - "description": "Beat Villa on Overkill or higher difficulty after the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-overkill", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf2be7e6d0001670da8", - "stats": [ - { - "statCode": "infamy-point", - "value": 160 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Villa" - ], - "orderNo": 2147484467, - "createdAt": "2023-11-30T11:07:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cfb1b19600f98d38730", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender I", - "description": "Beat Villa 3 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cf2d0ad8d2a2fd380cd" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 3 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686cfbda1a6500014bd458", - "stats": [ + { + "ChallengeDescription": "Kill 20 enemies with grenades.", + "ChallengeID": "b0162ce2e36a3fdeac3cdd7c", + "ChallengeName": "Daily Grenade Kills I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "frag-grenade-kills", + "TargetProgress": 20 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484488, - "createdAt": "2023-11-30T11:07:39Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686cf2d0ad8d2a2fd380cd", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "5c506fad9b244890a58b58d92adbfaf7", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Kill 25 enemies with an Overkill Weapon.", + "ChallengeID": "5bab3615006b691f454bca781d76d12d", + "ChallengeName": "Daily OVK Weapon I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 3 + "StatId": "enemy-kills-overkill-weapon", + "TargetProgress": 25 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cff56fdd7be8e288a1d", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender II", - "description": "Beat Villa 6 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cfb1b19600f98d38730" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 6 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686cff0aa8ea00019739a8", - "stats": [ + { + "ChallengeDescription": "Zip-tie 20 civilians.", + "ChallengeID": "6863dc7f5819f39eb452fbe984582bd0", + "ChallengeName": "Daily Ziptie I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "zip-tie", + "TargetProgress": 20 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484494, - "createdAt": "2023-11-30T11:07:43Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686cfb1b19600f98d38730", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place the Motion Sensor 4 times.", + "ChallengeID": "967a97ae1c83b7131544410537d9758b", + "ChallengeName": "Daily Motion Sensor I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 6 + "StatId": "place-sensor", + "TargetProgress": 4 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d02c29144c59ea90c04", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender III", - "description": "Beat Villa 10 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686cff56fdd7be8e288a1d" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [ { - "statCode": "villa-loud-overkill", - "value": 10 + "StatId": "infamy-point", + "TargetProgress": 7400 } + ], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 + } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0286a2540001bbf593", - "stats": [ + { + "ChallengeDescription": "Place the ECM Jammer 4 times.", + "ChallengeID": "680e1fb238358f1006e13efbbdf1dc18", + "ChallengeName": "Daily ECM Jammer I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 180 + "StatId": "place-ecm", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Map", - "Loud", - "Heist", - "Overkill", - "Villa" - ], - "orderNo": 2147484499, - "createdAt": "2023-11-30T11:07:46Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686cff56fdd7be8e288a1d", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Place the Stun Mine 10 times.", + "ChallengeID": "b6cdac08a858774b8725d183b1288a11", + "ChallengeName": "Daily Stun Mines I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 10 + "StatId": "place-stun-mine", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0556fdd7be8e288a23", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender IV", - "description": "Beat Villa 15 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d02c29144c59ea90c04" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 15 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d05bc15df0001eeb69d", - "stats": [ + { + "ChallengeDescription": "Place the Micro Camera 4 times.", + "ChallengeID": "77219437b3e192615a9643b0f83770fd", + "ChallengeName": "Daily Micro Camera I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 200 + "StatId": "place-micro-camera", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484509, - "createdAt": "2023-11-30T11:07:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d02c29144c59ea90c04", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Secure 10 bags after the assault has started.", + "ChallengeID": "cf2d5578f38880d0dbc4ddfa710230fb", + "ChallengeName": "Daily Assault Bags I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 15 + "StatId": "secure-bags-assault-started", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d07467287c4db2bc10d", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender V", - "description": "Beat Villa 20 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0556fdd7be8e288a23" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 20 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0746ba6d0001a75257", - "stats": [ + { + "ChallengeDescription": "Secure 10 bags before the alarm is raised.", + "ChallengeID": "101b910bdba8296dcc20b515ae701f14", + "ChallengeName": "Daily Stealth Bags I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 220 + "StatId": "secure-bags-no-alarm", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484512, - "createdAt": "2023-11-30T11:07:51Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0556fdd7be8e288a23", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Gain the Edge buff 20 times.", + "ChallengeID": "abd8ad723b2d1eef6af5858d4462433b", + "ChallengeName": "Daily Edge I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 20 + "StatId": "gain-damage", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0a467287c4db2bc111", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender VI", - "description": "Beat Villa 25 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d07467287c4db2bc10d" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 25 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0a46c5c6000128ac6e", - "stats": [ + { + "ChallengeDescription": "Gain the Grit buff 20 times.", + "ChallengeID": "e1a6d26178787f91ee47ba2f1d1d68fb", + "ChallengeName": "Daily Grit I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 240 + "StatId": "gain-mitigation", + "TargetProgress": 20 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484521, - "createdAt": "2023-11-30T11:07:54Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d07467287c4db2bc10d", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Gain the Rush buff 20 times.", + "ChallengeID": "74a5e38b63781031ea16585742ccfd58", + "ChallengeName": "Daily Rush I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 25 + "StatId": "gain-speed", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ce2096738d1318f38", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender VII", - "description": "Beat Villa 30 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0a467287c4db2bc111" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 30 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0c43d25b0001046a31", - "stats": [ + { + "ChallengeDescription": "Secure 10 bags.", + "ChallengeID": "81bfd792ab66c71c4ec07e97b904ecde", + "ChallengeName": "Daily Secure Bags I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 260 + "StatId": "secure-bags", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484524, - "createdAt": "2023-11-30T11:07:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0a467287c4db2bc111", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 10 different enemies.", + "ChallengeID": "18240bba96552ddc711932dcf1184625", + "ChallengeName": "Daily Mark Enemies I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 30 + "StatId": "mark-enemy", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686d0ed0ad8d2a2fd380df", - "namespace": "pd3", - "name": "Villa Loud IV: Repeat Offender VIII", - "description": "Beat Villa 45 times on Overkill or higher difficulty after the Assault has started", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65686d0ce2096738d1318f38" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "villa-loud-overkill", - "value": 45 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65686d0e947ed6000174bd39", - "stats": [ + { + "ChallengeDescription": "Kill a special while holding a human shield.", + "ChallengeID": "d1d6e56ba6c21c6725be584456b66186", + "ChallengeName": "Daily Human Shield Special Kill I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 280 + "StatId": "enemy-kills-special-human-shield", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Loud", - "Villa", - "Overkill" - ], - "orderNo": 2147484532, - "createdAt": "2023-11-30T11:07:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65686d0ce2096738d1318f38", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Kill 5 enemies using the last bullet in the gun.", + "ChallengeID": "c85d74b7b76eca7b37895643d9d0e2a4", + "ChallengeName": "Daily Last Bullet Kills I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "villa-loud-overkill", - "currentValue": 0, - "targetValue": 45 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf0d0ad8d2a2fd380cb", - "namespace": "pd3", - "name": "Villa Optional Objective I", - "description": "Complete the heist without cooking a bad batch.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-1", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf0c2d792000172cfee", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "Optional" - ], - "orderNo": 2147484461, - "createdAt": "2023-11-30T11:07:28Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-1", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf1f46e611ca4072c28", - "namespace": "pd3", - "name": "Villa Optional Objective II", - "description": "Complete the heist with 19 bags cooked and secured, without a bad batch.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-2", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf191075e00013a9602", - "stats": [ - { - "statCode": "infamy-point", - "value": 100 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "Optional" - ], - "orderNo": 2147484464, - "createdAt": "2023-11-30T11:07:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-2", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf2f78542b0d6155f60", - "namespace": "pd3", - "name": "Villa Optional Objective III", - "description": "Complete the heist with 7 pure bags cooked and secured on Overkill or higher.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-3", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf20ed7ad000120be9e", - "stats": [ - { - "statCode": "infamy-point", - "value": 150 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "Optional" - ], - "orderNo": 2147484468, - "createdAt": "2023-11-30T11:07:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-3", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf256fdd7be8e288a17", - "namespace": "pd3", - "name": "Villa Optional Objective IV", - "description": "Complete the heist with 19 pure batches cooked and secured on Overkill or higher.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-4", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf2bc15df0001eeb69b", - "stats": [], - "items": [ - { - "itemId": "667246b3d92345e591c906be9c593c8a", - "quantity": 1, - "isActive": false - } - ] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "Optional" - ], - "orderNo": 2147484465, - "createdAt": "2023-11-30T11:07:30Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-optional-objective-4", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf3fef2e2aa25ce2849", - "namespace": "pd3", - "name": "Villa: Full Payout", - "description": "Escape with the maximum amount of bags.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-max-payout", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf32697b30001ac3fd4", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "Max" - ], - "orderNo": 2147484469, - "createdAt": "2023-11-30T11:07:31Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-max-payout", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65686cf1e2096738d1318f30", - "namespace": "pd3", - "name": "Villa: On Your Feet", - "description": "Escape without being downed after the Assault has started.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-no-downs", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "65686cf186a2540001bbf592", - "stats": [ - { - "statCode": "infamy-point", - "value": 50 - } - ], - "items": [] - }, - "tags": [ - "Map", - "Heist", - "Villa", - "No", - "Down" - ], - "orderNo": 2147484463, - "createdAt": "2023-11-30T11:07:29Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "villa-no-downs", - "currentValue": 0, - "targetValue": 1 + "StatId": "enemy-kills-last-bullet", + "TargetProgress": 5 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9d0ad8d2a2fd3ee41", - "namespace": "pd3", - "name": "WAR45 ADS I", - "description": "Defeat 20 enemies while aiming down sights with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-ads-kills", - "value": 20 - } - ] - }, - "reward": { - "rewardId": "657838e96b58a90001a97d74", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "ADS", - "Kill" - ], - "orderNo": 2147484552, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-ads-kills", - "currentValue": 0, - "targetValue": 20 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f8d0ad8d2a2fd3ee6f", - "namespace": "pd3", - "name": "WAR45 ADS II", - "description": "Defeat 50 enemies while aiming down sights with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e9d0ad8d2a2fd3ee41" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-ads-kills", - "value": 50 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "657838f8d54b8900012f08e6", - "stats": [ + { + "ChallengeDescription": "Use 4 heist lures.", + "ChallengeID": "8abc8d447377e4a3d4fb32b41054eb7d", + "ChallengeName": "Daily Heist Lures I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "use-lures", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "ADS", - "Kill" - ], - "orderNo": 2147484594, - "createdAt": "2023-12-12T10:42:00Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838e9d0ad8d2a2fd3ee41", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Secure 10 money bags.", + "ChallengeID": "e0f79dce26a9c0f938613fa39e78dfc0", + "ChallengeName": "Daily Secure Bags Money I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-ads-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "secure-money-bags", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783905c29144c59ea9788b", - "namespace": "pd3", - "name": "WAR45 ADS III", - "description": "Defeat 100 enemies while aiming down sights with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f8d0ad8d2a2fd3ee6f" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-ads-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "65783905d54b8900012f08ef", - "stats": [ + { + "ChallengeDescription": "Secure 10 cocaine bags.", + "ChallengeID": "449f1ba3bc11353608e301a82bf6d176", + "ChallengeName": "Daily Secure Bags Drugs I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "secure-cocaine-bags", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "ADS", - "Kill" - ], - "orderNo": 2147484620, - "createdAt": "2023-12-12T10:42:13Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838f8d0ad8d2a2fd3ee6f", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Secure 10 artwork bags.", + "ChallengeID": "53f35de7e358bcf7b689ba251cede9ab", + "ChallengeName": "Daily Secure Bags Art I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-ads-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "secure-artwork-bags", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783909c29144c59ea97899", - "namespace": "pd3", - "name": "WAR45 ADS IV", - "description": "Defeat 200 enemies while aiming down sights with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783905c29144c59ea9788b" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-ads-kills", - "value": 200 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "6578390937655f0001bc017a", - "stats": [ + { + "ChallengeDescription": "Hack 10 different cameras.", + "ChallengeID": "330d580eda172ad97f60ad26f90547aa", + "ChallengeName": "Daily Hack Cameras I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "hack-cameras", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "ADS", - "Kill" - ], - "orderNo": 2147484634, - "createdAt": "2023-12-12T10:42:17Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65783905c29144c59ea9788b", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Kill 40 enemies with a silenced weapon.", + "ChallengeID": "2f2f879673381f175fe49daf8a1f7aa1", + "ChallengeName": "Daily Silenced Kills I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-ads-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "enemy-kills-silenced-weapon", + "TargetProgress": 40 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390dd0ad8d2a2fd3eea5", - "namespace": "pd3", - "name": "WAR45 ADS V", - "description": "Defeat 400 enemies while aiming down sights with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783909c29144c59ea97899" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-ads-kills", - "value": 400 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "6578390dd54b8900012f08f8", - "stats": [ + { + "ChallengeDescription": "Pick up a total of 40 ammo boxes dropped by law enforcement.", + "ChallengeID": "28c1d13caa474facc3f782a6c8952dce", + "ChallengeName": "Daily Ammo Pickup I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "ammo-pickup", + "TargetProgress": 40 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "ADS", - "Kill" - ], - "orderNo": 2147484643, - "createdAt": "2023-12-12T10:42:21Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65783909c29144c59ea97899", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Destroy 10 locks.", + "ChallengeID": "a002843447fe1a2af571d2a2b48c3a47", + "ChallengeName": "Daily Destroy Locks I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-ads-kills", - "currentValue": 0, - "targetValue": 400 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e8d0ad8d2a2fd3ee39", - "namespace": "pd3", - "name": "WAR45 I", - "description": "Defeat 50 enemies with the WAR 45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-kills", - "value": 50 - } - ] - }, - "reward": { - "rewardId": "657838e8d54b8900012f08d5", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484544, - "createdAt": "2023-12-12T10:41:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "destroy-door-locks", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f3c29144c59ea9786d", - "namespace": "pd3", - "name": "WAR45 II", - "description": "Defeat 100 enemies with the WAR 45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838e8d0ad8d2a2fd3ee39" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "657838f3d54b8900012f08e2", - "stats": [ + { + "ChallengeDescription": "Cut open 10 windows or glass panels.", + "ChallengeID": "ed177a80e28a57b12ce5d0507fe8e13f", + "ChallengeName": "Daily Cut Glass I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 50 + "StatId": "cut-windows", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484583, - "createdAt": "2023-12-12T10:41:55Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838e8d0ad8d2a2fd3ee39", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Kill 10 rappelling law enforcers.", + "ChallengeID": "18b33543b14ecffeee2bc00f73da9618", + "ChallengeName": "Daily Kill Rappelling I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "rappelling-enemy-kills", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f4c29144c59ea9786f", - "namespace": "pd3", - "name": "WAR45 III", - "description": "Defeat 200 enemies with the WAR 45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f3c29144c59ea9786d" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 200 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "657838f46b58a90001a97d85", - "stats": [ + { + "ChallengeDescription": "Mark 10 different enemies through a camera", + "ChallengeID": "1dd018d290b5d3378362224b72bbaeaf", + "ChallengeName": "Daily Camera Mark I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "mark-enemy-camera", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484587, - "createdAt": "2023-12-12T10:41:56Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838f3c29144c59ea9786d", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Mark 10 different enemies through a micro camera", + "ChallengeID": "0d821219b06b914d13cc49b09322026a", + "ChallengeName": "Daily Micro Camera Mark I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "mark-enemy-micro-camera", + "TargetProgress": 10 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783903d0ad8d2a2fd3ee89", - "namespace": "pd3", - "name": "WAR45 IV", - "description": "Defeat 350 enemies with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f4c29144c59ea9786f" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 350 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "6578390337655f0001bc0176", - "stats": [ + { + "ChallengeDescription": "Mark 10 different specials", + "ChallengeID": "e45b530e60d53b545be489297b8f97a2", + "ChallengeName": "Daily Mark Specials I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 70 + "StatId": "mark-specials", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484616, - "createdAt": "2023-12-12T10:42:11Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838f4c29144c59ea9786f", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Affect 4 different enemies with the smoke grenade", + "ChallengeID": "2c0ce7838c7e97b9b9c5bba6dfa33cd3", + "ChallengeName": "Daily Smoke Grenade I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 350 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e9c29144c59ea97851", - "namespace": "pd3", - "name": "WAR45 Master ", - "description": "Complete a heist with all base mods unlocked for the WAR45 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-full-mod-unlock", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e937655f0001bc0157", - "stats": [ - { - "statCode": "infamy-point", - "value": 120 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "WAR45" - ], - "orderNo": 2147484553, - "createdAt": "2023-12-12T10:41:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-full-mod-unlock", - "currentValue": 0, - "targetValue": 1 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838eed0ad8d2a2fd3ee5d", - "namespace": "pd3", - "name": "WAR45 Rookie", - "description": "Complete a heist using the WAR45 with a mod equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-mod-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838eed54b8900012f08e0", - "stats": [ - { - "statCode": "infamy-point", - "value": 40 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "WAR45" - ], - "orderNo": 2147484576, - "createdAt": "2023-12-12T10:41:50Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-mod-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "smoke-grenade-affected-enemies", + "TargetProgress": 4 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838edc29144c59ea9785d", - "namespace": "pd3", - "name": "WAR45 Suppressed I", - "description": "Defeat 10 enemies with the suppressor equipped on the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-suppressor-kills", - "value": 10 - } - ] - }, - "reward": { - "rewardId": "657838ed37655f0001bc015d", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Suppressor", - "Kill" - ], - "orderNo": 2147484570, - "createdAt": "2023-12-12T10:41:49Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-suppressor-kills", - "currentValue": 0, - "targetValue": 10 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f0c29144c59ea97865", - "namespace": "pd3", - "name": "WAR45 Suppressed II", - "description": "Defeat 50 enemies with the suppressor equipped on the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838edc29144c59ea9785d" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-suppressor-kills", - "value": 50 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "657838f037655f0001bc0162", - "stats": [ + { + "ChallengeDescription": "Complete 5 heists", + "ChallengeID": "898b27e6bc1d4b8013cef778be392c35", + "ChallengeName": "Daily Any Heist I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "completed-heists", + "TargetProgress": 5 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Suppressor", - "Kill" - ], - "orderNo": 2147484579, - "createdAt": "2023-12-12T10:41:52Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838edc29144c59ea9785d", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete 3 heists after the assault has started", + "ChallengeID": "690b55b84423e9f12898a790dc005232", + "ChallengeName": "Daily Loud Heist I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-suppressor-kills", - "currentValue": 0, - "targetValue": 50 + "StatId": "completed-heists-assault-started", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838f6c29144c59ea97873", - "namespace": "pd3", - "name": "WAR45 Suppressed III", - "description": "Defeat 100 enemies with the suppressor equipped on the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f0c29144c59ea97865" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-suppressor-kills", - "value": 100 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "657838f6d54b8900012f08e5", - "stats": [ + { + "ChallengeDescription": "Complete 3 heists before the alarm is raised.", + "ChallengeID": "0e351d2a217b5b94c52312654892237d", + "ChallengeName": "Daily Stealth Heist I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "completed-heists-no-alarm", + "TargetProgress": 3 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Suppressor", - "Kill" - ], - "orderNo": 2147484590, - "createdAt": "2023-12-12T10:41:58Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838f0c29144c59ea97865", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete 2 heists on Very Hard or higher difficulty.", + "ChallengeID": "5349aba284cb20042207859e0993705e", + "ChallengeName": "Daily Difficulty Heist I", + "InfamyPointReward": "400", + "IsActive": false, + "ObjectiveStatData": [ { - "statCode": "smg-war45-suppressor-kills", - "currentValue": 0, - "targetValue": 100 + "StatId": "completed-heists-very-hard-and-above", + "TargetProgress": 2 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783906d0ad8d2a2fd3ee91", - "namespace": "pd3", - "name": "WAR45 Suppressed IV", - "description": "Defeat 200 enemies with the suppressor equipped on the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "657838f6c29144c59ea97873" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-suppressor-kills", - "value": 200 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "657839066b58a90001a97d95", - "stats": [ + { + "ChallengeDescription": "Complete 4 heists without going into custody.", + "ChallengeID": "a5ad1dfd7d454c6efb446549787fc547", + "ChallengeName": "Daily_No Custody I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 140 + "StatId": "completed-heists-no-custody", + "TargetProgress": 4 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Suppressor", - "Kill" - ], - "orderNo": 2147484625, - "createdAt": "2023-12-12T10:42:14Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "657838f6c29144c59ea97873", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete 3 heists before the alarm is raised without having a silencer equipped.", + "ChallengeID": "bb041e1c3169cd6349c3235daa8256cd", + "ChallengeName": "Daily NoSilencer Stealth I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-suppressor-kills", - "currentValue": 0, - "targetValue": 200 + "StatId": "completed-heists-no-alarm-no-silenced-weapon", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390ed0ad8d2a2fd3eea7", - "namespace": "pd3", - "name": "WAR45 Suppressed V", - "description": "Defeat 400 enemies with the suppressor equipped on the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783906d0ad8d2a2fd3ee91" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-suppressor-kills", - "value": 400 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "6578390e6b58a90001a97da4", - "stats": [ + { + "ChallengeDescription": "Complete 2 heists after surviving 3 assaults.", + "ChallengeID": "7caff9ba38a283947718498d5b45094c", + "ChallengeName": "Daily Complete Heist Triple Assualt", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 160 + "StatId": "completed-heists-survive-3-assault", + "TargetProgress": 2 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Suppressor", - "Kill" - ], - "orderNo": 2147484645, - "createdAt": "2023-12-12T10:42:22Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65783906d0ad8d2a2fd3ee91", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete 3 heists after getting 30 headshot kills.", + "ChallengeID": "47d97c15406da981f5eed525b6ab8f85", + "ChallengeName": "Daily CompleteHeist Headshots I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-suppressor-kills", - "currentValue": 0, - "targetValue": 400 + "StatId": "completed-heists-headshot-killed-30", + "TargetProgress": 3 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390ac29144c59ea9789d", - "namespace": "pd3", - "name": "WAR45 V", - "description": "Defeat 500 enemies with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "65783903d0ad8d2a2fd3ee89" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 500 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "6578390ad54b8900012f08f4", - "stats": [ + { + "ChallengeDescription": "Secure a total of 30 bags on completed heists.", + "ChallengeID": "cc136efee166a4b0a44381ac161d1d4e", + "ChallengeName": "Daily Secure Bags II", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "completed-heists-secured-bags", + "TargetProgress": 30 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484636, - "createdAt": "2023-12-12T10:42:18Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "65783903d0ad8d2a2fd3ee89", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Pick up a total of 60 loose cash or valuables on completed heists.", + "ChallengeID": "aaaf2bd34d20706cbda1203e5cf88bff", + "ChallengeName": "Daily Loose Cash I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 500 - } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "657838e8c29144c59ea9784b", - "namespace": "pd3", - "name": "WAR45 Veteran", - "description": "Complete a heist with 4 mod slots filled on the WAR45 with the weapon equipped.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-four-mods-equipped", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "657838e86b58a90001a97d73", - "stats": [ - { - "statCode": "infamy-point", - "value": 80 - } - ], - "items": [] - }, - "tags": [ - "Meta", - "Mod", - "Unlock", - "WAR45" - ], - "orderNo": 2147484546, - "createdAt": "2023-12-12T10:41:44Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "smg-war45-four-mods-equipped", - "currentValue": 0, - "targetValue": 1 + "StatId": "completed-heists-instant-loot-taken", + "TargetProgress": 60 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "6578390fd0ad8d2a2fd3eeab", - "namespace": "pd3", - "name": "WAR45 VI", - "description": "Defeat 750 enemies with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390ac29144c59ea9789d" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 750 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "6578390fd54b8900012f08f9", - "stats": [ + { + "ChallengeDescription": "Complete Road Rage on Hard or higher difficulty without getting downed once.", + "ChallengeID": "321fe62e2b5bf9d0158fcaf2c53e303a", + "ChallengeName": "Daily Heist Transport Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 90 + "StatId": "complete-armored-transport-vhard-n-above-no-down", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484647, - "createdAt": "2023-12-12T10:42:23Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "6578390ac29144c59ea9789d", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete No Rest For The Wicked without a single dye pack exploding.", + "ChallengeID": "850ee6d41e458dda80d3406e19cd6c83", + "ChallengeName": "Daily Heist Branchbank Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 750 + "StatId": "complete-branch-bank-zero-dye-pack-exploded", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "65783913d0ad8d2a2fd3eeb9", - "namespace": "pd3", - "name": "WAR45 VII", - "description": "Defeat 1000 enemies with the WAR45.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "6578390fd0ad8d2a2fd3eeab" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "smg-war45-kills", - "value": 1000 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "657839136b58a90001a97dad", - "stats": [ + { + "ChallengeDescription": "Complete Beneath the Surphaze on Very Hard or higher.", + "ChallengeID": "aa150b620c027475f1b89abffefbe93a", + "ChallengeName": "Daily Heist Artgallery Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "complete-beneath-the-surphaze-difficulty", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Combat", - "WAR45", - "Kill" - ], - "orderNo": 2147484662, - "createdAt": "2023-12-12T10:42:27Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "6578390fd0ad8d2a2fd3eeab", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Touch the Sky having secured all loot on Hard or higher difficulty.", + "ChallengeID": "45326428759c12a40466722107f001f7", + "ChallengeName": "Daily Heist Penthouse Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "smg-war45-kills", - "currentValue": 0, - "targetValue": 1000 + "StatId": "complete-touch-the-sky-on-hard-with-all-loot", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceaa417f0dd5f341f303b0", - "namespace": "pd3", - "name": "XRay Vision I", - "description": "Mark a guard or law enforcement using the Sensor.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-sensor", - "value": 1 - } - ] - }, - "reward": { - "rewardId": "63ceaa41c9460a0001ef58f5", - "stats": [ - { - "statCode": "infamy-point", - "value": 20 - } - ], - "items": [] - }, - "tags": [ - "Heist", - "Tutorial", - "Sensor" - ], - "orderNo": 2147483687, - "createdAt": "2023-01-23T15:39:45Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [] - }, - "objective": { - "stats": [ - { - "statCode": "mark-sensor", - "currentValue": 0, - "targetValue": 1 + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ + { + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INPROGRESS", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceaa857f0dd5f341f303b1", - "namespace": "pd3", - "name": "XRay Vision II", - "description": "Mark 20 different guards or law enforcement using the Sensor.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceaa417f0dd5f341f303b0" + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Gold & Sharke having secured all loot on Hard or higher difficulty.", + "ChallengeID": "3eb322806d7f167b67dbac89716c1ec1", + "ChallengeName": "Daily Heist Firstplayable Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "complete-gold-and-sharke-on-hard-with-all-loot", + "TargetProgress": 1 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "mark-sensor", - "value": 50 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "63ceaa85c9460a0001ef58f6", - "stats": [ + { + "ChallengeDescription": "Complete Dirty Ice after cleaning at least 6 jewelry bags.", + "ChallengeID": "ed34d312a9b405304edf6b1672120395", + "ChallengeName": "Daily Heist Jewelrystore Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 60 + "StatId": "complete-jewelry-store-secured-cleaned-6-jewelry", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Heist", - "Sensor" - ], - "orderNo": 2147483688, - "createdAt": "2023-01-23T15:40:53Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ceaa417f0dd5f341f303b0", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete 99 Boxes before the alarm is raised without a security guard dying.", + "ChallengeID": "ad31aff20b6a170270ad5d6c5fb66d0d", + "ChallengeName": "Daily Heist Cargodock Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "mark-sensor", - "currentValue": 0, - "targetValue": 50 + "StatId": "complete-boxes-no-alarm-or-guard-kill", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceaabc7f0dd5f341f303b2", - "namespace": "pd3", - "name": "XRay Vision III", - "description": "Mark 50 different guards or law enforcement using the Sensor.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceaa857f0dd5f341f303b1" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "mark-sensor", - "value": 150 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "63ceaabcc9460a0001ef58f7", - "stats": [ + { + "ChallengeDescription": "Complete Rock the Cradle after securing the crypto wallet.", + "ChallengeID": "ff130504909a0e217ad609fb5c4eaf98", + "ChallengeName": "Daily Heist Nightclub Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 80 + "StatId": "complete-nightclub-secured-crypto-wallet", + "TargetProgress": 1 } ], - "items": [] - }, - "tags": [ - "Heist", - "Sensor" - ], - "orderNo": 2147483689, - "createdAt": "2023-01-23T15:41:48Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ceaa857f0dd5f341f303b1", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Complete Turbid Station without a security guard dying.", + "ChallengeID": "34749472b0f13b58122fbf400910653c", + "ChallengeName": "Daily Heist Station Special I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "mark-sensor", - "currentValue": 0, - "targetValue": 150 + "StatId": "complete-turbid-no-guard-kill", + "TargetProgress": 1 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceab0c7f0dd5f341f30405", - "namespace": "pd3", - "name": "XRay Vision IV", - "description": "Mark 100 different guards or law enforcement using the Sensor.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceaabc7f0dd5f341f303b2" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "mark-sensor", - "value": 300 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Long" ] }, - "reward": { - "rewardId": "63ceab0cc9460a0001ef58f8", - "stats": [ + { + "ChallengeDescription": "Get 10 double kills with a marksman rifle.", + "ChallengeID": "5ce0d2824ce9b1310833f1e2c1ebc03f", + "ChallengeName": "Daily Double Kills DMR I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 100 + "StatId": "enemy-double-kills-marksman-weapon", + "TargetProgress": 10 } ], - "items": [] - }, - "tags": [ - "Heist", - "Sensor" - ], - "orderNo": 2147483690, - "createdAt": "2023-01-23T15:43:08Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ceaabc7f0dd5f341f303b2", - "isCompleted": false + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Stun 20 enemies.", + "ChallengeID": "4f02ed0cccfea438c07399d4fa4229ed", + "ChallengeName": "Daily Stun Enemies I", + "InfamyPointReward": "400", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "mark-sensor", - "currentValue": 0, - "targetValue": 300 + "StatId": "enemy-stuns", + "TargetProgress": 20 } - ] - } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true - }, - { - "recordId": "REPLACEME", - "namespace": "pd3", - "userId": "REPLACEME", - "challenge": { - "challengeId": "63ceab6f7f0dd5f341f304e6", - "namespace": "pd3", - "name": "XRay Vision V", - "description": "Mark 300 different guards or law enforcement using the Sensor.", - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ - "63ceab0c7f0dd5f341f30405" - ] - }, - "objective": { - "stats": [ + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "mark-sensor", - "value": 500 + "AccelByteSku": "pd3_coin_gold", + "AccelbyteItemId": "4c7e4988a3184057bd24b22c484d6065", + "Quantity": 30 } + ], + "Tags": [ + "Daily", + "Medium" ] }, - "reward": { - "rewardId": "63ceab6fc9460a0001ef590b", - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 40 to unlock the Trip Laser", + "ChallengeID": "7112", + "ChallengeName": "Infamy MS - Gadget - Trip Laser", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ { - "statCode": "infamy-point", - "value": 120 + "StatId": "infamy-point", + "TargetProgress": 10400 } ], - "items": [] - }, - "tags": [ - "Heist", - "Sensor" - ], - "orderNo": 2147483691, - "createdAt": "2023-01-23T15:44:47Z", - "updatedAt": "updatedattomakegitdiffseasiertoread", - "isActive": true - }, - "progress": { - "prerequisite": { - "stats": [], - "items": [], - "completedChallengeIds": [ + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "challengeId": "63ceab0c7f0dd5f341f30405", - "isCompleted": false + "AccelByteSku": "pd3_gadgets_triplaser", + "AccelbyteItemId": "9c37ef3fd47245079db4f89c40c4558f", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] }, - "objective": { - "stats": [ + { + "ChallengeDescription": "Reach Infamy Level 100 to unlock the M135 Arges Minigun", + "ChallengeID": "7113", + "ChallengeName": "Infamy MS - Overkill - M135 Arges", + "InfamyPointReward": "-1", + "IsActive": true, + "ObjectiveStatData": [ + { + "StatId": "infamy-point", + "TargetProgress": 50100 + } + ], + "PrerequisiteChallengeIds": [], + "PrerequisiteItemData": [], + "PrerequisiteStatData": [], + "RewardItemsData": [ { - "statCode": "mark-sensor", - "currentValue": 0, - "targetValue": 500 + "AccelByteSku": "pd3_wpn_overkill_arges", + "AccelbyteItemId": "795d2e97a5fb4830b9a2cc5cbacfcf67", + "Quantity": 1 } + ], + "Tags": [ + "General", + "Meta" ] } - }, - "updatedAt": "updatedattomakegitdiffseasiertoread", - "status": "INIT", - "isActive": true + ] } - ] + }, + "created_at": "2024-05-29T09:02:02.492Z", + "updated_at": "2024-05-29T09:02:02.492Z" } \ No newline at end of file diff --git a/PayCheckServerLib/Files/ClientConfiguration.json b/PayCheckServerLib/Files/ClientConfiguration.json new file mode 100644 index 0000000..decaebd --- /dev/null +++ b/PayCheckServerLib/Files/ClientConfiguration.json @@ -0,0 +1,10 @@ +{ + "namespace": "pd3", + "key": "client-configuration", + "set_by": "SERVER", + "value": { + "ItemRewardConfigurationArray": [] + }, + "created_at": "2024-05-29T09:02:02.814Z", + "updated_at": "2024-05-29T09:02:02.814Z" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/Entitlements.json b/PayCheckServerLib/Files/Entitlements.json index 9910b1a..c5fd65e 100644 --- a/PayCheckServerLib/Files/Entitlements.json +++ b/PayCheckServerLib/Files/Entitlements.json @@ -1,7 +1,1359 @@ { "data": [ { - "id": "9277eed07ca74efeb10ef9193ff9f692", + "id": "bcf682620b704f1ea9441fc46e8243ea", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_station_4", + "userId": "redacteduserid", + "itemId": "b8e2a0ce38444458bc50d1a3e5bb075d", + "itemNamespace": "pd3", + "name": "4 Station Preplanning Asset", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:55:33.295Z", + "createdAt": "2024-09-13T19:55:33.295Z", + "updatedAt": "2024-09-13T19:55:33.295Z" + }, + { + "id": "b18431855b274eb9adda8bd262040a2b", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_02", + "userId": "redacteduserid", + "itemId": "def6f18b1c5544f9aa1b5d1cccd14f99", + "itemNamespace": "pd3", + "name": "SprayCan_DigitalGraffiti_02", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:55:33.285Z", + "createdAt": "2024-09-13T19:55:33.285Z", + "updatedAt": "2024-09-13T19:55:33.286Z" + }, + { + "id": "ff7c11f7913d4075b1f17351f29ae941", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_penthouse_3", + "userId": "redacteduserid", + "itemId": "b815a9b61ba944dda953eb85fd8d6bbf", + "itemNamespace": "pd3", + "name": "Poison Penthouse Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:38:40.025Z", + "createdAt": "2024-09-13T19:38:40.025Z", + "updatedAt": "2024-09-13T19:38:40.025Z" + }, + { + "id": "e2b0a511734848e582a9ef56ba93a7b1", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_06", + "userId": "redacteduserid", + "itemId": "af913ff2353e4b72b77cf37b755f4576", + "itemNamespace": "pd3", + "name": "SprayCan_DigitalGraffiti_06", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:38:40.016Z", + "createdAt": "2024-09-13T19:38:40.016Z", + "updatedAt": "2024-09-13T19:38:40.016Z" + }, + { + "id": "d8699648815c4345a6edac8173351897", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_mask_prebundled_nebula", + "userId": "redacteduserid", + "itemId": "e6b9bcc883124f5a86611cc7617da8f8", + "itemNamespace": "pd3", + "name": "Pre-Bundled Mask - Nebula", + "features": [], + "useCount": 1, + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.247Z", + "createdAt": "2024-09-13T19:13:15.247Z", + "updatedAt": "2024-09-13T19:13:15.248Z" + }, + { + "id": "5993c768f6474b53b411579b467ba5e9", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_mask_pattern_nebula", + "userId": "redacteduserid", + "itemId": "056db958485a43f998c7d6330203240b", + "itemNamespace": "pd3", + "name": "Mask Pattern - Nebula", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:13:15.236Z", + "createdAt": "2024-09-13T19:13:15.236Z", + "updatedAt": "2024-09-13T19:13:15.236Z" + }, + { + "id": "866c5ecf29e942918f1214f584add41d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_sticker_nebula2", + "userId": "redacteduserid", + "itemId": "8460ae65531f49408017d6f2c317af70", + "itemNamespace": "pd3", + "name": "Weapon Sticker - Nebula 2", + "features": [ + "iap-sync-twitch" + ], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:13:15.222Z", + "createdAt": "2024-09-13T19:13:15.222Z", + "updatedAt": "2024-09-13T19:13:15.222Z" + }, + { + "id": "e81a6b145ae5476093585e07c175cbb6", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_sticker_nebula1", + "userId": "redacteduserid", + "itemId": "101d51146a464ea3b244b90658adb5ee", + "itemNamespace": "pd3", + "name": "Weapon Sticker - Nebula 1", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:13:15.208Z", + "createdAt": "2024-09-13T19:13:15.208Z", + "updatedAt": "2024-09-13T19:13:15.208Z" + }, + { + "id": "66a1fe1ad64945308a31fd5e42fabd85", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_nebula", + "userId": "redacteduserid", + "itemId": "1330ed7bb5d2480284fc23c0728823dc", + "itemNamespace": "pd3", + "name": "Weapon Charm - Nebula Signup", + "features": [], + "useCount": 1, + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.186Z", + "createdAt": "2024-09-13T19:13:15.186Z", + "updatedAt": "2024-09-13T19:13:15.186Z" + }, + { + "id": "7c3f80c5b186426bb6fb11a26dcb7337", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_mask_premium9", + "userId": "redacteduserid", + "itemId": "737a2739479c49f184b5a1c6c1c6f4c1", + "itemNamespace": "pd3", + "name": "Premium Mask 9", + "features": [], + "useCount": 1, + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.174Z", + "createdAt": "2024-09-13T19:13:15.174Z", + "updatedAt": "2024-09-13T19:13:15.174Z" + }, + { + "id": "9a109e113e7a47db9aae759f96ac0229", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_character_empress", + "userId": "redacteduserid", + "itemId": "740be184430848dcad26f4705de7f5ba", + "itemNamespace": "pd3", + "name": "Character Empress", + "features": [], + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.157Z", + "createdAt": "2024-09-13T19:13:15.157Z", + "updatedAt": "2024-09-13T19:13:15.157Z" + }, + { + "id": "05315b88d10e4598bb9ac5d280215251", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_didi", + "userId": "redacteduserid", + "itemId": "e83972745a774d30b12f849143c3bf54", + "itemNamespace": "pd3", + "name": "Heist Diamond District", + "features": [], + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.094Z", + "createdAt": "2024-09-13T19:13:15.094Z", + "updatedAt": "2024-09-13T19:13:15.094Z" + }, + { + "id": "b6abdba0d25a448c857fadd732db2750", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_throwable_shockgrenade", + "userId": "redacteduserid", + "itemId": "99050b7b8ef14affabfce4cf2084597f", + "itemNamespace": "pd3", + "name": "Shock Grenade", + "features": [], + "useCount": 1, + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.069Z", + "createdAt": "2024-09-13T19:13:15.069Z", + "updatedAt": "2024-09-13T19:13:15.069Z" + }, + { + "id": "53256abc1bfe4089a21f7999555ac57a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_armor_adaptableballistictvest", + "userId": "redacteduserid", + "itemId": "d8a354e8a8de411582a02e655a0f54f2", + "itemNamespace": "pd3", + "name": "Adaptable Ballistic Vest", + "features": [], + "source": "REWARD", + "grantedAt": "2024-09-13T19:13:15.055Z", + "createdAt": "2024-09-13T19:13:15.055Z", + "updatedAt": "2024-09-13T19:13:15.056Z" + }, + { + "id": "635a2c66060b4adbbb15e17dc8051d66", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_gadgets_triplaser", + "userId": "redacteduserid", + "itemId": "92dbf20c9b6b40778484e7c56a9edf45", + "itemNamespace": "pd3", + "name": "Gadget Trip Laser Tool", + "features": [], + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2024-09-13T19:13:15.031Z", + "createdAt": "2024-09-13T19:13:15.031Z", + "updatedAt": "2024-09-13T19:13:15.031Z" + }, + { + "id": "a7ce2001758d4821a3d2c000a8ebea1b", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_art_gallery", + "userId": "redacteduserid", + "itemId": "489d79f9aab64f449f67748aa97259d0", + "itemNamespace": "pd3", + "name": "Heist Art Gallery", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.278Z", + "createdAt": "2024-02-29T21:23:30.278Z", + "updatedAt": "2024-02-29T21:23:30.279Z" + }, + { + "id": "c5f40bdf0cc744b29c352681253bc60d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_gold_sharke", + "userId": "redacteduserid", + "itemId": "51a4d1775a544f93b9dfdcf48f068c77", + "itemNamespace": "pd3", + "name": "Heist Gold Sharke", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.251Z", + "createdAt": "2024-02-29T21:23:30.251Z", + "updatedAt": "2024-02-29T21:23:30.252Z" + }, + { + "id": "7a7bb791d5e54df6bfd39b7caeb07d86", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_branch_bank", + "userId": "redacteduserid", + "itemId": "64278f9403474eecace83eb2035030b8", + "itemNamespace": "pd3", + "name": "Heist Branch Bank", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.236Z", + "createdAt": "2024-02-29T21:23:30.236Z", + "updatedAt": "2024-02-29T21:23:30.236Z" + }, + { + "id": "d8ec31736fe54d9daf4ba11072fc0a5d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_villa", + "userId": "redacteduserid", + "itemId": "1855ea53b51c493a954500566db71326", + "itemNamespace": "pd3", + "name": "Heist Villa", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.224Z", + "createdAt": "2024-02-29T21:23:30.224Z", + "updatedAt": "2024-02-29T21:23:30.224Z" + }, + { + "id": "a404b10748a34ba4868e4276594b1c5b", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_transport", + "userId": "redacteduserid", + "itemId": "0435cf118b294d259227310105876663", + "itemNamespace": "pd3", + "name": "Heist Transport", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.206Z", + "createdAt": "2024-02-29T21:23:30.206Z", + "updatedAt": "2024-02-29T21:23:30.207Z" + }, + { + "id": "815e86bea9c64e349b5a577fc187382d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_station", + "userId": "redacteduserid", + "itemId": "4c1a3b8d1b3a4c32aff561c5d68c7eff", + "itemNamespace": "pd3", + "name": "Heist Station", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.192Z", + "createdAt": "2024-02-29T21:23:30.192Z", + "updatedAt": "2024-02-29T21:23:30.192Z" + }, + { + "id": "5995502fb50a4a8bb810bc1ad97bab12", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_pent_house", + "userId": "redacteduserid", + "itemId": "0165fd5b2b704d6ca4f67f376e343b0d", + "itemNamespace": "pd3", + "name": "Heist Pent House", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.174Z", + "createdAt": "2024-02-29T21:23:30.174Z", + "updatedAt": "2024-02-29T21:23:30.175Z" + }, + { + "id": "8a7da1e767394aeeb42f7e64339b847a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_night_club", + "userId": "redacteduserid", + "itemId": "b1476452baba4a3c8682e479acc44a46", + "itemNamespace": "pd3", + "name": "Heist Night Club", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.158Z", + "createdAt": "2024-02-29T21:23:30.158Z", + "updatedAt": "2024-02-29T21:23:30.159Z" + }, + { + "id": "866c94b2866c4b2dae63028afd4dc84e", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_jewelry_store", + "userId": "redacteduserid", + "itemId": "452409c6100047a8bf7dc0a8e2eeda5b", + "itemNamespace": "pd3", + "name": "Heist Jewelry Store", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.141Z", + "createdAt": "2024-02-29T21:23:30.141Z", + "updatedAt": "2024-02-29T21:23:30.142Z" + }, + { + "id": "90cd0d3b127148f8b719ad4bf0edbba4", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_heist_cargo_dock", + "userId": "redacteduserid", + "itemId": "de6b03a887db46ebb5f3c189eee0736c", + "itemNamespace": "pd3", + "name": "Heist Cargo Dock", + "features": [], + "source": "REWARD", + "grantedAt": "2024-02-29T21:23:30.113Z", + "createdAt": "2024-02-29T21:23:30.113Z", + "updatedAt": "2024-02-29T21:23:30.113Z" + }, + { + "id": "58962e7595284e93b05e6e7362baa3d4", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_penthouse_2", + "userId": "redacteduserid", + "itemId": "87d91fc1cc5f4e8fa3c4e9e2bd303376", + "grantedCode": "RandomReward", + "itemNamespace": "pd3", + "name": "Thermite Penthouse Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-11-12T18:10:02.954Z", + "createdAt": "2023-11-12T18:10:02.954Z", + "updatedAt": "2023-11-12T18:10:02.954Z" + }, + { + "id": "ab6cc9cd3d2e45d198367da5ae481868", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_nightclub_2", + "userId": "redacteduserid", + "itemId": "65a355215bb8473bbf9d3f2661211899", + "grantedCode": "RandomReward", + "itemNamespace": "pd3", + "name": "Vault Code Night Club Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-11-08T18:59:02.577Z", + "createdAt": "2023-11-08T18:59:02.577Z", + "updatedAt": "2023-11-08T18:59:02.577Z" + }, + { + "id": "c8852a99d411426f90654d4c98067792", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo2", + "userId": "redacteduserid", + "itemId": "3841d23ab0c14d518ce13d70c03443fe", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 2", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-10-23T08:19:12.555Z", + "createdAt": "2023-10-23T08:19:12.555Z", + "updatedAt": "2023-10-23T08:19:12.555Z" + }, + { + "id": "714305a739184401bbeaa373187e8e14", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_sight_classicrds_low", + "userId": "redacteduserid", + "itemId": "b025e241c9d34074aae0d32c5594aba3", + "itemNamespace": "pd3", + "name": "MOD Sight ClassicRDS Low", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-10-20T16:16:01.851Z", + "createdAt": "2023-10-20T16:16:01.851Z", + "updatedAt": "2023-10-20T16:16:01.851Z" + }, + { + "id": "8dd9381293554edebdce9a8546300242", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_artgallery_4", + "userId": "redacteduserid", + "itemId": "3872ce94c1bf4ae49962e97e6eee4c13", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Helicopter Pilot Art Gallery Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-10-20T15:30:08.325Z", + "createdAt": "2023-10-20T15:30:08.325Z", + "updatedAt": "2023-10-20T15:30:08.325Z" + }, + { + "id": "da777b9f29d74ab98a6afc34c7519487", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_overkill_het5", + "userId": "redacteduserid", + "itemId": "478952d6ba3a4a10ac4cb85c453dc94a", + "itemNamespace": "pd3", + "name": "Overkill HET5", + "useCount": 1, + "source": "REWARD", + "grantedAt": "2023-10-20T15:23:02.583Z", + "createdAt": "2023-10-20T15:23:02.583Z", + "updatedAt": "2023-10-20T15:23:02.583Z" + }, + { + "id": "e39b60bf2ddd450996714331b554fae9", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_assaultrifle_ku59", + "userId": "redacteduserid", + "itemId": "38983384c9074848aecb81bfb5c7a05a", + "itemNamespace": "pd3", + "name": "AssaultRifle KU59", + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-10-14T13:28:42.634Z", + "createdAt": "2023-10-14T13:28:42.634Z", + "updatedAt": "2023-10-14T13:28:42.634Z" + }, + { + "id": "0a2ace6091cf48dfbf665062891a67a6", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_uni_zipline", + "userId": "redacteduserid", + "itemId": "cfb70d967cf149988eec391a61d4ac08", + "itemNamespace": "pd3", + "name": "Zipline Bag Universal Preplanning asset", + "useCount": 3, + "source": "PURCHASE", + "stackable": true, + "grantedAt": "2023-10-09T18:03:44.323Z", + "createdAt": "2023-10-09T18:03:44.323Z", + "updatedAt": "2023-10-09T18:03:50.351Z" + }, + { + "id": "2350c880b287476ebdc81166401dc1c9", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_branchbank_3", + "userId": "redacteduserid", + "itemId": "fb595a70be16479cbd6398866ceace43", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Keycard Branch Bank Preplanning asset", + "useCount": 3, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-10-08T11:59:26.146Z", + "createdAt": "2023-10-08T11:59:26.146Z", + "updatedAt": "2023-10-31T17:12:31.353Z" + }, + { + "id": "5494481d00b84753b706397e16bb9456", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_armor_heavyvest", + "userId": "redacteduserid", + "itemId": "0355159b70d845d5be98bbbd82614957", + "itemNamespace": "pd3", + "name": "Heavy Ballistic Vest", + "source": "REWARD", + "grantedAt": "2023-10-07T15:23:38.973Z", + "createdAt": "2023-10-07T15:23:38.973Z", + "updatedAt": "2023-10-07T15:23:38.973Z" + }, + { + "id": "cb0cb666f887402c9a52f88208dcd1f2", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_cargodock_1", + "userId": "redacteduserid", + "itemId": "0cd47901794a44b38a9f2d4b7b1b3f61", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Less Containers Cargo Dock Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-10-06T16:54:22.531Z", + "createdAt": "2023-10-06T16:54:22.531Z", + "updatedAt": "2023-10-06T16:54:22.531Z" + }, + { + "id": "6114a64d327b4d1e9b447c0e568c9701", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_gadgets_sensor", + "userId": "redacteduserid", + "itemId": "d70af8f6c458400899fcf9990e470540", + "itemNamespace": "pd3", + "name": "Gadget Sensor Tool", + "source": "REWARD", + "grantedAt": "2023-10-05T20:42:20.008Z", + "createdAt": "2023-10-05T20:42:20.008Z", + "updatedAt": "2023-10-05T20:42:20.008Z" + }, + { + "id": "b199486ffcc748d2bfe000590e304685", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_r880_barrel_cqc", + "userId": "redacteduserid", + "itemId": "0ba573010f2841d9a996683495ed0ebb", + "itemNamespace": "pd3", + "name": "MOD R880 Barrel CQC", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-10-01T17:09:18.788Z", + "createdAt": "2023-10-01T17:09:18.788Z", + "updatedAt": "2023-10-01T17:09:18.788Z" + }, + { + "id": "40c1823f404449cfb8756d1ab3084ec2", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_sight_classicrds_low", + "userId": "redacteduserid", + "itemId": "b025e241c9d34074aae0d32c5594aba3", + "itemNamespace": "pd3", + "name": "MOD Sight ClassicRDS Low", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-10-01T17:08:57.857Z", + "createdAt": "2023-10-01T17:08:57.857Z", + "updatedAt": "2023-10-01T17:08:57.857Z" + }, + { + "id": "728f251072b24a82aaec8405b3af35d3", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_r880_stock_cqc", + "userId": "redacteduserid", + "itemId": "f4af3abf5e454a5da466cff524594731", + "itemNamespace": "pd3", + "name": "MOD R880 Stock CQC", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-10-01T17:08:51.117Z", + "createdAt": "2023-10-01T17:08:51.117Z", + "updatedAt": "2023-10-01T17:08:51.117Z" + }, + { + "id": "f6a49192e0094a969785fea795032f3a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_barrelext_12gobelisk_low", + "userId": "redacteduserid", + "itemId": "bfa7807cc6164d079af550370b4ff757", + "itemNamespace": "pd3", + "name": "MOD BarrelExt 12GObelisk Low", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-10-01T17:08:39.477Z", + "createdAt": "2023-10-01T17:08:39.477Z", + "updatedAt": "2023-10-01T17:08:39.477Z" + }, + { + "id": "6756f8ff564c4cfe9cc4aa05fe0073f7", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_throwable_smokegrenade", + "userId": "redacteduserid", + "itemId": "145c6ffde3eb454ca33a370d12caf4bc", + "itemNamespace": "pd3", + "name": "Smoke Grenade", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-10-01T16:57:44.698Z", + "createdAt": "2023-10-01T16:57:44.698Z", + "updatedAt": "2023-10-01T16:57:44.698Z" + }, + { + "id": "2787bc796f1e487ba9c029481d95af7a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_uni_medicbag", + "userId": "redacteduserid", + "itemId": "340a890d972d47b5adfacdf5ef854f2c", + "itemNamespace": "pd3", + "name": "Medic Bag universal preplanning asset", + "useCount": 1, + "source": "PURCHASE", + "stackable": true, + "grantedAt": "2023-09-29T18:27:48.533Z", + "createdAt": "2023-09-29T18:27:48.533Z", + "updatedAt": "2023-10-15T20:31:15.469Z" + }, + { + "id": "6e5e55cb3530458981f68d9a667d67de", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_barrelext_skeletonizedcomp", + "userId": "redacteduserid", + "itemId": "0993ae5428894dbc83ebab0952288a4d", + "itemNamespace": "pd3", + "name": "MOD BarrelExt SkeletonizedComp", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:05:27.057Z", + "createdAt": "2023-09-29T15:05:27.057Z", + "updatedAt": "2023-09-29T15:05:27.058Z" + }, + { + "id": "50b38890413f4473896cdb6fb9e3cc89", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_castigo44_grip_biofit", + "userId": "redacteduserid", + "itemId": "3975268d9add4ba19e489a703c40c584", + "itemNamespace": "pd3", + "name": "MOD Castigo44 Grip Biofit", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:05:23.69Z", + "createdAt": "2023-09-29T15:05:23.69Z", + "updatedAt": "2023-09-29T15:05:23.69Z" + }, + { + "id": "22e655ff79f14aac997b57921e76176d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_sight_led", + "userId": "redacteduserid", + "itemId": "cf7a61c9256347de8125c111b83b9b3b", + "itemNamespace": "pd3", + "name": "MOD Sight LED", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:05:18.551Z", + "createdAt": "2023-09-29T15:05:18.551Z", + "updatedAt": "2023-09-29T15:05:18.551Z" + }, + { + "id": "c65631bf36e3431a9538f8232de72bac", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_castigo44_barrel_ranged", + "userId": "redacteduserid", + "itemId": "d1a3e567e3db466698a382c1fa495147", + "itemNamespace": "pd3", + "name": "MOD Castigo44 Barrel Ranged", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:05:13.558Z", + "createdAt": "2023-09-29T15:05:13.558Z", + "updatedAt": "2023-09-29T15:05:13.558Z" + }, + { + "id": "7d83cbdee2e346bf94a732e80b64b2fb", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_grip_tac", + "userId": "redacteduserid", + "itemId": "945a3ffbe2394cdc976765d1a108a990", + "itemNamespace": "pd3", + "name": "MOD Grip Tac", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:03:37.002Z", + "createdAt": "2023-09-29T15:03:37.002Z", + "updatedAt": "2023-09-29T15:03:37.003Z" + }, + { + "id": "e21e8bb051624182b4e09b5e7775177a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_verticalgrip_stub", + "userId": "redacteduserid", + "itemId": "fa0333c3bdfa41cba3aaa7eee8b2274e", + "itemNamespace": "pd3", + "name": "MOD VerticalGrip Stub", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:03:20.599Z", + "createdAt": "2023-09-29T15:03:20.599Z", + "updatedAt": "2023-09-29T15:03:20.6Z" + }, + { + "id": "85dc00bc4b084c9ebd203a82d89f6cec", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_stock_hq", + "userId": "redacteduserid", + "itemId": "43fe9837925d40e5a46c418892dfd074", + "itemNamespace": "pd3", + "name": "MOD Stock HQ", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:02:59.857Z", + "createdAt": "2023-09-29T15:02:59.857Z", + "updatedAt": "2023-09-29T15:02:59.858Z" + }, + { + "id": "5a312b5ccb834dabba33fb88c43bb467", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_pc9_mag_quick", + "userId": "redacteduserid", + "itemId": "b23a93f1fb784b1ea1451118e51cc494", + "itemNamespace": "pd3", + "name": "MOD PC9 Mag Quick", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:02:40.249Z", + "createdAt": "2023-09-29T15:02:40.249Z", + "updatedAt": "2023-09-29T15:02:40.249Z" + }, + { + "id": "793fe31aeab9453cb81226d29e2010c5", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_barrelext_obelisksilencer", + "userId": "redacteduserid", + "itemId": "9bff2fd9b30446e7b43c807771d91b82", + "itemNamespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:02:29.585Z", + "createdAt": "2023-09-29T15:02:29.585Z", + "updatedAt": "2023-09-29T15:02:29.585Z" + }, + { + "id": "9b0fcbabf5eb41e596da75e57896cdb4", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_sight_compact", + "userId": "redacteduserid", + "itemId": "3ff0044abaa74bd0b4bf3362fbce6960", + "itemNamespace": "pd3", + "name": "MOD Sight Compact", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-29T15:02:15.568Z", + "createdAt": "2023-09-29T15:02:15.568Z", + "updatedAt": "2023-09-29T15:02:15.568Z" + }, + { + "id": "75ddbf92fd1041d9ad91d525f8c42bb1", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_jewelrystore_2", + "userId": "redacteduserid", + "itemId": "736ee0a77016416ba9d35a9a5f4c7fd0", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Escape Van Jewelry Store Preplanning asset", + "useCount": 2, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-29T14:59:06.174Z", + "createdAt": "2023-09-29T14:59:06.174Z", + "updatedAt": "2023-10-20T16:09:49.418Z" + }, + { + "id": "7947159025b440b4b192c8940947d863", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_gadgets_ECMjammer", + "userId": "redacteduserid", + "itemId": "084202bef99c47c7a384a0106c7b6a2f", + "itemNamespace": "pd3", + "name": "Gadget ECM Tool", + "source": "REWARD", + "grantedAt": "2023-09-29T14:58:33.54Z", + "createdAt": "2023-09-29T14:58:33.54Z", + "updatedAt": "2023-09-29T14:58:33.54Z" + }, + { + "id": "611d31d52d4d408188d36f7cface520f", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_revolver_castigo44", + "userId": "redacteduserid", + "itemId": "64126b1908e34b3ba57c6aea20c9757b", + "itemNamespace": "pd3", + "name": "Revolver Castigo44", + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-29T14:04:04.065Z", + "createdAt": "2023-09-29T14:04:04.065Z", + "updatedAt": "2023-09-29T14:04:04.065Z" + }, + { + "id": "69eb1688435a467b88192f0fd643e920", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_smg_pc9", + "userId": "redacteduserid", + "itemId": "43899d4fcd7849c2960d34e8f723f8e9", + "itemNamespace": "pd3", + "name": "SMG PC9", + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-29T14:03:52.948Z", + "createdAt": "2023-09-29T14:03:52.948Z", + "updatedAt": "2023-09-29T14:03:52.948Z" + }, + { + "id": "016e982624f6405082c62fe660686b4e", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_jewelrystore_1", + "userId": "redacteduserid", + "itemId": "a8a42735b6ed4bf48456de9f33ff6477", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Manager Cake Jewelry Store Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-29T13:53:22.109Z", + "createdAt": "2023-09-29T13:53:22.109Z", + "updatedAt": "2023-09-29T13:53:22.11Z" + }, + { + "id": "ec256948c28c450c8009466efa9e919c", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_barrelext_obelisksilencer_zero", + "userId": "redacteduserid", + "itemId": "eab464ee27e74fed9f4ead8162cd1e28", + "itemNamespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer Zero", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-25T10:12:30.39Z", + "createdAt": "2023-09-25T10:12:30.39Z", + "updatedAt": "2023-09-25T10:12:30.39Z" + }, + { + "id": "4588d0db838d4226aa19dcbb5d178619", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_s40_mag_quick", + "userId": "redacteduserid", + "itemId": "6054cbf2abf340878b3432251cd5e517", + "itemNamespace": "pd3", + "name": "MOD S40 Mag Quick", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-25T10:12:21.851Z", + "createdAt": "2023-09-25T10:12:21.851Z", + "updatedAt": "2023-09-25T10:12:21.851Z" + }, + { + "id": "f6a09b738f4042c18d7b9473fc4e5a84", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_s40_grip_hardwood", + "userId": "redacteduserid", + "itemId": "e88d8b17a3df4a8992543c5e9ad3d9de", + "itemNamespace": "pd3", + "name": "MOD S40 Grip Hardwood", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-25T10:12:13.268Z", + "createdAt": "2023-09-25T10:12:13.268Z", + "updatedAt": "2023-09-25T10:12:13.269Z" + }, + { + "id": "b3c38eacd5fa449497d9e985b89e4065", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_sight_led", + "userId": "redacteduserid", + "itemId": "cf7a61c9256347de8125c111b83b9b3b", + "itemNamespace": "pd3", + "name": "MOD Sight LED", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-25T10:12:02.841Z", + "createdAt": "2023-09-25T10:12:02.841Z", + "updatedAt": "2023-09-25T10:12:02.841Z" + }, + { + "id": "ed3f99fc7a6249618012298877a200d3", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_pistol_s40", + "userId": "redacteduserid", + "itemId": "608e2ed558594f4097694d8c8abedf8b", + "itemNamespace": "pd3", + "name": "Pistol S40", + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-25T10:11:40.737Z", + "createdAt": "2023-09-25T10:11:40.737Z", + "updatedAt": "2023-09-25T10:11:40.737Z" + }, + { + "id": "509a5345cb2743cc8ce2d7787975ae38", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_armor_suitonly", + "userId": "redacteduserid", + "itemId": "9acb1b0b1ad1405785ee2684725e3d06", + "itemNamespace": "pd3", + "name": "Suit Only", + "source": "REWARD", + "grantedAt": "2023-09-25T10:09:43.811Z", + "createdAt": "2023-09-25T10:09:43.811Z", + "updatedAt": "2023-09-25T10:09:43.811Z" + }, + { + "id": "88c6adf486ff461dbd20c4770fd6e82e", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_throwable_knife", + "userId": "redacteduserid", + "itemId": "778b204d45a64ce68ec9720c220350be", + "itemNamespace": "pd3", + "name": "ThrowingKnife", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-24T19:21:29.386Z", + "createdAt": "2023-09-24T19:21:29.386Z", + "updatedAt": "2023-09-24T19:21:29.386Z" + }, + { + "id": "95f52dcd73db46ba92d3cdb9e960915c", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_placeable_sentry", + "userId": "redacteduserid", + "itemId": "2b576f24e06949148ded46749e50377f", + "itemNamespace": "pd3", + "name": "Sentry Gun", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-24T19:21:29.256Z", + "createdAt": "2023-09-24T19:21:29.256Z", + "updatedAt": "2023-09-24T19:21:29.256Z" + }, + { + "id": "5a40c3a6343a416197e80505695c8298", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_jewelrystore_4", + "userId": "redacteduserid", + "itemId": "ed3734c6be7142ca9ac17df4b91e4acb", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Employee Backdoor Jewelry Store Preplanning asset", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-23T17:25:56.534Z", + "createdAt": "2023-09-23T17:25:56.534Z", + "updatedAt": "2023-09-23T17:25:56.534Z" + }, + { + "id": "8956e2696db64ca7b26365592b17ccdd", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_gadgets_stunmine", + "userId": "redacteduserid", + "itemId": "acb366ee4d554ab3b4831c743969855c", + "itemNamespace": "pd3", + "name": "Gadget Stun Mine Tool", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-23T14:33:25.125Z", + "createdAt": "2023-09-23T14:33:25.125Z", + "updatedAt": "2023-09-23T14:33:25.126Z" + }, + { + "id": "e9c06d51ce934c5c9a214c79eafd9e5d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_armor_combatvest", + "userId": "redacteduserid", + "itemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", + "itemNamespace": "pd3", + "name": "Combat Vest", + "source": "REWARD", + "grantedAt": "2023-09-22T07:57:57.694Z", + "createdAt": "2023-09-22T07:57:57.694Z", + "updatedAt": "2023-09-22T07:57:57.694Z" + }, + { + "id": "a7c03991843f4f77b032d910fe023f2d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_throwable_flashbang", + "userId": "redacteduserid", + "itemId": "3b3533976a50486ba362bf19bbb2e97d", + "itemNamespace": "pd3", + "name": "Flashbang", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-22T07:44:24.22Z", + "createdAt": "2023-09-22T07:44:24.22Z", + "updatedAt": "2023-09-22T07:44:24.22Z" + }, + { + "id": "42b8235194284891aac69fce7f5526cb", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_shotgun_r880", + "userId": "redacteduserid", + "itemId": "23cdde1e5cb540a6af317678a824ed49", + "itemNamespace": "pd3", + "name": "Shotgun R880", + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-21T18:09:38.766Z", + "createdAt": "2023-09-21T18:09:38.766Z", + "updatedAt": "2023-09-21T18:09:38.766Z" + }, + { + "id": "1ff91127d38744d592ed8806e80b9e71", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_placeable_armorbag", + "userId": "redacteduserid", + "itemId": "e456f47e7e2e4e2d9a8539ec3819576f", + "itemNamespace": "pd3", + "name": "Armor Bag", + "useCount": 1, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-21T16:28:52.978Z", + "createdAt": "2023-09-21T16:28:52.978Z", + "updatedAt": "2023-09-21T16:28:52.978Z" + }, + { + "id": "2d968898f8db4808917f2197cf36bb9a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_preplanning_nightclub_3", + "userId": "redacteduserid", + "itemId": "dca07cf916b04dbf8f3eb4a134e874cf", + "grantedCode": "123", + "itemNamespace": "pd3", + "name": "Crypto Wallet Timer Night Club Preplanning asset", + "useCount": 2, + "source": "REWARD", + "stackable": true, + "grantedAt": "2023-09-21T16:28:52.122Z", + "createdAt": "2023-09-21T16:28:52.122Z", + "updatedAt": "2023-10-15T20:44:54.158Z" + }, + { + "id": "5acb20b8a8be45a9ae1bd0fd479a1403", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_mod_barrelext_obelisksilencer_zero", + "userId": "redacteduserid", + "itemId": "eab464ee27e74fed9f4ead8162cd1e28", + "itemNamespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer Zero", + "features": [], + "source": "PURCHASE", + "grantedAt": "2023-09-21T16:10:29.845Z", + "createdAt": "2023-09-21T16:10:29.845Z", + "updatedAt": "2023-09-21T16:10:29.845Z" + }, + { + "id": "573f52f41b6645068c49e3b818df06cf", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_steam_cosmetic_suit_premiumsuit_preorder", + "userId": "redacteduserid", + "itemId": "dea43e9c1ef842c781cce84de3792004", + "itemNamespace": "pd3", + "name": "Premium Suit - Preorder - Steam", + "features": [], + "source": "OTHER", + "grantedAt": "2023-09-21T16:10:02.047Z", + "createdAt": "2023-09-21T16:10:02.047Z", + "updatedAt": "2023-09-21T16:10:02.047Z" + }, + { + "id": "418ed603f16a4eeab977eac21a51f395", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_steam_cosmetic_accessory_gloves_preorder", + "userId": "redacteduserid", + "itemId": "db78293dfc5046d9a6426da3afaee65d", + "itemNamespace": "pd3", + "name": "Gloves - Preorder Steam", + "features": [], + "source": "OTHER", + "grantedAt": "2023-09-21T16:10:02.04Z", + "createdAt": "2023-09-21T16:10:02.04Z", + "updatedAt": "2023-09-21T16:10:02.04Z" + }, + { + "id": "af948e7e76da4615bb6bf4ddfbdf39c3", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "DURABLE", + "status": "ACTIVE", + "sku": "pd3_steam_cosmetic_mask_premium_preorder", + "userId": "redacteduserid", + "itemId": "075eebd2242b4684b447cf3678a914a9", + "itemNamespace": "pd3", + "name": "Premium Mask - Preorder Steam", + "features": [], + "source": "OTHER", + "grantedAt": "2023-09-21T16:10:02.032Z", + "createdAt": "2023-09-21T16:10:02.032Z", + "updatedAt": "2023-09-21T16:10:02.032Z" + }, + { + "id": "8c988d0b62f741939e49b1d9a620cbb6", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -12,12 +1364,12 @@ "itemNamespace": "pd3", "name": "Character Wolf", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.596Z", - "createdAt": "2023-09-17T03:45:41.596Z", - "updatedAt": "2023-09-17T03:45:41.597Z" + "grantedAt": "2023-09-21T16:08:45.52Z", + "createdAt": "2023-09-21T16:08:45.52Z", + "updatedAt": "2023-09-21T16:08:45.52Z" }, { - "id": "a6fa59bcb76e4e098ee7512cad6b7149", + "id": "7c89668f1bc645f58510b0ee2b6249c5", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -29,12 +1381,12 @@ "name": "Character Joy", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.576Z", - "createdAt": "2023-09-17T03:45:41.576Z", - "updatedAt": "2023-09-17T03:45:41.577Z" + "grantedAt": "2023-09-21T16:08:45.502Z", + "createdAt": "2023-09-21T16:08:45.502Z", + "updatedAt": "2023-09-21T16:08:45.502Z" }, { - "id": "eafe9bada75a4a3384834862a387ff53", + "id": "de5a0c11e56646088baeae8caaa34306", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -45,12 +1397,12 @@ "itemNamespace": "pd3", "name": "Character Dallas", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.557Z", - "createdAt": "2023-09-17T03:45:41.557Z", - "updatedAt": "2023-09-17T03:45:41.558Z" + "grantedAt": "2023-09-21T16:08:45.471Z", + "createdAt": "2023-09-21T16:08:45.471Z", + "updatedAt": "2023-09-21T16:08:45.471Z" }, { - "id": "1f2e843a8e674fc5b48cbadefe983db8", + "id": "2322995ac5154ea8bce6b0fba3901758", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -61,12 +1413,12 @@ "itemNamespace": "pd3", "name": "Character Chains", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.537Z", - "createdAt": "2023-09-17T03:45:41.537Z", - "updatedAt": "2023-09-17T03:45:41.538Z" + "grantedAt": "2023-09-21T16:08:45.444Z", + "createdAt": "2023-09-21T16:08:45.444Z", + "updatedAt": "2023-09-21T16:08:45.444Z" }, { - "id": "ed5c83da82514f7383371435472b6fc4", + "id": "5bfa7a328469438e9855105dd055f24c", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -78,12 +1430,12 @@ "name": "Character Joy", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.508Z", - "createdAt": "2023-09-17T03:45:41.508Z", - "updatedAt": "2023-09-17T03:45:41.509Z" + "grantedAt": "2023-09-21T16:08:45.392Z", + "createdAt": "2023-09-21T16:08:45.392Z", + "updatedAt": "2023-09-21T16:08:45.392Z" }, { - "id": "158fe7f16ca04368869400bdafaa9f55", + "id": "ab0166986608435ca165160a911f56c6", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -95,12 +1447,12 @@ "name": "Character Pearl", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.482Z", - "createdAt": "2023-09-17T03:45:41.482Z", - "updatedAt": "2023-09-17T03:45:41.483Z" + "grantedAt": "2023-09-21T16:08:45.348Z", + "createdAt": "2023-09-21T16:08:45.348Z", + "updatedAt": "2023-09-21T16:08:45.348Z" }, { - "id": "01b847713f784734a48256f85dbf9ae9", + "id": "257368de102d40cfa6c89cb12b0325c5", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -111,12 +1463,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.455Z", - "createdAt": "2023-09-17T03:45:41.455Z", - "updatedAt": "2023-09-17T03:45:41.456Z" + "grantedAt": "2023-09-21T16:08:45.304Z", + "createdAt": "2023-09-21T16:08:45.304Z", + "updatedAt": "2023-09-21T16:08:45.304Z" }, { - "id": "af1d9d6add8d4a178868eafdcad05afb", + "id": "8c1298af10e04bb6b52d874853db2237", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -127,12 +1479,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.448Z", - "createdAt": "2023-09-17T03:45:41.448Z", - "updatedAt": "2023-09-17T03:45:41.449Z" + "grantedAt": "2023-09-21T16:08:45.291Z", + "createdAt": "2023-09-21T16:08:45.291Z", + "updatedAt": "2023-09-21T16:08:45.292Z" }, { - "id": "0ef57556b4214310b9259ccc66d2d39a", + "id": "34c171aee5e6454b9ec9e56f445d4c41", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -143,12 +1495,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.443Z", - "createdAt": "2023-09-17T03:45:41.442Z", - "updatedAt": "2023-09-17T03:45:41.443Z" + "grantedAt": "2023-09-21T16:08:45.282Z", + "createdAt": "2023-09-21T16:08:45.282Z", + "updatedAt": "2023-09-21T16:08:45.282Z" }, { - "id": "2017e5bc827843deb55ce4dee31c423d", + "id": "7916aee74259456abe87a5c3a14dd773", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -159,12 +1511,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.438Z", - "createdAt": "2023-09-17T03:45:41.438Z", - "updatedAt": "2023-09-17T03:45:41.438Z" + "grantedAt": "2023-09-21T16:08:45.27Z", + "createdAt": "2023-09-21T16:08:45.27Z", + "updatedAt": "2023-09-21T16:08:45.27Z" }, { - "id": "0e559a5af6684a199ed94c1e79662de6", + "id": "7e8a158f0dba4b129c4733c024217ee0", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -175,12 +1527,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.432Z", - "createdAt": "2023-09-17T03:45:41.432Z", - "updatedAt": "2023-09-17T03:45:41.433Z" + "grantedAt": "2023-09-21T16:08:45.26Z", + "createdAt": "2023-09-21T16:08:45.26Z", + "updatedAt": "2023-09-21T16:08:45.26Z" }, { - "id": "1bc71edd59174456b3ea4e0335a2a3cc", + "id": "f3316d752fb847e8a7d5496518649448", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -191,12 +1543,12 @@ "itemNamespace": "pd3", "name": "Secondary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.427Z", - "createdAt": "2023-09-17T03:45:41.427Z", - "updatedAt": "2023-09-17T03:45:41.427Z" + "grantedAt": "2023-09-21T16:08:45.251Z", + "createdAt": "2023-09-21T16:08:45.251Z", + "updatedAt": "2023-09-21T16:08:45.251Z" }, { - "id": "1c5f8ff7e94a404aa622a7ed46b42bcb", + "id": "8ad10c3007ef47a0b1a9bcd8a96cc5b8", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -208,12 +1560,12 @@ "name": "Gloves Inventory Slot: Price Progression 0", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.405Z", - "createdAt": "2023-09-17T03:45:41.405Z", - "updatedAt": "2023-09-17T03:45:41.406Z" + "grantedAt": "2023-09-21T16:08:45.222Z", + "createdAt": "2023-09-21T16:08:45.222Z", + "updatedAt": "2023-09-21T16:08:45.222Z" }, { - "id": "d0c224d36e004195a0840b7dccdb027d", + "id": "d2b10d43b5824206b4a75a5edf65852b", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -225,12 +1577,12 @@ "name": "Mask Inventory Slot: Price Progression 0", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.385Z", - "createdAt": "2023-09-17T03:45:41.385Z", - "updatedAt": "2023-09-17T03:45:41.386Z" + "grantedAt": "2023-09-21T16:08:45.2Z", + "createdAt": "2023-09-21T16:08:45.2Z", + "updatedAt": "2023-09-21T16:08:45.2Z" }, { - "id": "815d8ebee5ca424ab66ac2ab1305befb", + "id": "96b831e946914cec8d2c8407c53b562c", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -242,12 +1594,12 @@ "name": "Primary Weapon Inventory Slot: Price Progression 0", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.363Z", - "createdAt": "2023-09-17T03:45:41.363Z", - "updatedAt": "2023-09-17T03:45:41.363Z" + "grantedAt": "2023-09-21T16:08:45.168Z", + "createdAt": "2023-09-21T16:08:45.168Z", + "updatedAt": "2023-09-21T16:08:45.169Z" }, { - "id": "f9851272aa2d4b4f9892044bd94173ae", + "id": "b5e8efd54db84bf7ab0777652e6adaee", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -259,12 +1611,12 @@ "name": "Gloves Inventory Slot", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.343Z", - "createdAt": "2023-09-17T03:45:41.343Z", - "updatedAt": "2023-09-17T03:45:41.344Z" + "grantedAt": "2023-09-21T16:08:45.145Z", + "createdAt": "2023-09-21T16:08:45.145Z", + "updatedAt": "2023-09-21T16:08:45.146Z" }, { - "id": "df9fa9401972486197ca0b06ea4f9654", + "id": "3bffe9eaaa6c46e4aa3463f7160c69c9", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -276,12 +1628,12 @@ "name": "Gloves Inventory Slot", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.336Z", - "createdAt": "2023-09-17T03:45:41.336Z", - "updatedAt": "2023-09-17T03:45:41.337Z" + "grantedAt": "2023-09-21T16:08:45.136Z", + "createdAt": "2023-09-21T16:08:45.136Z", + "updatedAt": "2023-09-21T16:08:45.137Z" }, { - "id": "14da070758c14112ab72a7756ed45a31", + "id": "38b79a1328ce465b9045a6bcce917da2", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -293,12 +1645,12 @@ "name": "Secondary Weapon Inventory Slot: Price Progression 0", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.317Z", - "createdAt": "2023-09-17T03:45:41.317Z", - "updatedAt": "2023-09-17T03:45:41.317Z" + "grantedAt": "2023-09-21T16:08:45.109Z", + "createdAt": "2023-09-21T16:08:45.109Z", + "updatedAt": "2023-09-21T16:08:45.109Z" }, { - "id": "19adce23505d473abc1c5dc7fffec890", + "id": "704f86e86d4b4b45a72114a63b409984", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -310,12 +1662,12 @@ "name": "Overkill M32A1 MGL", "useCount": 1, "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.298Z", - "createdAt": "2023-09-17T03:45:41.298Z", - "updatedAt": "2023-09-17T03:45:41.299Z" + "grantedAt": "2023-09-21T16:08:45.088Z", + "createdAt": "2023-09-21T16:08:45.088Z", + "updatedAt": "2023-09-21T16:08:45.088Z" }, { - "id": "ad76f9b38818409bbe371996e1214613", + "id": "b588bdc4301940249f6b143b867540f9", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -327,12 +1679,12 @@ "name": "Pistol S40", "useCount": 1, "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.277Z", - "createdAt": "2023-09-17T03:45:41.277Z", - "updatedAt": "2023-09-17T03:45:41.278Z" + "grantedAt": "2023-09-21T16:08:45.062Z", + "createdAt": "2023-09-21T16:08:45.062Z", + "updatedAt": "2023-09-21T16:08:45.062Z" }, { - "id": "cefae9df48154b6c8bde30d2272e83f0", + "id": "a28e0cb91a014921b04d31fc27a25e4d", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -344,12 +1696,12 @@ "name": "AssaultRifle CAR4", "useCount": 1, "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.257Z", - "createdAt": "2023-09-17T03:45:41.257Z", - "updatedAt": "2023-09-17T03:45:41.258Z" + "grantedAt": "2023-09-21T16:08:45.038Z", + "createdAt": "2023-09-21T16:08:45.038Z", + "updatedAt": "2023-09-21T16:08:45.039Z" }, { - "id": "b6a4aabee1294a45b4edc41e82945034", + "id": "50aeee1c3bd7423b8aa9f1d0b1a8340a", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -361,66 +1713,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:41.237Z", - "createdAt": "2023-09-17T03:45:41.237Z", - "updatedAt": "2023-09-17T03:45:41.238Z" - }, - { - "id": "184098691c96492c90610244ef7ef39b", - "namespace": "pd3", - "clazz": "ENTITLEMENT", - "type": "CONSUMABLE", - "status": "ACTIVE", - "sku": "pd3_preplanning_uni_ammobag", - "userId": "redacteduserid", - "itemId": "95f57d5c08e34dcb946483ba865c7d54", - "itemNamespace": "pd3", - "name": "Ammo Bag universal preplanning asset", - "useCount": 1, - "source": "REWARD", - "stackable": true, - "grantedAt": "2023-09-17T03:45:41.216Z", - "createdAt": "2023-09-17T03:45:41.216Z", - "updatedAt": "2023-09-17T03:45:41.217Z" - }, - { - "id": "1f5748880d1d4d2ebc3d094a34f24cf4", - "namespace": "pd3", - "clazz": "ENTITLEMENT", - "type": "CONSUMABLE", - "status": "ACTIVE", - "sku": "pd3_preplanning_uni_medicbag", - "userId": "redacteduserid", - "itemId": "340a890d972d47b5adfacdf5ef854f2c", - "itemNamespace": "pd3", - "name": "Medic Bag universal preplanning asset", - "useCount": 1, - "source": "REWARD", - "stackable": true, - "grantedAt": "2023-09-17T03:45:41.194Z", - "createdAt": "2023-09-17T03:45:41.194Z", - "updatedAt": "2023-09-17T03:45:41.194Z" - }, - { - "id": "c5df5a34e7f849188b227e9034f40dec", - "namespace": "pd3", - "clazz": "ENTITLEMENT", - "type": "CONSUMABLE", - "status": "ACTIVE", - "sku": "pd3_preplanning_uni_armorbag", - "userId": "redacteduserid", - "itemId": "f87963ec8bab4381b62396e2974e97b8", - "itemNamespace": "pd3", - "name": "Armor Bag universal preplanning asset", - "useCount": 1, - "source": "REWARD", - "stackable": true, - "grantedAt": "2023-09-17T03:45:41.175Z", - "createdAt": "2023-09-17T03:45:41.175Z", - "updatedAt": "2023-09-17T03:45:41.176Z" + "grantedAt": "2023-09-21T16:08:45.013Z", + "createdAt": "2023-09-21T16:08:45.013Z", + "updatedAt": "2023-09-21T16:08:45.014Z" }, { - "id": "ebc99fee8e93439b8f5018c93e6620cb", + "id": "bba75796d5884534b6075fdf10fc7fdc", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -431,12 +1729,12 @@ "itemNamespace": "pd3", "name": "Suit Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.156Z", - "createdAt": "2023-09-17T03:45:41.156Z", - "updatedAt": "2023-09-17T03:45:41.157Z" + "grantedAt": "2023-09-21T16:08:44.892Z", + "createdAt": "2023-09-21T16:08:44.892Z", + "updatedAt": "2023-09-21T16:08:44.892Z" }, { - "id": "269bdf09260244aab5954e3579f649d0", + "id": "e47f2716fa754a7bbfff3701094aff82", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -447,12 +1745,12 @@ "itemNamespace": "pd3", "name": "Suit Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.149Z", - "createdAt": "2023-09-17T03:45:41.149Z", - "updatedAt": "2023-09-17T03:45:41.150Z" + "grantedAt": "2023-09-21T16:08:44.885Z", + "createdAt": "2023-09-21T16:08:44.885Z", + "updatedAt": "2023-09-21T16:08:44.885Z" }, { - "id": "b167a07252e743deaa3b1694fe2b29b1", + "id": "d088f8e0174a4afc9fd5e8162e88a60c", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -463,12 +1761,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.130Z", - "createdAt": "2023-09-17T03:45:41.130Z", - "updatedAt": "2023-09-17T03:45:41.130Z" + "grantedAt": "2023-09-21T16:08:44.859Z", + "createdAt": "2023-09-21T16:08:44.859Z", + "updatedAt": "2023-09-21T16:08:44.859Z" }, { - "id": "ebb48edca4234429a2ef36fc30736648", + "id": "c235cde9eab1447b898e3831871de301", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -479,12 +1777,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.124Z", - "createdAt": "2023-09-17T03:45:41.124Z", - "updatedAt": "2023-09-17T03:45:41.125Z" + "grantedAt": "2023-09-21T16:08:44.848Z", + "createdAt": "2023-09-21T16:08:44.848Z", + "updatedAt": "2023-09-21T16:08:44.849Z" }, { - "id": "61a7feadc3a445b6bebcac0d70aec83a", + "id": "f78a95183ea14148ac841e6e022f86c6", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -495,12 +1793,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.119Z", - "createdAt": "2023-09-17T03:45:41.119Z", - "updatedAt": "2023-09-17T03:45:41.120Z" + "grantedAt": "2023-09-21T16:08:44.84Z", + "createdAt": "2023-09-21T16:08:44.84Z", + "updatedAt": "2023-09-21T16:08:44.84Z" }, { - "id": "dd4a86f255824669b3bb6a728ad67956", + "id": "a12f5066c2c84aab92d0d355c6174304", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -511,12 +1809,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.114Z", - "createdAt": "2023-09-17T03:45:41.114Z", - "updatedAt": "2023-09-17T03:45:41.115Z" + "grantedAt": "2023-09-21T16:08:44.827Z", + "createdAt": "2023-09-21T16:08:44.827Z", + "updatedAt": "2023-09-21T16:08:44.827Z" }, { - "id": "1fb1e26df2034f2ba74885c255ac5c20", + "id": "545f70dd92a7412b9c87adcddae73c51", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -527,12 +1825,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.108Z", - "createdAt": "2023-09-17T03:45:41.108Z", - "updatedAt": "2023-09-17T03:45:41.109Z" + "grantedAt": "2023-09-21T16:08:44.819Z", + "createdAt": "2023-09-21T16:08:44.819Z", + "updatedAt": "2023-09-21T16:08:44.819Z" }, { - "id": "e2dd2aa9235c409ab46cbcd349562c99", + "id": "3bef0208f42c473e8aa0787566a9f226", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -543,12 +1841,12 @@ "itemNamespace": "pd3", "name": "Primary Weapon Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.103Z", - "createdAt": "2023-09-17T03:45:41.103Z", - "updatedAt": "2023-09-17T03:45:41.104Z" + "grantedAt": "2023-09-21T16:08:44.811Z", + "createdAt": "2023-09-21T16:08:44.811Z", + "updatedAt": "2023-09-21T16:08:44.811Z" }, { - "id": "7348aab073134ee78fc8dd73c3f9fd44", + "id": "47968adf0f3e4f2ebbefac98479cfad7", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -559,12 +1857,12 @@ "itemNamespace": "pd3", "name": "Mask Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.085Z", - "createdAt": "2023-09-17T03:45:41.085Z", - "updatedAt": "2023-09-17T03:45:41.086Z" + "grantedAt": "2023-09-21T16:08:44.781Z", + "createdAt": "2023-09-21T16:08:44.781Z", + "updatedAt": "2023-09-21T16:08:44.782Z" }, { - "id": "33b68ae48f4b46419c99c333426da90d", + "id": "0cd22478a1d1492686c5e864ab3c6689", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -575,12 +1873,12 @@ "itemNamespace": "pd3", "name": "Mask Inventory Slot", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.079Z", - "createdAt": "2023-09-17T03:45:41.079Z", - "updatedAt": "2023-09-17T03:45:41.080Z" + "grantedAt": "2023-09-21T16:08:44.772Z", + "createdAt": "2023-09-21T16:08:44.772Z", + "updatedAt": "2023-09-21T16:08:44.772Z" }, { - "id": "b45916eb6bc84a0c909f42c01d56ab11", + "id": "fd3f4dd795c149db9292723e5dc1638e", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -592,12 +1890,12 @@ "name": "Character Joy", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.061Z", - "createdAt": "2023-09-17T03:45:41.061Z", - "updatedAt": "2023-09-17T03:45:41.062Z" + "grantedAt": "2023-09-21T16:08:44.744Z", + "createdAt": "2023-09-21T16:08:44.744Z", + "updatedAt": "2023-09-21T16:08:44.744Z" }, { - "id": "07776f2eca014a8d8507bb13ece20d37", + "id": "602486df0cd34354adeba060e2cb99e1", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -609,12 +1907,12 @@ "name": "Suit Inventory Slot: Price Progression 0", "features": [], "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.042Z", - "createdAt": "2023-09-17T03:45:41.042Z", - "updatedAt": "2023-09-17T03:45:41.043Z" + "grantedAt": "2023-09-21T16:08:44.717Z", + "createdAt": "2023-09-21T16:08:44.717Z", + "updatedAt": "2023-09-21T16:08:44.717Z" }, { - "id": "fc58fc1b584f4108ac711af2972dfcde", + "id": "454ad979fadd4f399592948019254794", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -627,12 +1925,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:41.023Z", - "createdAt": "2023-09-17T03:45:41.023Z", - "updatedAt": "2023-09-17T03:45:41.023Z" + "grantedAt": "2023-09-21T16:08:44.678Z", + "createdAt": "2023-09-21T16:08:44.678Z", + "updatedAt": "2023-09-21T16:08:44.679Z" }, { - "id": "9192ee1329f14e15827d4554f75efaf5", + "id": "2985c686a91e439fabf318845bae9d38", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -643,12 +1941,12 @@ "itemNamespace": "pd3", "name": "Character Wolf", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:41.001Z", - "createdAt": "2023-09-17T03:45:41.001Z", - "updatedAt": "2023-09-17T03:45:41.002Z" + "grantedAt": "2023-09-21T16:08:44.644Z", + "createdAt": "2023-09-21T16:08:44.644Z", + "updatedAt": "2023-09-21T16:08:44.645Z" }, { - "id": "9e2ad7b28748495ca44d5f879e1ac096", + "id": "84070a1aa07e42399d5d388c90e8ea6c", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -659,12 +1957,12 @@ "itemNamespace": "pd3", "name": "Character Hoxton", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.979Z", - "createdAt": "2023-09-17T03:45:40.979Z", - "updatedAt": "2023-09-17T03:45:40.980Z" + "grantedAt": "2023-09-21T16:08:44.619Z", + "createdAt": "2023-09-21T16:08:44.619Z", + "updatedAt": "2023-09-21T16:08:44.619Z" }, { - "id": "f5402125b91944dc9ae830c9ad34e9f7", + "id": "a134162fd65a44d5b0ab7fa9751954ae", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -675,12 +1973,12 @@ "itemNamespace": "pd3", "name": "Character Chains", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.953Z", - "createdAt": "2023-09-17T03:45:40.953Z", - "updatedAt": "2023-09-17T03:45:40.958Z" + "grantedAt": "2023-09-21T16:08:44.593Z", + "createdAt": "2023-09-21T16:08:44.593Z", + "updatedAt": "2023-09-21T16:08:44.593Z" }, { - "id": "77132bc2e2a14b3b816aa10adcf23feb", + "id": "643457b1077f4880800f406147a6945c", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -691,12 +1989,12 @@ "itemNamespace": "pd3", "name": "Character Dallas", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.934Z", - "createdAt": "2023-09-17T03:45:40.934Z", - "updatedAt": "2023-09-17T03:45:40.935Z" + "grantedAt": "2023-09-21T16:08:44.573Z", + "createdAt": "2023-09-21T16:08:44.573Z", + "updatedAt": "2023-09-21T16:08:44.573Z" }, { - "id": "1a010c181f064f1689c42e21d04fe669", + "id": "08332374170c4d88a3829b798a036803", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -708,12 +2006,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:40.910Z", - "createdAt": "2023-09-17T03:45:40.910Z", - "updatedAt": "2023-09-17T03:45:40.912Z" + "grantedAt": "2023-09-21T16:08:44.531Z", + "createdAt": "2023-09-21T16:08:44.531Z", + "updatedAt": "2023-09-21T16:08:44.532Z" }, { - "id": "007094f6aa1341098d45e1a06938d5f8", + "id": "1f6a8172b786466b9777c8b4c42e8ab5", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -725,12 +2023,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:40.887Z", - "createdAt": "2023-09-17T03:45:40.887Z", - "updatedAt": "2023-09-17T03:45:40.888Z" + "grantedAt": "2023-09-21T16:08:44.505Z", + "createdAt": "2023-09-21T16:08:44.505Z", + "updatedAt": "2023-09-21T16:08:44.505Z" }, { - "id": "e619b9e9d3214566aa5b26e5296d70ce", + "id": "5ae0592bd30340039d6fe4de8dfd98c7", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -741,12 +2039,12 @@ "itemNamespace": "pd3", "name": "Gadget Camera tool", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.863Z", - "createdAt": "2023-09-17T03:45:40.863Z", - "updatedAt": "2023-09-17T03:45:40.864Z" + "grantedAt": "2023-09-21T16:08:44.453Z", + "createdAt": "2023-09-21T16:08:44.453Z", + "updatedAt": "2023-09-21T16:08:44.453Z" }, { - "id": "e51959b5a63d4de2a139d29f8133bbfe", + "id": "202148d5637f45aba6b661ecdeacbcd5", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "DURABLE", @@ -757,12 +2055,12 @@ "itemNamespace": "pd3", "name": "Ballistic vest", "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.840Z", - "createdAt": "2023-09-17T03:45:40.840Z", - "updatedAt": "2023-09-17T03:45:40.842Z" + "grantedAt": "2023-09-21T16:08:44.427Z", + "createdAt": "2023-09-21T16:08:44.427Z", + "updatedAt": "2023-09-21T16:08:44.427Z" }, { - "id": "63cb48204d234783a96e5e4ea993380d", + "id": "121429c4407149a48a81409c2b437a5d", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -775,12 +2073,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:40.818Z", - "createdAt": "2023-09-17T03:45:40.818Z", - "updatedAt": "2023-09-17T03:45:40.819Z" + "grantedAt": "2023-09-21T16:08:44.398Z", + "createdAt": "2023-09-21T16:08:44.398Z", + "updatedAt": "2023-09-21T16:08:44.398Z" }, { - "id": "41ab6a55ab0f47369cf61b182fe936b7", + "id": "fe7ccfee62f540168e1fc72c0f5dadf6", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -793,12 +2091,12 @@ "useCount": 1, "source": "REWARD", "stackable": true, - "grantedAt": "2023-09-17T03:45:40.795Z", - "createdAt": "2023-09-17T03:45:40.794Z", - "updatedAt": "2023-09-17T03:45:40.796Z" + "grantedAt": "2023-09-21T16:08:44.366Z", + "createdAt": "2023-09-21T16:08:44.366Z", + "updatedAt": "2023-09-21T16:08:44.366Z" }, { - "id": "6028220e2ba042ac93d35baab3a1eadd", + "id": "694a7a83f4fb4087ade79d4d176d01fd", "namespace": "pd3", "clazz": "ENTITLEMENT", "type": "CONSUMABLE", @@ -811,15 +2109,172 @@ "features": [], "useCount": 1, "source": "REWARD", - "grantedAt": "2023-09-17T03:45:40.743Z", - "createdAt": "2023-09-17T03:45:40.743Z", - "updatedAt": "2023-09-17T03:45:40.745Z" + "grantedAt": "2023-09-21T16:08:44.318Z", + "createdAt": "2023-09-21T16:08:44.318Z", + "updatedAt": "2023-09-21T16:08:44.318Z" + }, + { + "id": "d1818fc4f6814852b7c9bc1e4870f15f", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_mask_pd2promo", + "userId": "redacteduserid", + "itemId": "865b127704cd40fe9284cc1f4023886f", + "itemNamespace": "pd3", + "name": "PD2 Promo Mask", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-18T09:03:45.988Z", + "createdAt": "2023-09-18T09:03:45.988Z", + "updatedAt": "2023-09-18T09:03:45.988Z" + }, + { + "id": "7887edde88b14de3964f38ec2306df3c", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo4", + "userId": "redacteduserid", + "itemId": "e4d7af8a113548bc8b184d66fdf4bcc6", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 4", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:31.594Z", + "createdAt": "2023-09-11T10:31:31.594Z", + "updatedAt": "2023-09-11T10:31:31.594Z" + }, + { + "id": "d46b518561e84c31bacd9fd3c4ffd17d", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo3", + "userId": "redacteduserid", + "itemId": "7254522dd58e4f8cbb939b89496fa31b", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 3", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:27.515Z", + "createdAt": "2023-09-11T10:31:27.515Z", + "updatedAt": "2023-09-11T10:31:27.515Z" + }, + { + "id": "90c7d72c94244c6684b3daaaeec79d1a", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo5", + "userId": "redacteduserid", + "itemId": "fcc48b191d434526804c18c17bd638d2", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 5", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:24.01Z", + "createdAt": "2023-09-11T10:31:24.01Z", + "updatedAt": "2023-09-11T10:31:24.011Z" + }, + { + "id": "71ba82c70693423ca243220b2f9a7cbc", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo3", + "userId": "redacteduserid", + "itemId": "7254522dd58e4f8cbb939b89496fa31b", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 3", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:20.055Z", + "createdAt": "2023-09-11T10:31:20.055Z", + "updatedAt": "2023-09-11T10:31:20.056Z" + }, + { + "id": "7624a0c403eb4392afbd68af8eaa6aff", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo1", + "userId": "redacteduserid", + "itemId": "2cffe14329c64be5b423de391c2955cd", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 1", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:09.869Z", + "createdAt": "2023-09-11T10:31:09.869Z", + "updatedAt": "2023-09-11T10:31:09.87Z" + }, + { + "id": "6c026f27ce694242ae7c13735d669f57", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_weapon_charm_pd2promo6", + "userId": "redacteduserid", + "itemId": "28d482c5dbb14de786f640c202d60950", + "itemNamespace": "pd3", + "name": "PD2 Promo Charm 6", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-11T10:31:05.361Z", + "createdAt": "2023-09-11T10:31:05.361Z", + "updatedAt": "2023-09-11T10:31:05.362Z" + }, + { + "id": "b77aa7d41ca744eb99ca88887a73ee96", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_wpn_preset_promo1", + "userId": "redacteduserid", + "itemId": "22353e0584ef4a2596e4630759a29bf7", + "itemNamespace": "pd3", + "name": "Preset - PD2 Promo", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-07T08:41:15.423Z", + "createdAt": "2023-09-07T08:41:15.423Z", + "updatedAt": "2023-09-07T08:41:15.424Z" + }, + { + "id": "0a623fa0d65544c18d19886f200b9da4", + "namespace": "pd3", + "clazz": "ENTITLEMENT", + "type": "CONSUMABLE", + "status": "ACTIVE", + "sku": "pd3_cosmetic_accessory_gloves_pd2promo", + "userId": "redacteduserid", + "itemId": "638bf75ba8394a508e05b52117eceee4", + "itemNamespace": "pd3", + "name": "PD2 Promo Gloves", + "features": [], + "useCount": 1, + "source": "PURCHASE", + "grantedAt": "2023-09-07T08:41:13.009Z", + "createdAt": "2023-09-07T08:41:13.009Z", + "updatedAt": "2023-09-07T08:41:13.009Z" } ], - "paging": { - "first": "", - "last": "", - "next": "", - "previous": "" - } + "paging": {} } \ No newline at end of file diff --git a/PayCheckServerLib/Files/FeatureToggle.json b/PayCheckServerLib/Files/FeatureToggle.json new file mode 100644 index 0000000..43b0c2b --- /dev/null +++ b/PayCheckServerLib/Files/FeatureToggle.json @@ -0,0 +1,17 @@ +{ + "namespace": "pd3", + "key": "feature-toggle", + "set_by": "SERVER", + "value": { + "FeatureToggleMapping": [ + { + "DailyChallenges": true, + "MaskOfTheWeek": true, + "Matchmaking_Quickplay": true, + "UseAccelByteBackend": true + } + ] + }, + "created_at": "2024-04-30T08:45:14.623Z", + "updated_at": "2024-08-19T08:58:30.566Z" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/FirmRotation.json b/PayCheckServerLib/Files/FirmRotation.json index 0dc82b0..d73da30 100644 --- a/PayCheckServerLib/Files/FirmRotation.json +++ b/PayCheckServerLib/Files/FirmRotation.json @@ -10,11 +10,11 @@ "LevelShortName": "", "Normal": [], "Overkill": [ - "AmGuard", - "GenSec" + "", + "" ], "VeryHard": [ - "GenSec" + "" ] }, { @@ -23,11 +23,27 @@ "LevelShortName": "BranchBank", "Normal": [], "Overkill": [ + "Senturian", "AmGuard", - "Senturian" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "AmGuard" + "Senturian", + "ReflectorShields" + ] + }, + { + "Description": "Armored Transport security modifiers", + "Hard": [], + "LevelShortName": "ArmoredTransport", + "Normal": [], + "Overkill": [ + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "ReflectorShields" ] }, { @@ -36,11 +52,14 @@ "LevelShortName": "JewelryStore", "Normal": [], "Overkill": [ + "AmGuard", "GenSec", - "Senturian" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "GenSec" + "AmGuard", + "ReflectorShields" ] }, { @@ -49,11 +68,14 @@ "LevelShortName": "NightClub", "Normal": [], "Overkill": [ - "AmGuard", - "Senturian" + "Senturian", + "GenSec", + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "AmGuard" + "Senturian", + "ReflectorShields" ] }, { @@ -62,11 +84,14 @@ "LevelShortName": "ArtGallery", "Normal": [], "Overkill": [ + "GenSec", "AmGuard", - "GenSec" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "AmGuard" + "GenSec", + "ReflectorShields" ] }, { @@ -75,11 +100,14 @@ "LevelShortName": "FirstPlayable", "Normal": [], "Overkill": [ + "GenSec", "Senturian", - "AmGuard" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "Senturian" + "GenSec", + "ReflectorShields" ] }, { @@ -88,11 +116,14 @@ "LevelShortName": "CargoDock", "Normal": [], "Overkill": [ + "Senturian", "GenSec", - "Senturian" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "GenSec" + "Senturian", + "ReflectorShields" ] }, { @@ -101,11 +132,14 @@ "LevelShortName": "Penthouse", "Normal": [], "Overkill": [ + "AmGuard", "Senturian", - "AmGuard" + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "Senturian" + "AmGuard", + "ReflectorShields" ] }, { @@ -114,11 +148,24 @@ "LevelShortName": "Station", "Normal": [], "Overkill": [ - "GenSec", - "Senturian" + "AmGuard", + "GenSec" ], "VeryHard": [ - "GenSec" + "AmGuard" + ] + }, + { + "Description": "Cook off security modifiers", + "Hard": [], + "LevelShortName": "Villa", + "Normal": [], + "Overkill": [ + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "ReflectorShields" ] }, { @@ -126,16 +173,83 @@ "Hard": [], "LevelShortName": "Datacenter", "Normal": [], + "Overkill": [ + "GenSec", + "Senturian", + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "GenSec", + "ReflectorShields" + ] + }, + { + "Description": "FORT security modifiers", + "Hard": [], + "LevelShortName": "Fort", + "Normal": [], + "Overkill": [ + "Senturian", + "GenSec", + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "Senturian", + "ReflectorShields" + ] + }, + { + "Description": "CHUS security modifiers", + "Hard": [], + "LevelShortName": "Chus", + "Normal": [], + "Overkill": [ + "GenSec", + "Senturian", + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "GenSec", + "ReflectorShields" + ] + }, + { + "Description": "Didi security modifiers", + "Hard": [], + "LevelShortName": "DiamondDistrict", + "Normal": [], + "Overkill": [ + "Senturian", + "GenSec", + "ReflectorShields", + "BuddySystem" + ], + "VeryHard": [ + "Senturian", + "ReflectorShields" + ] + }, + { + "Description": "Stonk security modifiers", + "Hard": [], + "LevelShortName": "Stonk", + "Normal": [], "Overkill": [ "AmGuard", - "GenSec" + "GenSec", + "ReflectorShields", + "BuddySystem" ], "VeryHard": [ - "AmGuard" + "AmGuard", + "ReflectorShields" ] } ] }, "created_at": "2023-03-03T09:47:36.276Z", - "updated_at": "2024-02-29T10:03:03.563Z" + "updated_at": "2024-09-16T10:13:04.59Z" } \ No newline at end of file diff --git a/PayCheckServerLib/Files/Hashes.json b/PayCheckServerLib/Files/Hashes.json index 6ecaa5d..4f0dcba 100644 --- a/PayCheckServerLib/Files/Hashes.json +++ b/PayCheckServerLib/Files/Hashes.json @@ -1,12 +1,15 @@ { "BasicInfamyTable.json": "4b1b4823572ad391bb66cf67485d60a6cdbbe89ee75ff88b0fad1c0e8a6a1591", - "ChallengeRecommendations.json": "a3f2b9cb7c5333ac9eeb4852be6b7140c5f739f21934721dd5c10d8ef25308cd", - "ChallengeRecords.json": "adddb39ee466415ac516002e57d4775f6184147c848b4ce9712d1560d32b62d8", - "Entitlements.json": "bbebc9a63b45831098db26453a7b1b64d3cc16bc293e948034a67473b814e7eb", - "FirmRotation.json": "e73f93519e8994c0da40ce14222eb20a77ba9c8ab99eee85c2aefe27226f122d", - "Items.json": "74f2877d2919ee315f9d6194d0241559aae710002d98b2feb1069d35d8528d9a", - "MetaEvents.json": "77c81d779a0e5d948607d627b4450393703efab48f0454616c5ce04904344a0b", - "NewsFeed.json": "c7481878839b520b86953491b6fa3ae9305601dfedb9d812b6552cadb31b3333", - "UpdatedAtTimes.json": "58b5eb1a803e1b68e074ce2c9adb463f4e47544a6e38072c0c96bf1f18470304", - "WeaponTables.json": "2dc45785834ed6eb2476cd51f298631ae7fb263bfce09bbea6c6087b000ada2d" + "ChallengeRecommendations.json": "7abe000523af9c94673372891898a70256d0017553446890ff18ebb8f6e4e629", + "ChallengeRecords.json": "d9a04e9dfb552bcd64743004c642d6e355a2935927424b2eb14d41d89e3e08dd", + "ClientConfiguration.json": "f533abc58cd0e3dab84005f2c577d656bed073ab555843be8f0a1aab9eb9c13e", + "Entitlements.json": "ac5b03b15c510cd81e4836df01d00e105e60186210836c6a75fad259095e6254", + "FeatureToggle.json": "141436d2a2a55e1a07339143543d62a9425726efcb6696d42170fa29b03debde", + "FirmRotation.json": "f9d2210b16e7fc689cfe5c369c1386c1b176210616a4211a35c81afc7a90d8bf", + "Items.json": "f37123634686c45c75e43694b5d13e2c2c9f4e882a91f3b366be75ed3fed922e", + "MetaEvents.json": "fb0f37735c32b70e002afaf3e2a51170728981d1bfccd874420b7598ca1248f2", + "NewsFeed.json": "2bc14a1fef9189ff4be836e88acf60d560659c4a4c98ec97125142d05e2efe3a", + "TimeBasedPlayerContent.json": "5aeb9282824347339739d3b1d43e3db0a200a37aa4784f95157f6fc65e228387", + "UpdatedAtTimes.json": "87cd52f2135226e4506e80c4967173f271e4256d83a10f36207825b2e42f8190", + "WeaponTables.json": "9c6ec04186f6903fd4cfa04d7933d7b5d929fbd901927637701059be7813ffb6" } \ No newline at end of file diff --git a/PayCheckServerLib/Files/Items.json b/PayCheckServerLib/Files/Items.json index 554473b..b0d74d1 100644 --- a/PayCheckServerLib/Files/Items.json +++ b/PayCheckServerLib/Files/Items.json @@ -1,92 +1,94 @@ { "data": [ { - "title": "1 Data Center Preplanning Asset", - "itemId": "78502eb46ce44bd08b156c6a5466fbd3", + "title": " Epic Revolver Bullkick500", + "itemId": "c703383d700342a59999839bfdb4932d", "baseAppId": "", - "sku": "pd3_preplanning_datacenter_1", + "sku": "pd3_epic_wpn_revolver_bullkick500", "namespace": "pd3", - "name": "1 Data Center Preplanning Asset", + "name": " Epic Revolver Bullkick500", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-17T09:01:23.059Z", - "discountPurchaseAt": "2023-10-17T09:01:23.059Z" + "purchaseAt": "2024-02-14T12:17:29.007Z", + "discountPurchaseAt": "2024-02-14T12:17:29.007Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-17T09:01:23.552Z", + "createdAt": "2024-02-14T12:17:29.754Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "1 Station Preplanning Asset", - "itemId": "9ef4512c63e04a1d8f4f447db1dd0117", - "sku": "pd3_preplanning_station_1", + "title": " MOD Bullkick500 Grip Biofit", + "itemId": "4cc320309bfa49e5b274c175e3756b78", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_grip_biofit", "namespace": "pd3", - "name": "1 Station Preplanning Asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": " MOD Bullkick500 Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:18:26.219Z", - "discountPurchaseAt": "2023-10-04T13:18:26.219Z" + "purchaseAt": "2024-02-14T14:25:59.418Z", + "discountPurchaseAt": "2024-02-14T14:25:59.418Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:53.781Z", + "createdAt": "2024-02-14T14:26:00.375Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "1 Villa Preplanning Asset", - "itemId": "04dfe4043b9449549e6c897ad413929b", - "sku": "pd3_preplanning_villa_1", + "title": "1 Chus Preplanning Asset", + "itemId": "2c7d5dfcf5694ee188742640c0516dfb", + "baseAppId": "", + "sku": "pd3_preplanning_chus_1", "namespace": "pd3", - "name": "1 Villa Preplanning Asset", + "name": "1 Chus Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -104,8 +106,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:12:42.864Z", - "discountPurchaseAt": "2023-10-04T13:12:42.864Z" + "purchaseAt": "2024-03-06T12:01:44.927Z", + "discountPurchaseAt": "2024-03-06T12:01:44.927Z" } ], "itemQty": {}, @@ -118,16 +120,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:53.773Z", + "createdAt": "2024-03-06T12:01:44.704Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "2 Data Center Preplanning Asset", - "itemId": "b1535c1e89e54b7ab749d622ebe2e86f", + "title": "1 Data Center Preplanning Asset", + "itemId": "78502eb46ce44bd08b156c6a5466fbd3", "baseAppId": "", - "sku": "pd3_preplanning_datacenter_2", + "sku": "pd3_preplanning_datacenter_1", "namespace": "pd3", - "name": "2 Data Center Preplanning Asset", + "name": "1 Data Center Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -145,8 +147,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-17T09:02:33.472Z", - "discountPurchaseAt": "2023-10-17T09:02:33.472Z" + "purchaseAt": "2023-10-17T09:01:23.059Z", + "discountPurchaseAt": "2023-10-17T09:01:23.059Z" } ], "itemQty": {}, @@ -159,15 +161,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-17T09:02:33.956Z", + "createdAt": "2023-10-17T09:01:23.552Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "2 Station Preplanning Asset", - "itemId": "1543ccb3ff5146f4b713911839d493d0", - "sku": "pd3_preplanning_station_2", + "title": "1 Didi Preplanning Asset", + "itemId": "acc3173c3b4f4e4da014b1e6de357132", + "baseAppId": "", + "sku": "pd3_preplanning_didi_1", "namespace": "pd3", - "name": "2 Station Preplanning Asset", + "name": "1 Didi Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -185,8 +188,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:19:25.549Z", - "discountPurchaseAt": "2023-10-04T13:19:25.549Z" + "purchaseAt": "2024-05-22T11:30:07.803Z", + "discountPurchaseAt": "2024-05-22T11:30:07.803Z" } ], "itemQty": {}, @@ -199,15 +202,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:53.794Z", + "createdAt": "2024-05-22T11:30:06.559Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "2 Villa Preplanning Asset", - "itemId": "84eff09190304f8ca6d4b964fbe99a2c", - "sku": "pd3_preplanning_villa_2", + "title": "1 Fort Preplanning Asset", + "itemId": "482bd77678a848eba8ad15db056c215c", + "baseAppId": "", + "sku": "pd3_preplanning_fort_1", "namespace": "pd3", - "name": "2 Villa Preplanning Asset", + "name": "1 Fort Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -225,8 +229,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:14:56.000Z", - "discountPurchaseAt": "2023-10-04T13:14:56.000Z" + "purchaseAt": "2024-01-17T12:34:19.723Z", + "discountPurchaseAt": "2024-01-17T12:34:19.723Z" } ], "itemQty": {}, @@ -239,16 +243,15 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:53.800Z", + "createdAt": "2024-01-17T12:34:19.785Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "3 Data Center Preplanning Asset", - "itemId": "4876f3b42f904fc2af6cb2c75de27942", - "baseAppId": "", - "sku": "pd3_preplanning_datacenter_3", + "title": "1 Station Preplanning Asset", + "itemId": "9ef4512c63e04a1d8f4f447db1dd0117", + "sku": "pd3_preplanning_station_1", "namespace": "pd3", - "name": "3 Data Center Preplanning Asset", + "name": "1 Station Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -266,8 +269,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-17T09:03:33.141Z", - "discountPurchaseAt": "2023-10-17T09:03:33.141Z" + "purchaseAt": "2023-10-04T13:18:26.219Z", + "discountPurchaseAt": "2023-10-04T13:18:26.219Z" } ], "itemQty": {}, @@ -280,15 +283,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-17T09:03:33.630Z", + "createdAt": "2023-11-10T05:51:53.781Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "3 Station Preplanning Asset", - "itemId": "bdba4c27cfad4225ad1faa263a1d5f4a", - "sku": "pd3_preplanning_station_3", + "title": "1 Stonk Preplanning Asset", + "itemId": "16b8f71c86e04adbb8697514bc365905", + "baseAppId": "", + "sku": "pd3_preplanning_stonk_1", "namespace": "pd3", - "name": "3 Station Preplanning Asset", + "name": "1 Stonk Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -306,8 +310,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:20:58.091Z", - "discountPurchaseAt": "2023-10-04T13:20:58.091Z" + "purchaseAt": "2024-07-03T11:39:09.987Z", + "discountPurchaseAt": "2024-07-03T11:39:09.987Z" } ], "itemQty": {}, @@ -320,15 +324,15 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:53.780Z", + "createdAt": "2024-07-03T11:39:09.516Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "3 Villa Preplanning Asset", - "itemId": "a96c77c1d5d54e5180e0486c78e95998", - "sku": "pd3_preplanning_villa_3", + "title": "1 Villa Preplanning Asset", + "itemId": "04dfe4043b9449549e6c897ad413929b", + "sku": "pd3_preplanning_villa_1", "namespace": "pd3", - "name": "3 Villa Preplanning Asset", + "name": "1 Villa Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -346,8 +350,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:16:13.125Z", - "discountPurchaseAt": "2023-10-04T13:16:13.125Z" + "purchaseAt": "2023-10-04T13:12:42.864Z", + "discountPurchaseAt": "2023-10-04T13:12:42.864Z" } ], "itemQty": {}, @@ -360,16 +364,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.083Z", + "createdAt": "2023-11-10T05:51:53.773Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "1 Data Center Preplanning Asset", - "itemId": "5c1b77fc240c4687b5ec4fa3ba215343", + "title": "2 Chus Preplanning Asset", + "itemId": "30736719ea16457ab26cb42a381d9c8f", "baseAppId": "", - "sku": "pd3_preplanning_datacenter_4", + "sku": "pd3_preplanning_chus_2", "namespace": "pd3", - "name": "4 Data Center Preplanning Asset", + "name": "2 Chus Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -387,8 +391,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-17T09:04:25.614Z", - "discountPurchaseAt": "2023-10-17T09:04:25.614Z" + "purchaseAt": "2024-03-06T12:23:24.401Z", + "discountPurchaseAt": "2024-03-06T12:23:24.401Z" } ], "itemQty": {}, @@ -401,15 +405,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-17T09:04:26.086Z", + "createdAt": "2024-03-06T12:23:24.172Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "4 Station Preplanning Asset", - "itemId": "b8e2a0ce38444458bc50d1a3e5bb075d", - "sku": "pd3_preplanning_station_4", + "title": "2 Data Center Preplanning Asset", + "itemId": "b1535c1e89e54b7ab749d622ebe2e86f", + "baseAppId": "", + "sku": "pd3_preplanning_datacenter_2", "namespace": "pd3", - "name": "4 Station Preplanning Asset", + "name": "2 Data Center Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -427,8 +432,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:21:50.011Z", - "discountPurchaseAt": "2023-10-04T13:21:50.011Z" + "purchaseAt": "2023-10-17T09:02:33.472Z", + "discountPurchaseAt": "2023-10-17T09:02:33.472Z" } ], "itemQty": {}, @@ -441,15 +446,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.088Z", + "createdAt": "2023-10-17T09:02:33.956Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "4 Villa Preplanning Asset", - "itemId": "24feafdb91504f458670a133d86ea37e", - "sku": "pd3_preplanning_villa_4", + "title": "2 Didi Preplanning Asset", + "itemId": "e96ba1e6c7b24c91bb79a8586af172f1", + "baseAppId": "", + "sku": "pd3_preplanning_didi_2", "namespace": "pd3", - "name": "4 Villa Preplanning Asset", + "name": "2 Didi Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -467,8 +473,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-04T13:17:13.413Z", - "discountPurchaseAt": "2023-10-04T13:17:13.413Z" + "purchaseAt": "2024-05-22T11:32:49.743Z", + "discountPurchaseAt": "2024-05-22T11:32:49.743Z" } ], "itemQty": {}, @@ -481,58 +487,56 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.115Z", + "createdAt": "2024-05-22T11:32:48.578Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "50 PayDay Credits", - "itemId": "5cbcc3bb6e7741e6bc37883a5d219a4d", - "sku": "pd3_coin_credits_50", + "title": "2 Fort Preplanning Asset", + "itemId": "3e550b4e4ea145509cbc4778f10aa9d3", + "baseAppId": "", + "sku": "pd3_preplanning_fort_2", "namespace": "pd3", - "name": "50 PayDay Credits", + "name": "2 Fort Preplanning Asset", "entitlementType": "CONSUMABLE", - "useCount": 50, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "CRED", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 1, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1, - "currencyCode": "USD", - "currencyType": "REAL", + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-06T10:23:49.610Z", - "discountPurchaseAt": "2023-03-06T10:23:49.610Z" + "purchaseAt": "2024-01-17T12:35:40.912Z", + "discountPurchaseAt": "2024-01-17T12:35:40.912Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor" - ], - "features": [ - "iap-sync-steam" + "PreplanningAsset", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-06T10:23:49.349Z", + "createdAt": "2024-01-17T12:35:40.965Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Additional Loot Secure Point Art Gallery Preplanning asset", - "itemId": "ed77cf56bf8d435ab25b07eb476bf341", - "baseAppId": "", - "sku": "pd3_preplanning_artgallery_1", + "title": "2 Station Preplanning Asset", + "itemId": "1543ccb3ff5146f4b713911839d493d0", + "sku": "pd3_preplanning_station_2", "namespace": "pd3", - "name": "Additional Loot Secure Point Art Gallery Preplanning asset", + "name": "2 Station Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -549,28 +553,31 @@ "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-04T13:19:25.549Z", + "discountPurchaseAt": "2023-10-04T13:19:25.549Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset" + "PreplanningAsset", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T12:57:09.318Z", + "createdAt": "2023-11-10T05:51:53.794Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Additional Secure Point Night Club Preplanning asset", - "itemId": "3540c541445e4c86be79d0d9d618fa62", + "title": "2 Stonk Preplanning Asset", + "itemId": "4f6f72de7cba496e80b65bdcf67b95be", "baseAppId": "", - "sku": "pd3_preplanning_nightclub_1", + "sku": "pd3_preplanning_stonk_2", "namespace": "pd3", - "name": "Additional Secure Point Night Club Preplanning asset", + "name": "2 Stonk Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -587,7 +594,9 @@ "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-03T11:40:27.932Z", + "discountPurchaseAt": "2024-07-03T11:40:27.932Z" } ], "itemQty": {}, @@ -595,55 +604,61 @@ "PreplanningAsset", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-31T14:15:07.626Z", + "createdAt": "2024-07-03T11:40:27.441Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Ammo Bag", - "itemId": "0e091c01715242029912616da7191590", - "baseAppId": "", - "sku": "pd3_placeable_ammobag", + "title": "2 Villa Preplanning Asset", + "itemId": "84eff09190304f8ca6d4b964fbe99a2c", + "sku": "pd3_preplanning_villa_2", "namespace": "pd3", - "name": "Ammo Bag", + "name": "2 Villa Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/Placeable", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-04T13:14:56Z", + "discountPurchaseAt": "2023-10-04T13:14:56Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-01-17T14:57:14.517Z", + "createdAt": "2023-11-10T05:51:53.8Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Ammo Bag preplanning asset", - "itemId": "95f57d5c08e34dcb946483ba865c7d54", + "title": "3 Chus Preplanning Asset", + "itemId": "883aeffbe34443a7bb38d095f689878a", "baseAppId": "", - "sku": "pd3_preplanning_uni_ammobag", + "sku": "pd3_preplanning_chus_3", "namespace": "pd3", - "name": "Ammo Bag universal preplanning asset", + "name": "3 Chus Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -654,70 +669,78 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:24:23.861Z", + "discountPurchaseAt": "2024-03-06T12:24:23.861Z" } ], "itemQty": {}, "tags": [ "PreplanningAsset", - "CombatEquipmentVendor", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-03T14:33:06.400Z", + "createdAt": "2024-03-06T12:24:23.639Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Armor Bag", - "itemId": "e456f47e7e2e4e2d9a8539ec3819576f", + "title": "3 Data Center Preplanning Asset", + "itemId": "4876f3b42f904fc2af6cb2c75de27942", "baseAppId": "", - "sku": "pd3_placeable_armorbag", + "sku": "pd3_preplanning_datacenter_3", "namespace": "pd3", - "name": "Armor Bag", + "name": "3 Data Center Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/Placeable", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-17T09:03:33.141Z", + "discountPurchaseAt": "2023-10-17T09:03:33.141Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-28T15:34:06.094Z", + "createdAt": "2023-10-17T09:03:33.63Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Armor Bag preplanning asset", - "itemId": "f87963ec8bab4381b62396e2974e97b8", + "title": "3 Didi Preplanning Asset", + "itemId": "fd38dd8824244d27beff10d11b19fc83", "baseAppId": "", - "sku": "pd3_preplanning_uni_armorbag", + "sku": "pd3_preplanning_didi_3", "namespace": "pd3", - "name": "Armor Bag universal preplanning asset", + "name": "3 Didi Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -728,1574 +751,1606 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-22T11:34:01.818Z", + "discountPurchaseAt": "2024-05-22T11:34:01.818Z" } ], "itemQty": {}, "tags": [ "PreplanningAsset", - "CombatEquipmentVendor", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-03T14:33:56.618Z", + "createdAt": "2024-05-22T11:34:00.542Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "AssaultRifle M4A1", - "longDescription": "-", - "itemId": "b361476205fc4e94a7fe9ccd16d4586e", + "title": "3 Fort Preplanning Asset", + "itemId": "1d5d3f22a3ec44bbaa60a28db664c632", "baseAppId": "", - "sku": "pd3_wpn_assaultrifle_car4", + "sku": "pd3_preplanning_fort_3", "namespace": "pd3", - "name": "AssaultRifle CAR4", + "name": "3 Fort Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-01-17T12:36:46.397Z", + "discountPurchaseAt": "2024-01-17T12:36:46.397Z" } ], "itemQty": {}, - "boundItemIds": [ - "d7867b7039ed475282644cf31f47be0f" - ], "tags": [ - "CombatEquipmentVendor", + "PreplanningAsset", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-11-01T08:55:29.927Z", + "createdAt": "2024-01-17T12:36:46.434Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "AssaultRifle AKM", - "itemId": "38983384c9074848aecb81bfb5c7a05a", - "baseAppId": "", - "sku": "pd3_wpn_assaultrifle_ku59", + "title": "3 Station Preplanning Asset", + "itemId": "bdba4c27cfad4225ad1faa263a1d5f4a", + "sku": "pd3_preplanning_station_3", "namespace": "pd3", - "name": "AssaultRifle KU59", + "name": "3 Station Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-04T13:20:58.091Z", + "discountPurchaseAt": "2023-10-04T13:20:58.091Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel35" + "PreplanningAsset", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-07-11T14:17:47.539Z", + "createdAt": "2023-11-10T05:51:53.78Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "AssaultRifle NWB9", - "itemId": "7059338db37b46fdb3ba5b0b39ca88a4", + "title": "3 Stonk Preplanning Asset", + "itemId": "a0810a691e8b43f7a3d5566005b75550", "baseAppId": "", - "sku": "pd3_wpn_assaultrifle_nwb9", + "sku": "pd3_preplanning_stonk_3", "namespace": "pd3", - "name": "AssaultRifle NWB9", + "name": "3 Stonk Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-03T11:41:28.776Z", + "discountPurchaseAt": "2024-07-03T11:41:28.776Z" } ], "itemQty": {}, - "boundItemIds": [], "tags": [ - "InfamyLevel21", - "CombatEquipmentVendor" + "PreplanningAsset", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-21T11:43:46.117Z", + "createdAt": "2024-07-03T11:41:28.277Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "AssaultRifle VF7S", - "itemId": "7f05b178c2c741f7aea184cca56f91b5", - "baseAppId": "", - "sku": "pd3_wpn_assaultrifle_vf7s", + "title": "3 Villa Preplanning Asset", + "itemId": "a96c77c1d5d54e5180e0486c78e95998", + "sku": "pd3_preplanning_villa_3", "namespace": "pd3", - "name": "AssaultRifle VF7S", + "name": "3 Villa Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-04T13:16:13.125Z", + "discountPurchaseAt": "2023-10-04T13:16:13.125Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel77" + "PreplanningAsset", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-25T13:10:13.930Z", + "createdAt": "2023-11-10T05:51:54.083Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Attachment Price Low", - "itemId": "f6b210dd100748238ab6b54706277a2b", + "title": "4 Chus Preplanning Asset", + "itemId": "8f430aaa47dd4f6ba9ce010b53113106", "baseAppId": "", - "sku": "pd3_attachment_price_low", + "sku": "pd3_preplanning_chus_4", "namespace": "pd3", - "name": "Attachment Price Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponPartAttachments", + "name": "4 Chus Preplanning Asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:25:14.674Z", + "discountPurchaseAt": "2024-03-06T12:25:14.674Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PreplanningAsset", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-27T10:57:38.118Z", + "createdAt": "2024-03-06T12:25:14.458Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Ballistic vest", - "itemId": "371134035f4647f4a2ed0d7862971bd7", + "title": "1 Data Center Preplanning Asset", + "itemId": "5c1b77fc240c4687b5ec4fa3ba215343", "baseAppId": "", - "sku": "pd3_armor_ballistictvest", + "sku": "pd3_preplanning_datacenter_4", "namespace": "pd3", - "name": "Ballistic vest", - "entitlementType": "DURABLE", - "categoryPath": "/Armor", + "name": "4 Data Center Preplanning Asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-17T09:04:25.614Z", + "discountPurchaseAt": "2023-10-17T09:04:25.614Z" } ], "itemQty": {}, "tags": [ + "PreplanningAsset", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-02-07T07:24:05.592Z", + "createdAt": "2023-10-17T09:04:26.086Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 1", - "itemId": "f893ca145e6f47d8948d0ef3b9613b52", + "title": "4 Didi Preplanning Asset", + "itemId": "9b50f7a9719941e48db1647b3ba68c85", "baseAppId": "", - "sku": "pd3_wpn_preset_b1", + "sku": "pd3_preplanning_didi_4", "namespace": "pd3", - "name": "Base Preset 1", + "name": "4 Didi Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:14:54.466Z" + "purchaseAt": "2024-05-22T11:34:58.39Z", + "discountPurchaseAt": "2024-05-22T11:34:58.39Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel100" + "PreplanningAsset", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:14:54.377Z", + "createdAt": "2024-05-22T11:34:57.116Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 10", - "itemId": "afc365ca22b24154b2f9b5bd2731d4dd", + "title": "4 Fort Preplanning Asset", + "itemId": "1e8e1becbe674c979b5ca132fabd2808", "baseAppId": "", - "sku": "pd3_wpn_preset_b10", + "sku": "pd3_preplanning_fort_4", "namespace": "pd3", - "name": "Base Preset 10", + "name": "4 Fort Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:25:23.239Z" + "purchaseAt": "2024-01-17T12:37:42.342Z", + "discountPurchaseAt": "2024-01-17T12:37:42.342Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel93" + "PreplanningAsset", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:25:23.051Z", + "createdAt": "2024-01-17T12:37:42.388Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 11", - "itemId": "5aa93c679ff94dbfb5805d29f8f63fe8", - "baseAppId": "", - "sku": "pd3_wpn_preset_b11", + "title": "4 Station Preplanning Asset", + "itemId": "b8e2a0ce38444458bc50d1a3e5bb075d", + "sku": "pd3_preplanning_station_4", "namespace": "pd3", - "name": "Base Preset 11", + "name": "4 Station Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:26:03.274Z" + "purchaseAt": "2023-10-04T13:21:50.011Z", + "discountPurchaseAt": "2023-10-04T13:21:50.011Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel125" + "PreplanningAsset", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:26:03.082Z", + "createdAt": "2023-11-10T05:51:54.088Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 12", - "itemId": "17349d52fd49472cb96a6d843f6e3111", + "title": "4 Stonk Preplanning Asset", + "itemId": "510dad0db168441fb1888cae2bd5ea71", "baseAppId": "", - "sku": "pd3_wpn_preset_b12", + "sku": "pd3_preplanning_stonk_4", "namespace": "pd3", - "name": "Base Preset 12", + "name": "4 Stonk Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:26:37.650Z" + "purchaseAt": "2024-07-03T11:42:33.366Z", + "discountPurchaseAt": "2024-07-03T11:42:33.366Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel86", - "CombatEquipmentVendor" + "PreplanningAsset", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:26:37.458Z", + "createdAt": "2024-07-03T11:42:32.874Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 13", - "itemId": "e9760a832b994824ac7645b73e28904b", - "baseAppId": "", - "sku": "pd3_wpn_preset_b13", + "title": "4 Villa Preplanning Asset", + "itemId": "24feafdb91504f458670a133d86ea37e", + "sku": "pd3_preplanning_villa_4", "namespace": "pd3", - "name": "Base Preset 13", + "name": "4 Villa Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:27:18.141Z" + "purchaseAt": "2023-10-04T13:17:13.413Z", + "discountPurchaseAt": "2023-10-04T13:17:13.413Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel60" + "PreplanningAsset", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:27:17.947Z", + "createdAt": "2023-11-10T05:51:54.115Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 2", - "itemId": "02afeb95a2f04cb7baf7bb386bc20204", - "baseAppId": "", - "sku": "pd3_wpn_preset_b2", + "title": "50 PayDay Credits", + "itemId": "5cbcc3bb6e7741e6bc37883a5d219a4d", + "sku": "pd3_coin_credits_50", "namespace": "pd3", - "name": "Base Preset 2", + "name": "50 PayDay Credits", "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "useCount": 50, + "stackable": true, + "categoryPath": "/Coin", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "COINS", + "targetCurrencyCode": "CRED", "regionData": [ { - "price": 20000000, + "price": 1, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20000000, - "currencyCode": "CASH", - "currencyType": "VIRTUAL", + "discountedPrice": 1, + "currencyCode": "USD", + "currencyType": "REAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:16:24.501Z" + "purchaseAt": "2023-03-06T10:23:49.61Z", + "discountPurchaseAt": "2023-03-06T10:23:49.61Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel26" + "GoldExchangeVendor" ], - "features": [], - "maxCountPerUser": 1, + "features": [ + "iap-sync-steam" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:16:24.321Z", + "createdAt": "2023-03-06T10:23:49.349Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 3", - "itemId": "cc0ffd1d11e54be49eaa076a15969174", + "title": "Adaptable Ballistic Vest ", + "itemId": "d8a354e8a8de411582a02e655a0f54f2", "baseAppId": "", - "sku": "pd3_wpn_preset_b3", + "sku": "pd3_armor_adaptableballistictvest", "namespace": "pd3", - "name": "Base Preset 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "name": "Adaptable Ballistic Vest ", + "entitlementType": "DURABLE", + "categoryPath": "/Armor", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 150, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 150, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:17:04.707Z" + "purchaseAt": "2024-01-30T10:03:27.997Z", + "discountPurchaseAt": "2024-01-30T10:03:27.997Z" } ], "itemQty": {}, - "tags": [ - "CombatEquipmentVendor", - "InfamyLevel136" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:17:04.523Z", + "createdAt": "2024-01-30T10:03:28.145Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 4", - "itemId": "96405d6bb191458daa989c6430adb633", + "title": "Additional Loot Secure Point Art Gallery Preplanning asset", + "itemId": "ed77cf56bf8d435ab25b07eb476bf341", "baseAppId": "", - "sku": "pd3_wpn_preset_b4", + "sku": "pd3_preplanning_artgallery_1", "namespace": "pd3", - "name": "Base Preset 4", + "name": "Additional Loot Secure Point Art Gallery Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:17:55.818Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel110" + "PreplanningAsset" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:17:55.634Z", + "createdAt": "2022-09-21T12:57:09.318Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 5", - "itemId": "a0d7681d43c044f599fead7717d1b333", + "title": "Additional Secure Point Night Club Preplanning asset", + "itemId": "3540c541445e4c86be79d0d9d618fa62", "baseAppId": "", - "sku": "pd3_wpn_preset_b5", + "sku": "pd3_preplanning_nightclub_1", "namespace": "pd3", - "name": "Base Preset 5", + "name": "Additional Secure Point Night Club Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:19:48.456Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel49" + "PreplanningAsset", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:19:48.275Z", + "createdAt": "2022-08-31T14:15:07.626Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 6", - "itemId": "032389676bce4147ac891cc67a3865bb", + "title": "Ammo Bag", + "itemId": "0e091c01715242029912616da7191590", "baseAppId": "", - "sku": "pd3_wpn_preset_b6", + "sku": "pd3_placeable_ammobag", "namespace": "pd3", - "name": "Base Preset 6", + "name": "Ammo Bag", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/Placeable", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 50, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:22:17.594Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "InfamyLevel150", - "CombatEquipmentVendor" - ], - "features": [], - "maxCountPerUser": 1, + "tags": [], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:22:17.407Z", + "createdAt": "2022-01-17T14:57:14.517Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 7", - "itemId": "62d64a67a4e24e37ab0806060af50792", + "title": "Ammo Bag preplanning asset", + "itemId": "95f57d5c08e34dcb946483ba865c7d54", "baseAppId": "", - "sku": "pd3_wpn_preset_b7", + "sku": "pd3_preplanning_uni_ammobag", "namespace": "pd3", - "name": "Base Preset 7", + "name": "Ammo Bag universal preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000000, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000000, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:23:11.773Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ + "PreplanningAsset", "CombatEquipmentVendor", - "InfamyLevel67" + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:23:11.583Z", + "createdAt": "2022-08-03T14:33:06.4Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 8", - "itemId": "fe9eeb827d8d48fc81facaf6237ce10e", + "title": "Armor Bag", + "itemId": "e456f47e7e2e4e2d9a8539ec3819576f", "baseAppId": "", - "sku": "pd3_wpn_preset_b8", + "sku": "pd3_placeable_armorbag", "namespace": "pd3", - "name": "Base Preset 8", + "name": "Armor Bag", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/Placeable", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:23:49.255Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "CombatEquipmentVendor", - "InfamyLevel7" - ], - "features": [], - "maxCountPerUser": 1, + "tags": [], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:23:49.068Z", + "createdAt": "2022-09-28T15:34:06.094Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Base Preset 9", - "itemId": "5670c203e1794820bd55b8d1c3e045a3", + "title": "Armor Bag preplanning asset", + "itemId": "f87963ec8bab4381b62396e2974e97b8", "baseAppId": "", - "sku": "pd3_wpn_preset_b9", + "sku": "pd3_preplanning_uni_armorbag", "namespace": "pd3", - "name": "Base Preset 9", + "name": "Armor Bag universal preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 20000000, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20000000, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:24:19.604Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ + "PreplanningAsset", "CombatEquipmentVendor", - "InfamyLevel40" + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:24:19.416Z", + "createdAt": "2022-08-03T14:33:56.618Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Cafe Celebration Sharke Bank Preplanning Asset", - "itemId": "24fb047fe6bb4227a09d1089d1271f7d", + "title": "AssaultRifle M4A1", + "longDescription": "-", + "itemId": "b361476205fc4e94a7fe9ccd16d4586e", "baseAppId": "", - "sku": "pd3_preplanning_sharkebank_2", + "sku": "pd3_wpn_assaultrifle_car4", "namespace": "pd3", - "name": "Cafe Celebration Sharke Bank Preplanning Asset", + "name": "AssaultRifle CAR4", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [ + "d7867b7039ed475282644cf31f47be0f" + ], "tags": [ - "PreplanningAsset", + "CombatEquipmentVendor", "InitialItem" ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:20:23.016Z", + "createdAt": "2021-11-01T08:55:29.927Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Cash", - "itemId": "f693f83bf5074e50be6329ec77e21730", + "title": "AssaultRifle AKM", + "itemId": "38983384c9074848aecb81bfb5c7a05a", "baseAppId": "", - "sku": "pd3_coin_cash", + "sku": "pd3_wpn_assaultrifle_ku59", "namespace": "pd3", - "name": "Cash", + "name": "AssaultRifle KU59", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "COINS", - "targetCurrencyCode": "CASH", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "USD", - "currencyType": "REAL", - "currencyNamespace": "starbreeze" + "discountedPrice": 500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel35" + ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-02-25T14:16:37.134Z", + "createdAt": "2022-07-11T14:17:47.539Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Chains Mask", - "itemId": "055c92d7e42546838bf3a7227ef51ce3", + "title": "AssaultRifle NWB9", + "itemId": "7059338db37b46fdb3ba5b0b39ca88a4", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_chains", + "sku": "pd3_wpn_assaultrifle_nwb9", "namespace": "pd3", - "name": "Chains Mould", + "name": "AssaultRifle NWB9", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/MaskMould", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T14:57:33.870Z", - "discountPurchaseAt": "2023-02-10T14:57:33.870Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" + "InfamyLevel21", + "CombatEquipmentVendor" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T14:57:33.749Z", + "createdAt": "2022-10-21T11:43:46.117Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Chains Suit", - "itemId": "b3d50842d9c84a939a9e5009571f07c8", + "title": "AssaultRifle VF7S", + "itemId": "7f05b178c2c741f7aea184cca56f91b5", "baseAppId": "", - "sku": "pd3_suit_chains", + "sku": "pd3_wpn_assaultrifle_vf7s", "namespace": "pd3", - "name": "Chains Suit", + "name": "AssaultRifle VF7S", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Suit", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [], + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel77" + ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-31T13:38:57.184Z", + "createdAt": "2022-10-25T13:10:13.93Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Chains", - "itemId": "873b342a05c14af99962a117a2abaf01", + "title": "Attachment Price Low", + "itemId": "f6b210dd100748238ab6b54706277a2b", "baseAppId": "", - "sku": "pd3_character_chains", + "sku": "pd3_attachment_price_low", "namespace": "pd3", - "name": "Character Chains", + "name": "Attachment Price Low", "entitlementType": "DURABLE", - "categoryPath": "/Character", + "categoryPath": "/WeaponPartAttachments", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, - "maxCountPerUser": 1, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-06-21T09:09:02.759Z", + "createdAt": "2022-09-27T10:57:38.118Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Dallas", - "itemId": "a6137d4bedec40a68447ea519541c4f8", + "title": "Ballistic vest", + "itemId": "371134035f4647f4a2ed0d7862971bd7", "baseAppId": "", - "sku": "pd3_character_dallas", + "sku": "pd3_armor_ballistictvest", "namespace": "pd3", - "name": "Character Dallas", + "name": "Ballistic vest", "entitlementType": "DURABLE", - "categoryPath": "/Character", + "categoryPath": "/Armor", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 50, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [], - "maxCountPerUser": 1, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-06-16T12:53:25.247Z", + "createdAt": "2022-02-07T07:24:05.592Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Hoxton", - "itemId": "d56551e6a2544f2a9661479174e49c24", + "title": "Base Preset 1", + "itemId": "f893ca145e6f47d8948d0ef3b9613b52", "baseAppId": "", - "sku": "pd3_character_hoxton", + "sku": "pd3_wpn_preset_b1", "namespace": "pd3", - "name": "Character Hoxton", - "entitlementType": "DURABLE", - "categoryPath": "/Character", + "name": "Base Preset 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 200, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-17T15:14:54.466Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel100" + ], + "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-06-21T09:10:59.312Z", + "createdAt": "2023-01-17T15:14:54.377Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Joy", - "itemId": "4849cd83298542f7a265fb229b155730", + "title": "Base Preset 10", + "itemId": "afc365ca22b24154b2f9b5bd2731d4dd", "baseAppId": "", - "sku": "pd3_character_joy", + "sku": "pd3_wpn_preset_b10", "namespace": "pd3", - "name": "Character Joy", - "entitlementType": "DURABLE", - "categoryPath": "/Character", + "name": "Base Preset 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 200, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-29T16:20:52.413Z", - "discountPurchaseAt": "2022-11-29T16:20:52.413Z" + "purchaseAt": "2023-01-17T15:25:23.239Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel93" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-29T16:20:47.868Z", + "createdAt": "2023-01-17T15:25:23.051Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Pearl", - "itemId": "2c146d9c431b4bbb971dd337d47f122c", + "title": "Base Preset 11", + "itemId": "5aa93c679ff94dbfb5805d29f8f63fe8", "baseAppId": "", - "sku": "pd3_character_pearl", + "sku": "pd3_wpn_preset_b11", "namespace": "pd3", - "name": "Character Pearl", - "entitlementType": "DURABLE", - "categoryPath": "/Character", + "name": "Base Preset 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-27T14:23:15.018Z", - "discountPurchaseAt": "2023-03-27T14:23:15.018Z" + "purchaseAt": "2023-01-17T15:26:03.274Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel125" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-27T14:23:14.146Z", + "createdAt": "2023-01-17T15:26:03.082Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Character Wolf", - "itemId": "737be23dccdb4b19add3379b42fdc2b9", + "title": "Base Preset 12", + "itemId": "17349d52fd49472cb96a6d843f6e3111", "baseAppId": "", - "sku": "pd3_character_wolf", + "sku": "pd3_wpn_preset_b12", "namespace": "pd3", - "name": "Character Wolf", - "entitlementType": "DURABLE", - "categoryPath": "/Character", + "name": "Base Preset 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-17T15:26:37.65Z" } ], "itemQty": {}, + "tags": [ + "InfamyLevel86", + "CombatEquipmentVendor" + ], + "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-06-21T09:04:45.437Z", + "createdAt": "2023-01-17T15:26:37.458Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Collectors Edition Masks PlayStation", - "itemId": "ae3b3f0551a0487595e3b702d1107960", + "title": "Base Preset 13", + "itemId": "e9760a832b994824ac7645b73e28904b", "baseAppId": "", - "sku": "PD3_playstation_collectors_edition_masks", + "sku": "pd3_wpn_preset_b13", "namespace": "pd3", - "name": "Collectors Edition Masks PlayStation", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Base Preset 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:22:54.988Z", - "discountPurchaseAt": "2023-09-19T12:22:54.988Z" + "purchaseAt": "2023-01-17T15:27:18.141Z" } ], - "itemIds": [ - "6f756438841e49bca982e456afda3460" - ], - "itemQty": { - "6612d166d3c14863a756848ba6acd11d": 1, - "ef8117da082c4c7691b27ed9ebb1a223": 1, - "6f756438841e49bca982e456afda3460": 1, - "cb21551e8a4d4380b18ff2a13ade292c": 1 - }, + "itemQty": {}, "tags": [ - "Platform", - "PlayStation", - "Premium" + "CombatEquipmentVendor", + "InfamyLevel60" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-19T12:22:54.666Z", + "createdAt": "2023-01-17T15:27:17.947Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Collectors Edition Masks Steam", - "itemId": "d02054037d174688ab9b27514e6e3548", + "title": "Base Preset 2", + "itemId": "02afeb95a2f04cb7baf7bb386bc20204", "baseAppId": "", - "sku": "PD3_steam_collectors_edition_masks", + "sku": "pd3_wpn_preset_b2", "namespace": "pd3", - "name": "Collectors Edition Masks Steam", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Base Preset 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 20000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 20000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:24:37.839Z", - "discountPurchaseAt": "2023-09-19T12:24:37.839Z" + "purchaseAt": "2023-01-17T15:16:24.501Z" } ], - "itemIds": [ - "a4bceb2be47a4608a8fee6a167e7653f" - ], - "itemQty": { - "a4bceb2be47a4608a8fee6a167e7653f": 1 - }, + "itemQty": {}, "tags": [ - "Premium" + "CombatEquipmentVendor", + "InfamyLevel26" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T07:11:55.462Z", + "createdAt": "2023-01-17T15:16:24.321Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Collectors Edition Masks XBox", - "itemId": "a5c8d73ba9a4450a820673b31de0ffae", + "title": "Base Preset 3", + "itemId": "cc0ffd1d11e54be49eaa076a15969174", "baseAppId": "", - "sku": "PD3_xbox_collectors_edition_masks", + "sku": "pd3_wpn_preset_b3", "namespace": "pd3", - "name": "Collectors Edition Masks XBox", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Base Preset 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 150, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 150, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:21:14.441Z", - "discountPurchaseAt": "2023-09-19T12:21:14.441Z" + "purchaseAt": "2023-01-17T15:17:04.707Z" } ], - "itemIds": [ - "4a46260108cb45d787e2bc6fefce743b" - ], - "itemQty": { - "297c7c11e15c4ca3847e4494cff2352a": 1, - "da3312f650154587bb5aa8a69a14d02e": 1, - "0ec654017e2c4b32868bf05f40578872": 1, - "4a46260108cb45d787e2bc6fefce743b": 1 - }, + "itemQty": {}, "tags": [ - "Platform", - "Premium", - "XBox" + "CombatEquipmentVendor", + "InfamyLevel136" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-19T12:21:14.134Z", + "createdAt": "2023-01-17T15:17:04.523Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Combat Vest", - "itemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", + "title": "Base Preset 4", + "itemId": "96405d6bb191458daa989c6430adb633", "baseAppId": "", - "sku": "pd3_armor_combatvest", + "sku": "pd3_wpn_preset_b4", "namespace": "pd3", - "name": "Combat Vest", - "entitlementType": "DURABLE", - "categoryPath": "/Armor", + "name": "Base Preset 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 200, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-17T15:17:55.818Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "CombatEquipmentVendor", + "InfamyLevel110" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T10:13:35.983Z", + "createdAt": "2023-01-17T15:17:55.634Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Cosmetic Mask Almir", - "itemId": "a6197966648945068bcce0b8ec2fc3cc", + "title": "Base Preset 5", + "itemId": "a0d7681d43c044f599fead7717d1b333", "baseAppId": "", - "sku": "pd3_cosmetic_almir_mask_01", + "sku": "pd3_wpn_preset_b5", "namespace": "pd3", - "name": "Cosmetic Mask Almir", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Base Preset 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, - "currencyCode": "CASH", + "discountedPrice": 200, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T15:01:49.130Z", - "discountPurchaseAt": "2024-01-10T15:01:49.130Z" + "purchaseAt": "2023-01-17T15:19:48.456Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel49" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T15:01:48.090Z", + "createdAt": "2023-01-17T15:19:48.275Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Cosmetic Mask Elizabeth", - "itemId": "abf74d4976594fd297f22cb8479d61ba", + "title": "Base Preset 6", + "itemId": "032389676bce4147ac891cc67a3865bb", "baseAppId": "", - "sku": "pd3_cosmetic_Elisabeth_mask_01", + "sku": "pd3_wpn_preset_b6", "namespace": "pd3", - "name": "Cosmetic Mask Elizabeth", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Base Preset 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, - "currencyCode": "CASH", + "discountedPrice": 200, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T15:00:56.751Z", - "discountPurchaseAt": "2024-01-10T15:00:56.751Z" + "purchaseAt": "2023-01-17T15:22:17.594Z" } ], "itemQty": {}, + "tags": [ + "InfamyLevel150", + "CombatEquipmentVendor" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T15:00:55.714Z", + "createdAt": "2023-01-17T15:22:17.407Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Crypto Wallet Timer Night Club Preplanning asset", - "itemId": "dca07cf916b04dbf8f3eb4a134e874cf", + "title": "Base Preset 7", + "itemId": "62d64a67a4e24e37ab0806060af50792", "baseAppId": "", - "sku": "pd3_preplanning_nightclub_3", + "sku": "pd3_wpn_preset_b7", "namespace": "pd3", - "name": "Crypto Wallet Timer Night Club Preplanning asset", + "name": "Base Preset 7", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 10000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 10000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-17T15:23:11.773Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "CombatEquipmentVendor", + "InfamyLevel67" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-31T14:20:51.295Z", + "createdAt": "2023-01-17T15:23:11.583Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Customizable Suit - Vest", - "itemId": "54c9ebd4771941e8a7a9d020563926f9", + "title": "Base Preset 8", + "itemId": "fe9eeb827d8d48fc81facaf6237ce10e", "baseAppId": "", - "sku": "pd3_suit_customizable_vest", + "sku": "pd3_wpn_preset_b8", "namespace": "pd3", - "name": "Customizable Suit - Vest", + "name": "Base Preset 8", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Suit", + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-13T09:00:09.782Z", - "discountPurchaseAt": "2023-01-13T09:00:09.782Z" + "purchaseAt": "2023-01-17T15:23:49.255Z" } ], "itemQty": {}, "tags": [ - "TailorVendor" + "CombatEquipmentVendor", + "InfamyLevel7" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-13T09:00:05.882Z", + "createdAt": "2023-01-17T15:23:49.068Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "DLC01 mask mould 01 ", - "itemId": "a6e56c3a726a40ef9c310bfe19a271d7", + "title": "Base Preset 9", + "itemId": "5670c203e1794820bd55b8d1c3e045a3", "baseAppId": "", - "sku": "pd3_cosmetic_dlc_01_maskmould_01", + "sku": "pd3_wpn_preset_b9", "namespace": "pd3", - "name": "DLC01 mask mould 01 ", + "name": "Base Preset 9", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/MaskMould", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 20000000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 20000000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-13T21:43:22.244Z" + "purchaseAt": "2023-01-17T15:24:19.604Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "InfamyLevel34" + "CombatEquipmentVendor", + "InfamyLevel40" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-13T21:43:19.618Z", + "createdAt": "2023-01-17T15:24:19.416Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "DLC01 mask mould 02", - "itemId": "639f6c68fd2a4bf098264e149f6f94a0", + "title": "Cafe Celebration Sharke Bank Preplanning Asset", + "itemId": "24fb047fe6bb4227a09d1089d1271f7d", "baseAppId": "", - "sku": "pd3_cosmetic_dlc_01_maskmould_02", + "sku": "pd3_preplanning_sharkebank_2", "namespace": "pd3", - "name": "DLC01 mask mould 02", + "name": "Cafe Celebration Sharke Bank Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-13T21:44:24.768Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "InfamyLevel46" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-13T21:44:22.120Z", + "createdAt": "2022-09-21T13:20:23.016Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "DLC01 mask mould 03", - "itemId": "5c8efb37a7124e9d9924e67e08c6b3ce", + "title": "Cash", + "itemId": "f693f83bf5074e50be6329ec77e21730", "baseAppId": "", - "sku": "pd3_cosmetic_dlc_01_maskmould_03", + "sku": "pd3_coin_cash", "namespace": "pd3", - "name": "DLC01 mask mould 03", + "name": "Cash", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/Coin", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "COINS", + "targetCurrencyCode": "CASH", "regionData": [ { - "price": 350000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, - "currencyCode": "CASH", - "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-13T21:45:15.678Z" + "discountedPrice": 0, + "currencyCode": "USD", + "currencyType": "REAL", + "currencyNamespace": "starbreeze" } ], "itemQty": {}, - "tags": [ - "InfamyLevel52", - "CharacterVendor" - ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-13T21:45:13.057Z", + "createdAt": "2022-02-25T14:16:37.134Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Dallas Mould", - "itemId": "f8bd84c650e04b42af101330e9d93b65", + "title": "Chains Mask", + "itemId": "055c92d7e42546838bf3a7227ef51ce3", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_dallas", + "sku": "pd3_cosmetic_mask_mould_chains", "namespace": "pd3", - "name": "Dallas Mould", + "name": "Chains Mould", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, @@ -2313,8 +2368,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T14:55:54.516Z", - "discountPurchaseAt": "2023-02-10T14:55:54.516Z" + "purchaseAt": "2023-02-10T14:57:33.87Z", + "discountPurchaseAt": "2023-02-10T14:57:33.87Z" } ], "itemQty": {}, @@ -2328,16 +2383,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T14:55:54.429Z", + "createdAt": "2023-02-10T14:57:33.749Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Dallas Suit", - "itemId": "526668a6ff044f8c857d933eb2dd3cae", + "title": "Chains Suit", + "itemId": "b3d50842d9c84a939a9e5009571f07c8", "baseAppId": "", - "sku": "pd3_suit_dallas", + "sku": "pd3_suit_chains", "namespace": "pd3", - "name": "Dallas Suit", + "name": "Chains Suit", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, @@ -2363,136 +2418,122 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-31T13:35:16.314Z", + "createdAt": "2022-10-31T13:38:57.184Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Degradation Time Cargo Dock Preplanning asset", - "itemId": "96de618c6aca4d3a9b4df9b3220fcb1c", + "title": "Character Chains", + "itemId": "873b342a05c14af99962a117a2abaf01", "baseAppId": "", - "sku": "pd3_preplanning_cargodock_2", + "sku": "pd3_character_chains", "namespace": "pd3", - "name": "Degradation Time Cargo Dock Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "Character Chains", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:26:55.524Z", + "createdAt": "2022-06-21T09:09:02.759Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Elevator Shaft Sharke Bank Preplanning Asset", - "itemId": "6c0bc7b7053c486496f68402d313c20d", + "title": "Character Dallas", + "itemId": "a6137d4bedec40a68447ea519541c4f8", "baseAppId": "", - "sku": "pd3_preplanning_sharkebank_4", + "sku": "pd3_character_dallas", "namespace": "pd3", - "name": "Elevator Shaft Sharke Bank Preplanning Asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "Character Dallas", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], - "maxCountPerUser": -1, + "tags": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-12T06:13:58.120Z", + "createdAt": "2022-06-16T12:53:25.247Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Employee Backdoor Jewelry Store Preplanning asset", - "itemId": "ed3734c6be7142ca9ac17df4b91e4acb", + "title": "Character Empress", + "itemId": "740be184430848dcad26f4705de7f5ba", "baseAppId": "", - "sku": "pd3_preplanning_jewelrystore_4", + "sku": "pd3_character_empress", "namespace": "pd3", - "name": "Employee Backdoor Jewelry Store Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "Character Empress", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-01-30T09:39:02.202Z", + "discountPurchaseAt": "2024-01-30T09:39:02.202Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-23T11:12:23.713Z", + "createdAt": "2024-01-30T09:39:02.37Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic DLC01 Heist pack", - "itemId": "711cd306bb1142678b74ffeb51072380", + "title": "Character Hoxton", + "itemId": "d56551e6a2544f2a9661479174e49c24", "baseAppId": "", - "sku": "pd3_epic_dlc01_heist_pack", + "sku": "pd3_character_hoxton", "namespace": "pd3", - "name": "Epic DLC01 Heist pack", + "name": "Character Hoxton", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "BUNDLE", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -2501,42 +2542,30 @@ "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:51:49.652Z", - "discountPurchaseAt": "2023-11-10T13:51:49.652Z" + "currencyNamespace": "pd3" } ], - "itemIds": [ - "db780556b7c2474fbe790ebd0bf8cc61" - ], - "itemQty": { - "db780556b7c2474fbe790ebd0bf8cc61": 1 - }, - "tags": [ - "PlatformOnly", - "Epic" - ], - "features": [], + "itemQty": {}, "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:51:44.748Z", + "createdAt": "2022-06-21T09:10:59.312Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic DLC01 Weapon pack ", - "itemId": "15b137e80a3f41819c57246805e29f70", + "title": "Character Joy", + "itemId": "4849cd83298542f7a265fb229b155730", "baseAppId": "", - "sku": "pd3_epic_dlc01_tailor_pack", + "sku": "pd3_character_joy", "namespace": "pd3", - "name": "Epic DLC01 Tailor pack ", + "name": "Character Joy", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "BUNDLE", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -2546,63 +2575,32 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T15:05:57.734Z", - "discountPurchaseAt": "2023-11-15T15:05:57.734Z" + "purchaseAt": "2022-11-29T16:20:52.413Z", + "discountPurchaseAt": "2022-11-29T16:20:52.413Z" } ], - "itemIds": [ - "587a7177f7e2481b9bae4bb8d6d935d9", - "dadff347515741ceb213c60d6770093c", - "02e2890b2c8547389f23efd42e9baa4f", - "d09eb1b2c3764f579d06d59cd36489f4", - "40fb983b2a254ec79b26e7dbbacb0b04", - "ac72fd0f475343298e31443f25fa50b9", - "14201497775e4d4391a653ed8d2f3528", - "8f451efae3774315bb305cfc8a9dc914", - "04fd0a5949204f63b2b39eaa9634ce36", - "a97e67e9d356437ab87308140720167e", - "89a7c03520794ddeb26d12e3453bb72c", - "e0642a77bbd24ec0a38162377eada954" - ], - "itemQty": { - "dadff347515741ceb213c60d6770093c": 1, - "04fd0a5949204f63b2b39eaa9634ce36": 1, - "40fb983b2a254ec79b26e7dbbacb0b04": 1, - "14201497775e4d4391a653ed8d2f3528": 1, - "89a7c03520794ddeb26d12e3453bb72c": 1, - "8f451efae3774315bb305cfc8a9dc914": 1, - "a97e67e9d356437ab87308140720167e": 1, - "587a7177f7e2481b9bae4bb8d6d935d9": 1, - "02e2890b2c8547389f23efd42e9baa4f": 1, - "d09eb1b2c3764f579d06d59cd36489f4": 1, - "e0642a77bbd24ec0a38162377eada954": 1, - "ac72fd0f475343298e31443f25fa50b9": 1 - }, - "tags": [ - "PlatformOnly", - "Epic" - ], + "itemQty": {}, "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T15:05:43.188Z", + "createdAt": "2022-11-29T16:20:47.868Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic DLC01 Weapon pack ", - "itemId": "4bd7858dedf74532abc83f987470e4ab", + "title": "Character Pearl", + "itemId": "2c146d9c431b4bbb971dd337d47f122c", "baseAppId": "", - "sku": "pd3_epic_dlc01_weapon_pack", + "sku": "pd3_character_pearl", "namespace": "pd3", - "name": "Epic DLC01 Weapon pack ", + "name": "Character Pearl", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -2612,205 +2610,195 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:27:08.743Z", - "discountPurchaseAt": "2023-11-10T13:27:08.743Z" + "purchaseAt": "2023-03-27T14:23:15.018Z", + "discountPurchaseAt": "2023-03-27T14:23:15.018Z" } ], - "itemIds": [ - "b4b433d76efd4c358c27df5ddb211987", - "b045a121cb344c40bddcfe80e6a39168", - "b1290462e6634f3db783b1f586c575e5", - "83dc052eca2e464eb8f7a098b8a617e8", - "3f1c861b3e8449ac9aef70399eca577f", - "f9a13e6c2a0f4e6d9251347bc63634c7" - ], - "itemQty": { - "b045a121cb344c40bddcfe80e6a39168": 1, - "b1290462e6634f3db783b1f586c575e5": 1, - "f9a13e6c2a0f4e6d9251347bc63634c7": 3, - "83dc052eca2e464eb8f7a098b8a617e8": 1, - "b4b433d76efd4c358c27df5ddb211987": 1, - "3f1c861b3e8449ac9aef70399eca577f": 1 - }, - "tags": [ - "PlatformOnly", - "Epic" - ], + "itemQty": {}, "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:27:03.919Z", + "createdAt": "2023-03-27T14:23:14.146Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic MOD Sight LightHolographic ", - "itemId": "6cf884b75adc47659d3cd7fb91f7d012", + "title": "Character Star", + "itemId": "1e5428247927431bb71d12b4eae9a328", "baseAppId": "", - "sku": "pd3_epic_mod_sight_lightholographic", + "sku": "pd3_character_star", "namespace": "pd3", - "name": "Epic MOD Sight LightHolographic ", + "name": "Character Star", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T09:32:52.885Z" + "purchaseAt": "2024-06-18T13:01:47.486Z", + "discountPurchaseAt": "2024-06-18T13:01:47.486Z" } ], "itemQty": {}, - "tags": [ - "WeaponPart" + "boundItemIds": [ + "dde2e05f007c4328b497415d214a7a27" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T09:32:53.542Z", + "createdAt": "2024-06-18T13:01:49.73Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic MOD Stock MinimizedHook ", - "itemId": "102640b57cf447ff964111b5894018b1", + "title": "Character Wolf", + "itemId": "737be23dccdb4b19add3379b42fdc2b9", "baseAppId": "", - "sku": "pd3_epic_mod_stock_minimizedhook", + "sku": "pd3_character_wolf", "namespace": "pd3", - "name": "Epic MOD Stock MinimizedHook ", + "name": "Character Wolf", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T11:00:32.200Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "WeaponPart" - ], - "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T11:00:33.019Z", + "createdAt": "2022-06-21T09:04:45.437Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic MOD VerticalGrip FlatSideStab ", - "itemId": "a18494be05fc400487a3727a9f73f1fd", + "title": "Collectors Edition Masks PlayStation", + "itemId": "ae3b3f0551a0487595e3b702d1107960", "baseAppId": "", - "sku": "pd3_epic_mod_verticalgrip_flatsidestab", + "sku": "PD3_playstation_collectors_edition_masks", "namespace": "pd3", - "name": "Epic MOD VerticalGrip FlatSideStab ", + "name": "Collectors Edition Masks PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:40:54.101Z" + "purchaseAt": "2023-09-19T12:22:54.988Z", + "discountPurchaseAt": "2023-09-19T12:22:54.988Z" } ], - "itemQty": {}, + "itemIds": [ + "6f756438841e49bca982e456afda3460" + ], + "itemQty": { + "6f756438841e49bca982e456afda3460": 1, + "cb21551e8a4d4380b18ff2a13ade292c": 1, + "ef8117da082c4c7691b27ed9ebb1a223": 1, + "6612d166d3c14863a756848ba6acd11d": 1 + }, "tags": [ - "WeaponPart" + "Platform", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:40:54.891Z", + "createdAt": "2023-09-19T12:22:54.666Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Marksman FIK22 ", - "itemId": "bf29ff7f2269498998a102f347a8768b", + "title": "Collectors Edition Masks Steam", + "itemId": "d02054037d174688ab9b27514e6e3548", "baseAppId": "", - "sku": "pd3_epic_wpn_marksman_fik22", + "sku": "PD3_steam_collectors_edition_masks", "namespace": "pd3", - "name": "Epic Marksman FIK22 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Collectors Edition Masks Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:24:57.792Z" + "purchaseAt": "2023-09-19T12:24:37.839Z", + "discountPurchaseAt": "2023-09-19T12:24:37.839Z" } ], - "itemQty": {}, + "itemIds": [ + "a4bceb2be47a4608a8fee6a167e7653f" + ], + "itemQty": { + "a4bceb2be47a4608a8fee6a167e7653f": 1 + }, "tags": [ - "PlatformOnly", - "CombatEquipmentVendor", - "Epic", - "DLC1Category", - "VendorEntitlementRequired" + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:24:58.336Z", + "createdAt": "2023-09-19T12:24:37.678Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Marksman FIK22 - Vendor Item ", - "itemId": "b4b433d76efd4c358c27df5ddb211987", + "title": "Collectors Edition Masks XBox", + "itemId": "a5c8d73ba9a4450a820673b31de0ffae", "baseAppId": "", - "sku": "pd3_epic_wpn_marksman_fik22_vendor", + "sku": "PD3_xbox_collectors_edition_masks", "namespace": "pd3", - "name": "Epic Marksman FIK22 - Vendor Item ", + "name": "Collectors Edition Masks XBox", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -2820,960 +2808,959 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:38:31.574Z", - "discountPurchaseAt": "2023-11-09T14:38:31.574Z" + "purchaseAt": "2023-09-19T12:21:14.441Z", + "discountPurchaseAt": "2023-09-19T12:21:14.441Z" } ], - "itemQty": {}, - "boundItemIds": [ - "4bd7858dedf74532abc83f987470e4ab" + "itemIds": [ + "4a46260108cb45d787e2bc6fefce743b" ], + "itemQty": { + "0ec654017e2c4b32868bf05f40578872": 1, + "da3312f650154587bb5aa8a69a14d02e": 1, + "297c7c11e15c4ca3847e4494cff2352a": 1, + "4a46260108cb45d787e2bc6fefce743b": 1 + }, "tags": [ - "PlatformOnly", - "Epic" + "Platform", + "Premium", + "XBox", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:38:32.147Z", + "createdAt": "2023-09-19T12:21:14.134Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic SMG WAR45 ", - "itemId": "c6c32aeb875d454aa7788fca9bedbcc4", + "title": "Combat Vest", + "itemId": "52ce01fcd9f64c6e9c95c6cd3ec25c27", "baseAppId": "", - "sku": "pd3_epic_wpn_smg_war45", + "sku": "pd3_armor_combatvest", "namespace": "pd3", - "name": "Epic SMG WAR45 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Combat Vest", + "entitlementType": "DURABLE", + "categoryPath": "/Armor", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:41:13.254Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "CombatEquipmentVendor", - "Epic", - "DLC1Category", - "VendorEntitlementRequired" + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:41:13.820Z", + "createdAt": "2022-11-02T10:13:35.983Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic SMG WAR45 - Vendor Item ", - "itemId": "b045a121cb344c40bddcfe80e6a39168", + "title": "Cosmetic Mask Almir", + "itemId": "a6197966648945068bcce0b8ec2fc3cc", "baseAppId": "", - "sku": "pd3_epic_wpn_smg_war45_vendor", + "sku": "pd3_cosmetic_almir_mask_01", "namespace": "pd3", - "name": "Epic SMG WAR45 - Vendor Item ", + "name": "Cosmetic Mask Almir", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:31:23.356Z", - "discountPurchaseAt": "2023-11-09T14:31:23.356Z" + "purchaseAt": "2024-01-10T15:01:49.13Z", + "discountPurchaseAt": "2024-01-10T15:01:49.13Z" } ], "itemQty": {}, - "boundItemIds": [ - "4bd7858dedf74532abc83f987470e4ab" - ], "tags": [ - "PlatformOnly", - "Epic" + "Premium" ], - "features": [], - "maxCountPerUser": 1, + "features": [ + "iap-sync-twitch" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:31:23.940Z", + "createdAt": "2024-01-10T15:01:48.09Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Shotgun FSA12 ", - "itemId": "227f10fed6f84d4998d9b3f2bbe74a78", + "title": "Cosmetic Mask Elizabeth", + "itemId": "abf74d4976594fd297f22cb8479d61ba", "baseAppId": "", - "sku": "pd3_epic_wpn_shotgun_fsa12", + "sku": "pd3_cosmetic_Elisabeth_mask_01", "namespace": "pd3", - "name": "Epic Shotgun FSA12 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Cosmetic Mask Elizabeth", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:51:56.648Z" + "purchaseAt": "2024-01-10T15:00:56.751Z", + "discountPurchaseAt": "2024-01-10T15:00:56.751Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "CombatEquipmentVendor", - "Epic", - "DLC1Category", - "VendorEntitlementRequired" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:51:57.211Z", + "createdAt": "2024-01-10T15:00:55.714Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Shotgun FSA12 - Vendor Item ", - "itemId": "b1290462e6634f3db783b1f586c575e5", + "title": "Crypto Wallet Timer Night Club Preplanning asset", + "itemId": "dca07cf916b04dbf8f3eb4a134e874cf", "baseAppId": "", - "sku": "pd3_epic_wpn_shotgun_fsa12_vendor", + "sku": "pd3_preplanning_nightclub_3", "namespace": "pd3", - "name": "Epic Shotgun FSA12 - Vendor Item ", - "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "name": "Crypto Wallet Timer Night Club Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T13:27:04.338Z", - "discountPurchaseAt": "2023-11-09T13:27:04.338Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "boundItemIds": [ - "4bd7858dedf74532abc83f987470e4ab" - ], "tags": [ - "PlatformOnly", - "Epic" + "PreplanningAsset", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T13:27:04.831Z", + "createdAt": "2022-08-31T14:20:51.295Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 gloves 01", - "itemId": "587a7177f7e2481b9bae4bb8d6d935d9", + "title": "Customizable Suit - Vest", + "itemId": "54c9ebd4771941e8a7a9d020563926f9", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_01", + "sku": "pd3_suit_customizable_vest", "namespace": "pd3", - "name": "Epic Tailor pack 01 gloves 01", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Customizable Suit - Vest", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 50, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:19:50.841Z", - "discountPurchaseAt": "2023-11-15T13:19:50.841Z" + "purchaseAt": "2023-01-13T09:00:09.782Z", + "discountPurchaseAt": "2023-01-13T09:00:09.782Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "TailorVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:19:36.642Z", + "createdAt": "2023-01-13T09:00:05.882Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 gloves 02", - "itemId": "dadff347515741ceb213c60d6770093c", + "title": "DLC01 Compensation Bundle Epic", + "itemId": "94f8c32e97e64d32b71800bb33701e76", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_02", + "sku": "pd3_epic_dlc01_edition_compensation_bundle", "namespace": "pd3", - "name": "Epic Tailor pack 01 gloves 02", + "name": "DLC01 Compensation Bundle Epic", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:16:14.454Z", - "discountPurchaseAt": "2023-11-15T13:16:14.454Z" + "purchaseAt": "2024-06-10T11:33:33.858Z", + "discountPurchaseAt": "2024-06-10T11:33:33.858Z" } ], - "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" + "itemIds": [ + "f5f27d528eb14a559c3d1798ba7fc357", + "3580ad073a8543618649cff9879c1523", + "42b95ea66c4949d6bb4d74b779a8a65e", + "a8c71eacd3a04a7e8b8fe02f5abfa4ae", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "973e21ba30ef4e428cfc06d48bc0b46b" ], + "itemQty": { + "3580ad073a8543618649cff9879c1523": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "a8c71eacd3a04a7e8b8fe02f5abfa4ae": 1, + "42b95ea66c4949d6bb4d74b779a8a65e": 1, + "973e21ba30ef4e428cfc06d48bc0b46b": 1, + "f5f27d528eb14a559c3d1798ba7fc357": 1 + }, "tags": [ "PlatformOnly", "Epic", - "Premium" + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:16:00.239Z", + "createdAt": "2024-06-10T11:33:33.376Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 gloves 03", - "itemId": "02e2890b2c8547389f23efd42e9baa4f", + "title": "DLC01 Compensation Bundle PlayStation", + "itemId": "9d61f4b53c784983b6890f051eade065", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_03", + "sku": "pd3_playstation_dlc01_edition_compensation_bundle", "namespace": "pd3", - "name": "Epic Tailor pack 01 gloves 03", + "name": "DLC01 Compensation Bundle PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:08:47.099Z", - "discountPurchaseAt": "2023-11-15T13:08:47.099Z" + "purchaseAt": "2024-06-10T11:29:05.249Z", + "discountPurchaseAt": "2024-06-10T11:29:05.249Z" } ], - "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" + "itemIds": [ + "3a7d54f5991a449ca4043316a8d309ba", + "119b1119c7c94f038fbc8cfe44ae48a1", + "e5fa0c2d921b4e24afb7574aaa243e11", + "83791bf975864a5d95125b142fa09fdf", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "2817b1bbd3064979acbeae71aac69da0" ], + "itemQty": { + "2817b1bbd3064979acbeae71aac69da0": 1, + "119b1119c7c94f038fbc8cfe44ae48a1": 1, + "3a7d54f5991a449ca4043316a8d309ba": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "e5fa0c2d921b4e24afb7574aaa243e11": 1, + "83791bf975864a5d95125b142fa09fdf": 1 + }, "tags": [ "PlatformOnly", - "Epic", - "Premium" + "PlayStation", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:08:32.906Z", + "createdAt": "2024-06-10T11:29:04.783Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 gloves 04", - "itemId": "d09eb1b2c3764f579d06d59cd36489f4", + "title": "DLC01 Compensation Bundle Steam", + "itemId": "eedabc2792254e6ba20bb898727aa091", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_04", + "sku": "pd3_steam_dlc01_edition_compensation_bundle", "namespace": "pd3", - "name": "Epic Tailor pack 01 gloves 04", + "name": "DLC01 Compensation Bundle Steam", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:04:29.051Z", - "discountPurchaseAt": "2023-11-15T13:04:29.051Z" + "purchaseAt": "2024-06-10T11:31:34.816Z", + "discountPurchaseAt": "2024-06-10T11:31:34.816Z" } ], - "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" + "itemIds": [ + "b094b5c69b45493d96f0ae24ffe8a680", + "527d86c04d1d4bc6b0b74ecf51634419", + "89e11787fd6b4f92b0d0c94420fce90f", + "c955ffd69801458993e0dae544cc4512", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "6d6586d7d50641dc9d0e6c5d5b8cb127" ], + "itemQty": { + "6d6586d7d50641dc9d0e6c5d5b8cb127": 1, + "c955ffd69801458993e0dae544cc4512": 1, + "89e11787fd6b4f92b0d0c94420fce90f": 1, + "b094b5c69b45493d96f0ae24ffe8a680": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "527d86c04d1d4bc6b0b74ecf51634419": 1 + }, "tags": [ "PlatformOnly", - "Epic", - "Premium" + "Steam", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:04:14.882Z", + "createdAt": "2024-06-10T11:31:34.356Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 mask 01", - "itemId": "40fb983b2a254ec79b26e7dbbacb0b04", + "title": "DLC01 Compensation Bundle XBox", + "itemId": "74f3d0d0708344e199217cdf53fdc5ec", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_mask_01", + "sku": "pd3_xbox_dlc01_edition_compensation_bundle", "namespace": "pd3", - "name": "Epic Tailor pack 01 mask 01", + "name": "DLC01 Compensation Bundle XBox", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:54:50.452Z", - "discountPurchaseAt": "2023-11-15T12:54:50.452Z" + "purchaseAt": "2024-06-10T11:27:29.48Z", + "discountPurchaseAt": "2024-06-10T11:27:29.48Z" } ], - "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" + "itemIds": [ + "5c5f854d90ce4b3f863bfacfd6f377c9", + "dd23570f18944d2b95304ad6dd2bbeab", + "40ccdad3ced74ee99a3acd8795c1ae5c", + "4b903a585a384f4aa9a8b19b76972fdc", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "a6ce4b851ec643de8ecbb66aa3cfdf97" ], + "itemQty": { + "a6ce4b851ec643de8ecbb66aa3cfdf97": 1, + "5c5f854d90ce4b3f863bfacfd6f377c9": 1, + "dd23570f18944d2b95304ad6dd2bbeab": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "40ccdad3ced74ee99a3acd8795c1ae5c": 1, + "4b903a585a384f4aa9a8b19b76972fdc": 1 + }, "tags": [ "PlatformOnly", - "Epic", - "Premium" + "XBox", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:54:36.306Z", + "createdAt": "2024-06-10T11:27:29.012Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 mask 02", - "itemId": "ac72fd0f475343298e31443f25fa50b9", + "title": "DLC01 mask mould 01 ", + "itemId": "a6e56c3a726a40ef9c310bfe19a271d7", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_mask_02", + "sku": "pd3_cosmetic_dlc_01_maskmould_01", "namespace": "pd3", - "name": "Epic Tailor pack 01 mask 02", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "DLC01 mask mould 01 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:47:38.344Z", - "discountPurchaseAt": "2023-11-15T12:47:38.344Z" + "purchaseAt": "2023-11-13T21:43:22.244Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CharacterVendor", + "InfamyLevel34" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:47:24.218Z", + "createdAt": "2023-11-13T21:43:19.618Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 mask 03", - "itemId": "14201497775e4d4391a653ed8d2f3528", + "title": "DLC01 mask mould 02", + "itemId": "639f6c68fd2a4bf098264e149f6f94a0", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_mask_03", + "sku": "pd3_cosmetic_dlc_01_maskmould_02", "namespace": "pd3", - "name": "Epic Tailor pack 01 mask 03", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "DLC01 mask mould 02", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:43:31.598Z", - "discountPurchaseAt": "2023-11-15T12:43:31.598Z" + "purchaseAt": "2023-11-13T21:44:24.768Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CharacterVendor", + "InfamyLevel46" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:43:17.494Z", + "createdAt": "2023-11-13T21:44:22.12Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 mask 04", - "itemId": "8f451efae3774315bb305cfc8a9dc914", + "title": "DLC01 mask mould 03", + "itemId": "5c8efb37a7124e9d9924e67e08c6b3ce", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_mask_04", + "sku": "pd3_cosmetic_dlc_01_maskmould_03", "namespace": "pd3", - "name": "Epic Tailor pack 01 mask 04", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "DLC01 mask mould 03", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:37:53.552Z", - "discountPurchaseAt": "2023-11-15T12:37:53.552Z" + "purchaseAt": "2023-11-13T21:45:15.678Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "InfamyLevel52", + "CharacterVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:37:39.467Z", + "createdAt": "2023-11-13T21:45:13.057Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 suit 01", - "itemId": "04fd0a5949204f63b2b39eaa9634ce36", + "title": "DLC02 PP02 Weapon Charm GoldCoin 01", + "itemId": "71b2341acf91497588662388774c5109", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_suit_01", + "sku": "pd3_weapon_charm_GoldCoin_01", "namespace": "pd3", - "name": "Epic Tailor pack 01 suit 01", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "name": "DLC02 PP02 Weapon Charm GoldCoin 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:58:16.225Z", - "discountPurchaseAt": "2023-11-15T13:58:16.225Z" + "purchaseAt": "2024-06-03T12:56:53.794Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:58:01.882Z", + "createdAt": "2024-06-03T12:56:53.802Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 suit 02", - "itemId": "a97e67e9d356437ab87308140720167e", + "title": "DLC02 mask mould 01", + "itemId": "5801be85bdef4093afde5443bba460ab", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_suit_02", + "sku": "cosmetic_dlc_02_maskmould_01", "namespace": "pd3", - "name": "Epic Tailor pack 01 suit 02", + "name": "DLC02 mask mould 01", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:54:02.226Z", - "discountPurchaseAt": "2023-11-15T13:54:02.226Z" + "purchaseAt": "2024-02-16T17:02:44.528Z", + "discountPurchaseAt": "2024-02-16T17:02:44.528Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CharacterVendor", + "InfamyLevel101" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:53:47.898Z", + "createdAt": "2024-02-16T17:02:43.868Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 suit 03", - "itemId": "89a7c03520794ddeb26d12e3453bb72c", + "title": "DLC02 mask mould 02", + "itemId": "1aa3ac17da104c4586cd4af2e1bb1e7c", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_suit_03", + "sku": "cosmetic_dlc_02_maskmould_02", "namespace": "pd3", - "name": "Epic Tailor pack 01 suit 03", + "name": "DLC02 mask mould 02", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:49:52.633Z", - "discountPurchaseAt": "2023-11-15T13:49:52.633Z" + "purchaseAt": "2024-02-16T17:04:09.335Z", + "discountPurchaseAt": "2024-02-16T17:04:09.335Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CharacterVendor", + "InfamyLevel106" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:49:38.310Z", + "createdAt": "2024-02-16T17:04:08.655Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Tailor pack 01 suit 04", - "itemId": "e0642a77bbd24ec0a38162377eada954", + "title": "DLC02 mask mould 03", + "itemId": "7ed4ff65f6fe4963902a196d6bbcd278", "baseAppId": "", - "sku": "pd3_epic_cosmetic_tailorpack_01_suit_04", + "sku": "cosmetic_dlc_02_maskmould_03", "namespace": "pd3", - "name": "Epic Tailor pack 01 suit 04", + "name": "DLC02 mask mould 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:26:21.624Z", - "discountPurchaseAt": "2023-11-15T13:26:21.624Z" + "purchaseAt": "2024-02-16T17:04:49.862Z", + "discountPurchaseAt": "2024-02-16T17:04:49.862Z" } ], "itemQty": {}, - "boundItemIds": [ - "15b137e80a3f41819c57246805e29f70" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "CharacterVendor", + "InfamyLevel111" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:26:07.386Z", + "createdAt": "2024-02-16T17:04:49.181Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Weapon Charm DLC1", - "itemId": "83dc052eca2e464eb8f7a098b8a617e8", + "title": "DLC03 Mask Mould 01", + "itemId": "d1df544394ff4662b56110760baa622d", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_dlc1", + "sku": "pd3_cosmetics_mould_dlc03_01", "namespace": "pd3", - "name": "Epic Weapon Charm DLC1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "DLC03 Mask Mould 01", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:22:33.575Z", - "discountPurchaseAt": "2023-11-10T14:22:33.575Z" + "purchaseAt": "2024-07-05T13:07:34.701Z" } ], "itemQty": {}, - "boundItemIds": [ - "4bd7858dedf74532abc83f987470e4ab" - ], "tags": [ - "PlatformOnly", - "Epic" + "CharacterVendor", + "InfamyLevel117" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:22:28.626Z", + "createdAt": "2024-07-05T13:07:34.066Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Epic Weapon Sticker DLC1", - "itemId": "3f1c861b3e8449ac9aef70399eca577f", + "title": "DLC03 Mask Mould 02", + "itemId": "9f33514b129e4ccaad0c43671f55a57a", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_sticker_dlc1", + "sku": "pd3_cosmetics_mould_dlc03_02", "namespace": "pd3", - "name": "Epic Weapon Sticker DLC1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "DLC03 Mask Mould 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:36:12.882Z", - "discountPurchaseAt": "2023-11-10T14:36:12.882Z" + "purchaseAt": "2024-07-05T13:08:34.112Z" } ], "itemQty": {}, - "boundItemIds": [ - "4bd7858dedf74532abc83f987470e4ab" - ], "tags": [ - "PlatformOnly", - "Epic", - "Inexhaustible" + "CharacterVendor", + "InfamyLevel123" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:36:07.869Z", + "createdAt": "2024-07-05T13:08:33.48Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Chopper Jewelry Store Preplanning asset", - "itemId": "b21d68ea6ba94dc38032697233b6aa41", + "title": "DLC03 Mask Mould 03", + "itemId": "6bff56c797fa4ac7a9882ffebdc8a221", "baseAppId": "", - "sku": "pd3_preplanning_jewelrystore_3", + "sku": "pd3_cosmetics_mould_dlc03_03", "namespace": "pd3", - "name": "Escape Chopper Jewelry Store Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "DLC03 Mask Mould 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:09:09.855Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "CharacterVendor", + "InfamyLevel127" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:16:29.873Z", + "createdAt": "2024-07-05T13:09:09.213Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Escape Van Jewelry Store Preplanning asset", - "itemId": "736ee0a77016416ba9d35a9a5f4c7fd0", + "title": "DLC04 Mask Mould free 01", + "itemId": "0b4350f6f5494114ae5764f2de4d7c37", "baseAppId": "", - "sku": "pd3_preplanning_jewelrystore_2", + "sku": "pd3_cosmetics_mould_dlc04_free_01", "namespace": "pd3", - "name": "Escape Van Jewelry Store Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "DLC04 Mask Mould free 01", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-23T11:41:34.67Z", + "discountPurchaseAt": "2024-08-23T11:41:34.67Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "CharacterVendor", + "InfamyLevel138" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:09:34.272Z", + "createdAt": "2024-08-23T11:41:35.211Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Flashbang", - "itemId": "3b3533976a50486ba362bf19bbb2e97d", + "title": "DLC04 Mask Mould free 02", + "itemId": "8096233f21c84052a1bb043c810a3be2", "baseAppId": "", - "sku": "pd3_throwable_flashbang", + "sku": "pd3_cosmetics_mould_dlc04_free_02", "namespace": "pd3", - "name": "Flashbang", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Throwables", + "name": "DLC04 Mask Mould free 02", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-23T11:43:00.193Z", + "discountPurchaseAt": "2024-08-23T11:43:00.193Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "CharacterVendor", + "InfamyLevel134" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T10:24:38.719Z", + "createdAt": "2024-08-23T11:43:00.607Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "FragGranade", - "itemId": "e275c968e5a747b09a02d7002314acb3", + "title": "DLC04 Mask Mould free 03", + "itemId": "4e31e8be05224285beb8f198a5882290", "baseAppId": "", - "sku": "pd3_throwable_fraggrenade", + "sku": "pd3_cosmetics_mould_dlc04_free_03", "namespace": "pd3", - "name": "FragGrenade", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Throwables", + "name": "DLC04 Mask Mould free 03", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-23T11:43:51.894Z", + "discountPurchaseAt": "2024-08-23T11:43:51.894Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "InfamyLevel130", + "CharacterVendor" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-09-02T09:13:55.509Z", + "createdAt": "2024-08-23T11:43:52.309Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gadget Camera tool", - "itemId": "6875f1551efb434eb822d95c77d7ca56", + "title": "DLC04 Mask Mould free 04", + "itemId": "4bc66d83743441da87fc75fbae27507f", "baseAppId": "", - "sku": "pd3_gadgets_microcam", + "sku": "pd3_cosmetics_mould_dlc04_free_04", "namespace": "pd3", - "name": "Gadget Camera tool", - "entitlementType": "DURABLE", - "categoryPath": "/Tools", + "name": "DLC04 Mask Mould free 04", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -3784,2600 +3771,2858 @@ "discountPercentage": 0, "discountAmount": 0, "discountedPrice": 50, - "currencyCode": "CASH", + "currencyCode": "GOLD", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-29T13:44:47.154Z", + "discountPurchaseAt": "2024-08-29T13:44:47.154Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "STARCategory", + "CharacterVendor" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-02-07T07:25:10.043Z", + "createdAt": "2024-08-29T13:44:46.346Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gadget ECM Tool", - "itemId": "084202bef99c47c7a384a0106c7b6a2f", + "title": "DLC04 Twitch Drops Mask 01", + "itemId": "35d1cf09fd694c468ede064666b4799c", "baseAppId": "", - "sku": "pd3_gadgets_ECMjammer", + "sku": "pd3_cosmetics_mask_dlc04_twitch_01", "namespace": "pd3", - "name": "Gadget ECM Tool", + "name": "DLC04 Twitch Drops Mask 01", "entitlementType": "DURABLE", - "categoryPath": "/Tools", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-04T18:08:44.563Z", + "discountPurchaseAt": "2024-08-04T18:08:44.563Z" } ], "itemQty": {}, + "boundItemIds": [ + "685b2e2d4dd54c8c8188b081e07c9d35" + ], "tags": [ - "InitialItem" + "Premium", + "ReportsTelemetry" ], - "maxCountPerUser": -1, + "features": [ + "iap-sync-twitch" + ], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-28T08:57:56.451Z", + "createdAt": "2024-08-04T18:08:44.622Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gadget Sensor Tool", - "itemId": "d70af8f6c458400899fcf9990e470540", + "title": "DLC04 Twitch Drops Pattern 01", + "itemId": "042562541ea04731abe4290071e14bc9", "baseAppId": "", - "sku": "pd3_gadgets_sensor", + "sku": "pd3_cosmetics_pattern_dlc04_twitch_01", "namespace": "pd3", - "name": "Gadget Sensor Tool", - "entitlementType": "DURABLE", - "categoryPath": "/Tools", + "name": "DLC04 Twitch Drops Mask Pattern 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-04T17:53:32.214Z", + "discountPurchaseAt": "2024-08-04T17:53:32.214Z" } ], "itemQty": {}, + "boundItemIds": [ + "685b2e2d4dd54c8c8188b081e07c9d35" + ], "tags": [ - "InitialItem" + "Inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-28T08:53:31.004Z", + "createdAt": "2024-08-04T17:53:32.271Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gadget Stun Mine Tool", - "itemId": "acb366ee4d554ab3b4831c743969855c", + "title": "DLC04 Twitch Drops Mask Pattern 02", + "itemId": "b2b176bf50ed49c8a4775e52317eabbb", "baseAppId": "", - "sku": "pd3_gadgets_stunmine", + "sku": "pd3_cosmetics_pattern_dlc04_twitch_02", "namespace": "pd3", - "name": "Gadget Stun Mine Tool", + "name": "DLC04 Twitch Drops Mask Pattern 02", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/Tools", + "categoryPath": "/MaskPattern", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-04T17:58:46.356Z", + "discountPurchaseAt": "2024-08-04T17:58:46.356Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "685b2e2d4dd54c8c8188b081e07c9d35" + ], + "tags": [ + "Inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" + ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-28T08:56:19.949Z", + "createdAt": "2024-08-04T17:58:46.431Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Garbage Chute Armored Transport Preplanning asset", - "itemId": "762a1305c25844a7aac3d0f0666c70e6", + "title": "DLC04 Twitch Drops Weapon Charm 01", + "itemId": "6c14ef8add654403a8da5091fa1157ef", "baseAppId": "", - "sku": "pd3_preplanning_armoredtransport_1", + "sku": "pd3_cosmetics_charm_dlc04_twitch_01", "namespace": "pd3", - "name": "Garbage Chute Armored Transport Preplanning asset", + "name": "DLC04 Twitch Drops Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-04T17:48:29.893Z", + "discountPurchaseAt": "2024-08-04T17:48:29.893Z" } ], "itemQty": {}, + "boundItemIds": [ + "685b2e2d4dd54c8c8188b081e07c9d35" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "Inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:19:13.224Z", + "createdAt": "2024-08-04T17:48:29.947Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Gold Edition", - "itemId": "f30a96c01c54492fb648f130106160da", + "title": "DLC04 Twitch Drops Weapon Sticker 01", + "itemId": "94084b297316475a8637e43188d44001", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves_goldedition", + "sku": "pd3_cosmetics_sticker_dlc04_twitch_01", "namespace": "pd3", - "name": "Gloves - Gold Edition", + "name": "DLC04 Twitch Drops Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-31T11:13:22.321Z", - "discountPurchaseAt": "2023-05-31T11:13:22.321Z" + "purchaseAt": "2024-08-04T17:44:17.354Z", + "discountPurchaseAt": "2024-08-04T17:44:17.354Z" } ], "itemQty": {}, "boundItemIds": [ - "5f0e2f433fe44a6ca51445bbd4d670f7" + "685b2e2d4dd54c8c8188b081e07c9d35" ], "tags": [ - "Premium" + "Inexhaustible", + "Premium", + "ReportsTelemetry" ], - "features": [], - "maxCountPerUser": 1, + "features": [ + "iap-sync-twitch" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-31T11:13:21.781Z", + "createdAt": "2024-08-04T17:44:17.423Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Gold Edition Epic", - "itemId": "c0298decd571485a924f8441b38feb0a", + "title": "DLC04 Twitch Drops Weapon Sticker 02", + "itemId": "eab4480a4dbb4dccaa61eac2673129eb", "baseAppId": "", - "sku": "pd3_epic_cosmetic_accessory_gloves_goldedition", + "sku": "pd3_cosmetics_sticker_dlc04_twitch_02", "namespace": "pd3", - "name": "Gloves - Gold Edition Epic", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "DLC04 Twitch Drops Weapon Sticker 02", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:29:36.875Z", - "discountPurchaseAt": "2023-09-06T13:29:36.875Z" + "purchaseAt": "2024-08-04T17:50:56.505Z", + "discountPurchaseAt": "2024-08-04T17:50:56.505Z" } ], "itemQty": {}, "boundItemIds": [ - "957560277d0f484390817596cb6f6792" + "685b2e2d4dd54c8c8188b081e07c9d35" ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "Inexhaustible", + "Premium", + "ReportsTelemetry" ], - "features": [], - "maxCountPerUser": 1, + "features": [ + "iap-sync-twitch" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:29:36.083Z", + "createdAt": "2024-08-04T17:50:56.556Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Gold Edition PlayStation", - "itemId": "6612d166d3c14863a756848ba6acd11d", + "title": "Dallas Mould", + "itemId": "f8bd84c650e04b42af101330e9d93b65", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_accessory_gloves_goldedition", + "sku": "pd3_cosmetic_mask_mould_dallas", "namespace": "pd3", - "name": "Gloves - Gold Edition PlayStation", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Dallas Mould", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:28:45.640Z", - "discountPurchaseAt": "2023-09-06T13:28:45.640Z" + "purchaseAt": "2023-02-10T14:55:54.516Z", + "discountPurchaseAt": "2023-02-10T14:55:54.516Z" } ], "itemQty": {}, - "boundItemIds": [ - "3c49d557e1b0440fa75e11bcede06d94" - ], "tags": [ - "PlatformOnly", - "PlayStation", - "Premium" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:28:44.837Z", + "createdAt": "2023-02-10T14:55:54.429Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Gold Edition Steam", - "itemId": "a0ade94cec904fbfb91dcdb79eb4b2c9", + "title": "Dallas Suit", + "itemId": "526668a6ff044f8c857d933eb2dd3cae", "baseAppId": "", - "sku": "pd3_steam_cosmetic_accessory_gloves_goldedition", + "sku": "pd3_suit_dallas", "namespace": "pd3", - "name": "Gloves - Gold Edition Steam", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Dallas Suit", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-09-07T16:52:16.942Z", - "discountPurchaseAt": "2023-09-07T16:52:16.942Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Steam", - "Premium" - ], - "features": [], - "maxCountPerUser": 1, + "tags": [], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T16:52:15.652Z", + "createdAt": "2022-10-31T13:35:16.314Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Gold Edition XBox", - "itemId": "297c7c11e15c4ca3847e4494cff2352a", + "title": "Degradation Time Cargo Dock Preplanning asset", + "itemId": "96de618c6aca4d3a9b4df9b3220fcb1c", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_accessory_gloves_goldedition", + "sku": "pd3_preplanning_cargodock_2", "namespace": "pd3", - "name": "Gloves - Gold Edition XBox", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Degradation Time Cargo Dock Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:27:50.942Z", - "discountPurchaseAt": "2023-09-06T13:27:50.942Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "boundItemIds": [ - "0863f6d764a249649ef49545e3b9e4bb" - ], "tags": [ - "PlatformOnly", - "XBox", - "Premium" + "PreplanningAsset", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:27:50.192Z", + "createdAt": "2022-10-19T13:26:55.524Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Preorder", - "itemId": "5b65aab6f6354c66aea0da248e9452d6", + "title": "Elevator Shaft Sharke Bank Preplanning Asset", + "itemId": "6c0bc7b7053c486496f68402d313c20d", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves_preorder", + "sku": "pd3_preplanning_sharkebank_4", "namespace": "pd3", - "name": "Gloves - Preorder", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Elevator Shaft Sharke Bank Preplanning Asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:39:30.468Z", - "discountPurchaseAt": "2023-03-17T15:39:30.468Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "boundItemIds": [ - "ce54b97b24184553ae56f1ffc3d54363" + "tags": [ + "PreplanningAsset", + "InitialItem" ], - "tags": [], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:39:30.394Z", + "createdAt": "2022-08-12T06:13:58.12Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Preorder Epic", - "itemId": "9e909ec0959d46d4b38d4a16f1114cb3", + "title": "Employee Backdoor Jewelry Store Preplanning asset", + "itemId": "ed3734c6be7142ca9ac17df4b91e4acb", "baseAppId": "", - "sku": "pd3_epic_cosmetic_accessory_gloves_preorder", + "sku": "pd3_preplanning_jewelrystore_4", "namespace": "pd3", - "name": "Gloves - Preorder Epic", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Employee Backdoor Jewelry Store Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:07:32.829Z", - "discountPurchaseAt": "2023-09-06T13:07:32.829Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "boundItemIds": [ - "6cce475cf54b4d0090df7e6df40170aa" - ], "tags": [ - "PlatformOnly", - "Epic", - "Premium" + "PreplanningAsset", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:07:32.072Z", + "createdAt": "2022-09-23T11:12:23.713Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Preorder PlayStation", - "itemId": "5708e1c1c12a4b0b8331dbc390bfa4e7", + "title": "Empress Mask Mould", + "itemId": "1ab8140163ba47c7b53421fd453226d8", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_accessory_gloves_preorder", + "sku": "pd3_cosmetic_pp_02_maskmould_01", "namespace": "pd3", - "name": "Gloves - Preorder PlayStation", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Empress Mask Mould", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:06:46.073Z", - "discountPurchaseAt": "2023-09-06T13:06:46.073Z" + "purchaseAt": "2024-05-31T13:42:33.91Z", + "discountPurchaseAt": "2024-05-31T13:42:33.91Z" } ], "itemQty": {}, - "boundItemIds": [ - "ec4e47fbeb9243a0b965f447ec6e10d5" - ], "tags": [ - "PlatformOnly", - "PlayStation", - "Premium" + "CharacterVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:06:45.342Z", + "createdAt": "2024-05-31T13:42:33.678Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Preorder Steam", - "itemId": "db78293dfc5046d9a6426da3afaee65d", + "title": "Empress Preset", + "itemId": "40df23c525ab49d4b27e2b3310442d18", "baseAppId": "", - "sku": "pd3_steam_cosmetic_accessory_gloves_preorder", + "sku": "pd3_wpn_preset_empress", "namespace": "pd3", - "name": "Gloves - Preorder Steam", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Empress Preset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 50, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:04:53.634Z", - "discountPurchaseAt": "2023-09-06T13:04:53.634Z" + "purchaseAt": "2024-05-30T07:43:18.059Z" } ], "itemQty": {}, - "boundItemIds": [ - "e29db70296e14583a91a9126d363d780" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor", + "DLC2Category" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:04:52.918Z", + "createdAt": "2024-05-30T07:42:41.008Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves - Preorder XBox", - "itemId": "6ba35287ddf8432793570bc35af13323", + "title": "Epic AssaultRifle CHS3", + "itemId": "1de085c9e86b43c684dfae9ecc418034", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_accessory_gloves_preorder", + "sku": "pd3_epic_wpn_assaultrifle_chs3", "namespace": "pd3", - "name": "Gloves - Preorder XBox", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Epic AssaultRifle CHS3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:05:47.040Z", - "discountPurchaseAt": "2023-09-06T13:05:47.040Z" + "purchaseAt": "2024-06-24T13:07:53.554Z", + "discountPurchaseAt": "2024-06-24T13:07:53.554Z" } ], "itemQty": {}, - "boundItemIds": [ - "6f46ee17db244f36bc6cc977609d8274" - ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "CombatEquipmentVendor", + "Epic", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:05:46.304Z", + "createdAt": "2024-06-24T13:07:35.046Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 1", - "itemId": "5927c3241eb74b25b190ce4771303ff6", + "title": "Epic AssaultRifle CHS3 - Vendor Item", + "itemId": "7567022f7eda49299c401aa09c2148ba", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves1", + "sku": "pd3_epic_wpn_assaultrifle_chs3_vendor", "namespace": "pd3", - "name": "Gloves 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic AssaultRifle CHS3 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:15:58.028Z" + "purchaseAt": "2024-06-24T13:16:28.736Z", + "discountPurchaseAt": "2024-06-24T13:16:28.736Z" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel3" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:15:58.054Z", + "createdAt": "2024-06-24T13:16:10.211Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 1: Variant 1", - "itemId": "b3f395948efa417181755cae78f200b5", + "title": "Epic AssaultRifle RG5", + "itemId": "6d3d6e07d1c64bf593eef81cbd2a937c", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves1_variant1", + "sku": "pd3_epic_wpn_assaultrifle_rg5", "namespace": "pd3", - "name": "Gloves 1: Variant 1", + "name": "Epic AssaultRifle RG5", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Gloves", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 400000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:26:57.617Z" + "purchaseAt": "2024-02-14T12:30:53.621Z", + "discountPurchaseAt": "2024-02-14T12:30:53.621Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "InfamyLevel9", - "TailorVendor" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:26:57.540Z", + "createdAt": "2024-02-14T12:30:54.379Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 1: Variant 2", - "itemId": "fc9bd663bc574a15bda31ead3f5cd8b0", + "title": "Epic AssaultRifle RG5 - Vendor Item ", + "itemId": "748267df52a546a3820f71673d0ce352", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves1_variant2", + "sku": "pd3_epic_wpn_assaultrifle_rg5_vendor", "namespace": "pd3", - "name": "Gloves 1: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic AssaultRifle RG5 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:34:40.200Z", - "discountPurchaseAt": "2023-05-29T11:34:40.200Z" + "purchaseAt": "2024-02-14T12:52:32.174Z", + "discountPurchaseAt": "2024-02-14T12:52:32.174Z" } ], "itemQty": {}, + "boundItemIds": [ + "34a0e12b450e4450bf0a54de1768efcb", + "a5be4db055714c7ab722cf09f6f05c34", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel23" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:34:40.122Z", + "createdAt": "2024-02-14T12:52:32.962Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 1: Variant 3", - "itemId": "5563f9c467174e16915e5333d9aec46a", + "title": "Epic Character Star", + "itemId": "0a548f38d0b043d7b527507617f5d9c3", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves1_variant3", + "sku": "pd3_epic_character_star", "namespace": "pd3", - "name": "Gloves 1: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic Character Star", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 999, "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:41:08.105Z", - "discountPurchaseAt": "2023-05-29T11:41:08.105Z" + "purchaseAt": "2024-08-28T13:46:33.884Z", + "discountPurchaseAt": "2024-08-28T13:46:33.884Z" } ], "itemQty": {}, + "boundItemIds": [ + "034ded11b32c4384974d0013cb3e5886" + ], "tags": [ - "InfamyLevel43", - "RarityUncommon", - "TailorVendor" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:41:07.993Z", + "createdAt": "2024-08-28T13:46:32.437Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 1: Variant 4", - "itemId": "d3adab1da42740c5af5eaf328f4f2dc4", + "title": "Epic DLC01 Heist pack", + "itemId": "711cd306bb1142678b74ffeb51072380", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves1_variant4", + "sku": "pd3_epic_dlc01_heist_pack", "namespace": "pd3", - "name": "Gloves 1: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC01 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:42:52.580Z", - "discountPurchaseAt": "2023-05-29T11:42:52.580Z" + "purchaseAt": "2023-11-10T13:51:49.652Z", + "discountPurchaseAt": "2023-11-10T13:51:49.652Z" } ], - "itemQty": {}, + "itemIds": [ + "db780556b7c2474fbe790ebd0bf8cc61" + ], + "itemQty": { + "db780556b7c2474fbe790ebd0bf8cc61": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel79" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:42:52.452Z", + "createdAt": "2023-11-10T13:51:44.748Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 2", - "itemId": "22f02fb28d10451aa81de54e9d3d4df5", + "title": "Epic DLC01 Weapon pack ", + "itemId": "15b137e80a3f41819c57246805e29f70", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves2", + "sku": "pd3_epic_dlc01_tailor_pack", "namespace": "pd3", - "name": "Gloves 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic DLC01 Tailor pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:16:42.655Z" + "purchaseAt": "2023-11-15T15:05:57.734Z", + "discountPurchaseAt": "2023-11-15T15:05:57.734Z" } ], - "itemQty": {}, + "itemIds": [ + "587a7177f7e2481b9bae4bb8d6d935d9", + "dadff347515741ceb213c60d6770093c", + "02e2890b2c8547389f23efd42e9baa4f", + "d09eb1b2c3764f579d06d59cd36489f4", + "40fb983b2a254ec79b26e7dbbacb0b04", + "ac72fd0f475343298e31443f25fa50b9", + "14201497775e4d4391a653ed8d2f3528", + "8f451efae3774315bb305cfc8a9dc914", + "04fd0a5949204f63b2b39eaa9634ce36", + "a97e67e9d356437ab87308140720167e", + "89a7c03520794ddeb26d12e3453bb72c", + "e0642a77bbd24ec0a38162377eada954" + ], + "itemQty": { + "dadff347515741ceb213c60d6770093c": 1, + "04fd0a5949204f63b2b39eaa9634ce36": 1, + "40fb983b2a254ec79b26e7dbbacb0b04": 1, + "14201497775e4d4391a653ed8d2f3528": 1, + "89a7c03520794ddeb26d12e3453bb72c": 1, + "8f451efae3774315bb305cfc8a9dc914": 1, + "a97e67e9d356437ab87308140720167e": 1, + "587a7177f7e2481b9bae4bb8d6d935d9": 1, + "02e2890b2c8547389f23efd42e9baa4f": 1, + "d09eb1b2c3764f579d06d59cd36489f4": 1, + "e0642a77bbd24ec0a38162377eada954": 1, + "ac72fd0f475343298e31443f25fa50b9": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel5" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:16:42.684Z", + "createdAt": "2023-11-15T15:05:43.188Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 2: Variant 1", - "itemId": "3ebda5d5b9864e46b7efad8b340273fb", + "title": "Epic DLC01 Weapon pack ", + "itemId": "4bd7858dedf74532abc83f987470e4ab", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves2_variant1", + "sku": "pd3_epic_dlc01_weapon_pack", "namespace": "pd3", - "name": "Gloves 2: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC01 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:44:08.617Z", - "discountPurchaseAt": "2023-05-29T11:44:08.617Z" + "purchaseAt": "2023-11-10T13:27:08.743Z", + "discountPurchaseAt": "2023-11-10T13:27:08.743Z" } ], - "itemQty": {}, + "itemIds": [ + "b4b433d76efd4c358c27df5ddb211987", + "b045a121cb344c40bddcfe80e6a39168", + "b1290462e6634f3db783b1f586c575e5", + "83dc052eca2e464eb8f7a098b8a617e8", + "3f1c861b3e8449ac9aef70399eca577f", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "b045a121cb344c40bddcfe80e6a39168": 1, + "b1290462e6634f3db783b1f586c575e5": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 3, + "83dc052eca2e464eb8f7a098b8a617e8": 1, + "b4b433d76efd4c358c27df5ddb211987": 1, + "3f1c861b3e8449ac9aef70399eca577f": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel12" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:44:08.511Z", + "createdAt": "2023-11-10T13:27:03.919Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 2: Variant 2", - "itemId": "375f88740e01457daf27fe24ddf04b7b", + "title": "Epic DLC02 Heist pack", + "itemId": "3bf57ed271e34c5ba08592a8c57f5421", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves2_variant2", + "sku": "pd3_epic_dlc02_heist_pack", "namespace": "pd3", - "name": "Gloves 2: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC02 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:45:21.566Z", - "discountPurchaseAt": "2023-05-29T11:45:21.566Z" + "purchaseAt": "2024-05-21T14:30:58.353Z", + "discountPurchaseAt": "2024-05-21T14:30:58.353Z" } ], - "itemQty": {}, + "itemIds": [ + "f26d7322b3b94f8d9e42624397c2d9cc" + ], + "itemQty": { + "f26d7322b3b94f8d9e42624397c2d9cc": 1 + }, "tags": [ - "InfamyLevel30", - "RarityUncommon", - "TailorVendor" + "PlatformOnly", + "Epic", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:45:21.565Z", + "createdAt": "2024-05-21T14:30:57.848Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 2: Variant 3", - "itemId": "fd9c795e003f4d00af09d04f15be6f8a", + "title": "Epic DLC02 Tailor pack", + "itemId": "458fa0836b654f13a9c01595af07103d", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves2_variant3", + "sku": "pd3_epic_dlc02_tailor_pack", "namespace": "pd3", - "name": "Gloves 2: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC02 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:51:11.992Z", - "discountPurchaseAt": "2023-05-29T11:51:11.992Z" + "purchaseAt": "2024-03-06T14:10:44.665Z", + "discountPurchaseAt": "2024-03-06T14:10:44.665Z" } ], - "itemQty": {}, + "itemIds": [ + "20148290fc3b4554b7f5a31d7f1d8df2", + "bf17cb3854d84612a18b62b1d2907891", + "8ebce252b5674345bf1b415e3e4d7f31", + "22b9b8e48e104a359ae057831676d0a5", + "fbd4eea107884b269575f69a31db6450", + "5e68d716aec54051a42104e2008b7869", + "27ce30cc9bdc4cd584c1a8eff6ba3853", + "b063a32652df40209ee1c242ae405892", + "85c78d0381034d109856306b054e6c19", + "46bdf29668c0458fbf83e3828e15cfa2", + "f32a0886cf4d4a7a9c4aca6fe7fe314d", + "159a886183c645af8949bc2c104dff62" + ], + "itemQty": { + "46bdf29668c0458fbf83e3828e15cfa2": 1, + "27ce30cc9bdc4cd584c1a8eff6ba3853": 1, + "8ebce252b5674345bf1b415e3e4d7f31": 1, + "f32a0886cf4d4a7a9c4aca6fe7fe314d": 1, + "20148290fc3b4554b7f5a31d7f1d8df2": 1, + "85c78d0381034d109856306b054e6c19": 1, + "b063a32652df40209ee1c242ae405892": 1, + "159a886183c645af8949bc2c104dff62": 1, + "22b9b8e48e104a359ae057831676d0a5": 1, + "bf17cb3854d84612a18b62b1d2907891": 1, + "fbd4eea107884b269575f69a31db6450": 1, + "5e68d716aec54051a42104e2008b7869": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel49" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:51:11.895Z", + "createdAt": "2024-03-06T14:10:44.962Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 2: Variant 4", - "itemId": "0707a334dbf44472b679510c7cc34e12", + "title": "Epic DLC02 Weapon pack ", + "itemId": "a5be4db055714c7ab722cf09f6f05c34", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves2_variant4", + "sku": "pd3_epic_dlc02_weapon_pack", "namespace": "pd3", - "name": "Gloves 2: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC02 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:52:12.541Z", - "discountPurchaseAt": "2023-05-29T11:52:12.541Z" + "purchaseAt": "2024-02-14T15:45:28.989Z", + "discountPurchaseAt": "2024-02-14T15:45:28.989Z" } ], - "itemQty": {}, + "itemIds": [ + "748267df52a546a3820f71673d0ce352", + "6efcf722028a4e9aa7870b3ab07d2cb4", + "bacb3a65faaf48e0b48be79cb1084883", + "91002cf51b594ca2b326ad27d4b19592", + "367a7c069b5f43568a0e0a1ad85c717c", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600" + ], + "itemQty": { + "748267df52a546a3820f71673d0ce352": 1, + "367a7c069b5f43568a0e0a1ad85c717c": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "6efcf722028a4e9aa7870b3ab07d2cb4": 1, + "91002cf51b594ca2b326ad27d4b19592": 1, + "bacb3a65faaf48e0b48be79cb1084883": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ - "InfamyLevel85", - "RarityUncommon", - "TailorVendor" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:52:12.424Z", + "createdAt": "2024-02-14T15:45:30.06Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 3", - "itemId": "14eebb64b16245f2b0fafb3e9caff715", + "title": "Epic DLC03 Heist pack", + "itemId": "8fb3b7bdb7d1437ab782685429b967aa", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves3", + "sku": "pd3_epic_dlc03_heist_pack", "namespace": "pd3", - "name": "Gloves 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic DLC03 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:17:42.167Z" + "purchaseAt": "2024-07-09T08:45:13.2Z", + "discountPurchaseAt": "2024-07-09T08:45:13.2Z" } ], - "itemQty": {}, + "itemIds": [ + "3a50a8b0631349a8831ddcc15a6653e1" + ], + "itemQty": { + "3a50a8b0631349a8831ddcc15a6653e1": 1 + }, "tags": [ - "TailorVendor", - "RarityRare", - "InfamyLevel16" + "PlatformOnly", + "Epic", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:17:42.200Z", + "createdAt": "2024-07-09T08:45:14.217Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 3: Variant 1", - "itemId": "6fa9a60bcaef4362b83a0d1bfb3c574f", + "title": "Epic DLC03 Tailor pack", + "itemId": "38df19ce613a436cbbd799a26b48e2fc", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves3_variant1", + "sku": "pd3_epic_dlc03_tailor_pack", "namespace": "pd3", - "name": "Gloves 3: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC03 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:55:26.104Z", - "discountPurchaseAt": "2023-05-29T11:55:26.104Z" + "purchaseAt": "2024-07-09T09:57:56.636Z", + "discountPurchaseAt": "2024-07-09T09:57:56.636Z" } ], - "itemQty": {}, + "itemIds": [ + "ceca679bf82041d9bd16a82727cd5987", + "1f992ebf8ba04be8abdf10b907577fc5", + "548df9398f814f90827390bc1952e3d6", + "e4969ec73ef84d2c85170c3e4533f052", + "9866f2d75c7f42a182b1e8b8369de5ea", + "1717f486e6414e4ca61dc73509b4e0a9", + "db6f92231a774f038971b2c678d3b1f0", + "47bd52c190f34258b07dd6a413d2b591", + "39c65674349a4ab7a0317eafe38a6db0", + "7e36f35e695a4894adecf2acbc834fba", + "576d8f7cff154c8396f4af710a9baabd", + "a32f3ec3d7564bf2997eddf62e6e0663" + ], + "itemQty": { + "db6f92231a774f038971b2c678d3b1f0": 1, + "1717f486e6414e4ca61dc73509b4e0a9": 1, + "9866f2d75c7f42a182b1e8b8369de5ea": 1, + "47bd52c190f34258b07dd6a413d2b591": 1, + "548df9398f814f90827390bc1952e3d6": 1, + "a32f3ec3d7564bf2997eddf62e6e0663": 1, + "ceca679bf82041d9bd16a82727cd5987": 1, + "1f992ebf8ba04be8abdf10b907577fc5": 1, + "39c65674349a4ab7a0317eafe38a6db0": 1, + "576d8f7cff154c8396f4af710a9baabd": 1, + "e4969ec73ef84d2c85170c3e4533f052": 1, + "7e36f35e695a4894adecf2acbc834fba": 1 + }, "tags": [ - "RarityRare", - "TailorVendor", - "InfamyLevel33" + "PlatformOnly", + "Epic", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:55:25.983Z", + "createdAt": "2024-07-09T09:57:55.693Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 3: Variant 2", - "itemId": "9ce7d6429f5d4e83b063054999059933", + "title": "Epic DLC03 Weapon Charm 01", + "itemId": "1c1728feb3154d4480bf6922e8bd314c", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves3_variant2", + "sku": "pd3_epic_cosmetics_weapon_Charm_dlc03_01", "namespace": "pd3", - "name": "Gloves 3: Variant 2", + "name": "Epic DLC03 Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:56:43.316Z", - "discountPurchaseAt": "2023-05-29T11:56:43.316Z" + "purchaseAt": "2024-07-11T12:44:59.232Z" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "InfamyLevel61", - "RarityRare", - "TailorVendor" + "PlatformOnly", + "inexhaustible", + "Epic" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:56:43.174Z", + "createdAt": "2024-07-11T12:44:59.262Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 3: Variant 3", - "itemId": "9e34da8923a24e71b271a685a8fe1857", + "title": "Epic DLC03 Weapon Sticker 01", + "itemId": "dce87f77e0584699a9ed2e2a447a8b28", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves3_variant3", + "sku": "pd3_epic_cosmetics_weapon_sticker_dlc03_01", "namespace": "pd3", - "name": "Gloves 3: Variant 3", + "name": "Epic DLC03 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T11:58:11.474Z", - "discountPurchaseAt": "2023-05-29T11:58:11.474Z" + "purchaseAt": "2024-07-09T08:13:34.112Z", + "discountPurchaseAt": "2024-07-09T08:13:34.112Z" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "InfamyLevel95", - "RarityRare", - "TailorVendor" + "PlatformOnly", + "Epic", + "inexhaustible" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T11:58:11.337Z", + "createdAt": "2024-07-09T08:13:33.487Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 3: Variant 4", - "itemId": "c76a520e5810448cb101de0eb855049f", + "title": "Epic DLC03 Weapon pack", + "itemId": "0689084274d64988b5b996b0ac501afb", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves3_variant4", + "sku": "pd3_epic_dlc03_weapon_pack", "namespace": "pd3", - "name": "Gloves 3: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC03 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:00:09.125Z", - "discountPurchaseAt": "2023-05-29T12:00:09.125Z" + "purchaseAt": "2024-07-01T12:19:41.497Z", + "discountPurchaseAt": "2024-07-01T12:19:41.497Z" } ], - "itemQty": {}, + "itemIds": [ + "7567022f7eda49299c401aa09c2148ba", + "669a4ebeb9444cb28527e886e6d799fa", + "902bd87ea5334b43a02bc2761509bdf8", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "1c1728feb3154d4480bf6922e8bd314c", + "dce87f77e0584699a9ed2e2a447a8b28" + ], + "itemQty": { + "7567022f7eda49299c401aa09c2148ba": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "dce87f77e0584699a9ed2e2a447a8b28": 1, + "1c1728feb3154d4480bf6922e8bd314c": 1, + "902bd87ea5334b43a02bc2761509bdf8": 1, + "84d0c77410184162a1b300dcca87c600": 1, + "669a4ebeb9444cb28527e886e6d799fa": 1 + }, "tags": [ - "RarityRare", - "TailorVendor", - "InfamyLevel104" + "PlatformOnly", + "Epic", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:00:09.013Z", + "createdAt": "2024-07-01T12:19:12.679Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 4", - "itemId": "b855aefb9bee469bbbfbe14f03de3827", + "title": "Epic DLC04 Weapon Charm 01", + "itemId": "ea4ad628cf3c41bf8d46bf52bd550889", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves4", + "sku": "pd3_epic_cosmetics_charm_dlc04_01", "namespace": "pd3", - "name": "Gloves 4", + "name": "Epic DLC04 Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/Gloves", + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:18:27.139Z" + "purchaseAt": "2024-07-25T16:10:30.992Z" } ], "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "028dfa799af94f1bb98ea17645064b11", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "TailorVendor", - "RarityRare", - "InfamyLevel36" + "PlatformOnly", + "Epic", + "inexhaustible" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:18:27.162Z", + "createdAt": "2024-07-25T16:10:31.028Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 4: Variant 1", - "itemId": "8edf51c7975c41f2883bba488f102c69", + "title": "Epic DLC04 Weapon Sticker 01", + "itemId": "9e8ed67db05d4191bd7df8efe992e6da", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves4_variant1", + "sku": "pd3_epic_cosmetics_sticker_dlc04_01", "namespace": "pd3", - "name": "Gloves 4: Variant 1", + "name": "Epic DLC04 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:03:31.913Z", - "discountPurchaseAt": "2023-05-29T12:03:31.913Z" + "purchaseAt": "2024-07-25T16:17:04.76Z" } ], "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "028dfa799af94f1bb98ea17645064b11", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "InfamyLevel96", - "RarityRare", - "TailorVendor" + "PlatformOnly", + "inexhaustible", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:03:31.809Z", + "createdAt": "2024-07-25T16:17:04.795Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 4: Variant 2", - "itemId": "057f56e5489b4b07b9b63c6ed4337829", + "title": "Epic DLC04 Heist pack", + "itemId": "dcd85e669ef84794bc7f18c9f70bdf45", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves4_variant2", + "sku": "pd3_epic_dlc04_heist_pack", "namespace": "pd3", - "name": "Gloves 4: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC04 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:04:56.357Z", - "discountPurchaseAt": "2023-05-29T12:04:56.357Z" + "purchaseAt": "2024-08-16T13:12:24.565Z", + "discountPurchaseAt": "2024-08-16T13:12:24.565Z" } ], - "itemQty": {}, + "itemIds": [ + "59999e9debf94f859894bed189f91325" + ], + "itemQty": { + "59999e9debf94f859894bed189f91325": 1 + }, "tags": [ - "RarityRare", - "TailorVendor", - "InfamyLevel117" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:04:56.250Z", + "createdAt": "2024-08-16T13:12:24.94Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 4: Variant 3", - "itemId": "f522ffe6097e46efba85cd1cbe40490e", + "title": "Epic DLC04 Tailor pack", + "itemId": "f2205fbbf08a454a95845934f394f751", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves4_variant3", + "sku": "pd3_epic_dlc04_tailor_pack", "namespace": "pd3", - "name": "Gloves 4: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC04 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:06:16.814Z", - "discountPurchaseAt": "2023-05-29T12:06:16.814Z" + "purchaseAt": "2024-08-07T19:32:46.032Z", + "discountPurchaseAt": "2024-08-07T19:32:46.032Z" } ], - "itemQty": {}, + "itemIds": [ + "ae2acfd57bae45a682df2f047cecbc0f", + "abe1cb33bf6241d59ba8aad5c761ec4f", + "9816a2b847094b93bc92c7924380e468", + "fc1c4c8b9ab3425f88e696148feb670b", + "2c70891f6f1745f1bf8e1734c1de0985", + "b4030417319c414cb905e2b0ff4d8a13", + "f76fbb432c0d4b798332cd364f991a47", + "a1abdabc362942b39cd641ea091e3f10", + "d668841338f248a88399b0dddbcfd4d9", + "d944e5df18c1473a9b9bb9eb3cc5e743", + "d94c726aedaf4e2686ae098bd4815620", + "4edf8f7ef95d41588b1f225e2b4dd616" + ], + "itemQty": { + "2c70891f6f1745f1bf8e1734c1de0985": 1, + "abe1cb33bf6241d59ba8aad5c761ec4f": 1, + "d668841338f248a88399b0dddbcfd4d9": 1, + "b4030417319c414cb905e2b0ff4d8a13": 1, + "a1abdabc362942b39cd641ea091e3f10": 1, + "ae2acfd57bae45a682df2f047cecbc0f": 1, + "4edf8f7ef95d41588b1f225e2b4dd616": 1, + "f76fbb432c0d4b798332cd364f991a47": 1, + "fc1c4c8b9ab3425f88e696148feb670b": 1, + "d94c726aedaf4e2686ae098bd4815620": 1, + "9816a2b847094b93bc92c7924380e468": 1, + "d944e5df18c1473a9b9bb9eb3cc5e743": 1 + }, "tags": [ - "RarityRare", - "TailorVendor", - "InfamyLevel133" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:06:16.676Z", + "createdAt": "2024-08-07T19:32:46.086Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 4: Variant 4", - "itemId": "0dce360fb4de4085ab7f4c9fb0c3bd20", + "title": "Epic DLC04 Weapon pack", + "itemId": "028dfa799af94f1bb98ea17645064b11", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves4_variant4", + "sku": "pd3_epic_dlc04_weapon_pack", "namespace": "pd3", - "name": "Gloves 4: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic DLC04 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:07:16.305Z", - "discountPurchaseAt": "2023-05-29T12:07:16.305Z" + "purchaseAt": "2024-07-25T12:10:37.118Z", + "discountPurchaseAt": "2024-07-25T12:10:37.118Z" } ], - "itemQty": {}, + "itemIds": [ + "2570174c558841049d041033db73b51d", + "000b788915ee4b1686f7c43668cca285", + "02cf529c855d44b7ac1296eb2f0173ff", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "ea4ad628cf3c41bf8d46bf52bd550889", + "9e8ed67db05d4191bd7df8efe992e6da" + ], + "itemQty": { + "ea4ad628cf3c41bf8d46bf52bd550889": 1, + "2570174c558841049d041033db73b51d": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "02cf529c855d44b7ac1296eb2f0173ff": 1, + "000b788915ee4b1686f7c43668cca285": 1, + "9e8ed67db05d4191bd7df8efe992e6da": 1, + "84d0c77410184162a1b300dcca87c600": 2 + }, "tags": [ - "RarityRare", - "TailorVendor", - "InfamyLevel144" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:07:16.173Z", + "createdAt": "2024-07-25T12:10:02.956Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 5", - "itemId": "627046233e2a4373832faf4064224983", + "title": "Epic MOD BarrelExt Coronet", + "itemId": "7f0fd4f74b6f4fa1abbfd34cd030524d", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves5", + "sku": "pd3_epic_mod_barrelext_coronet", "namespace": "pd3", - "name": "Gloves 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic MOD BarrelExt Coronet", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:19:25.079Z" + "purchaseAt": "2024-07-25T14:17:10.351Z", + "discountPurchaseAt": "2024-07-25T14:17:10.351Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel55" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:19:25.135Z", + "createdAt": "2024-07-25T14:16:36.069Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 5: Variant 1", - "itemId": "af762699d0cd4269867b2b034a079f88", + "title": "Epic MOD BarrelExt Crated", + "itemId": "ea73c9a094de4ff99252ed9d8a1360d1", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves5_variant1", + "sku": "pd3_epic_mod_barrelext_crated", "namespace": "pd3", - "name": "Gloves 5: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD BarrelExt Crated", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:09:10.827Z" + "purchaseAt": "2024-07-25T13:55:28.391Z", + "discountPurchaseAt": "2024-07-25T13:55:28.391Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel67" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:09:10.699Z", + "createdAt": "2024-07-25T13:54:54.127Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 5: Variant 2", - "itemId": "b3fe0a90243341709278de64cdd84224", + "title": "Epic MOD BarrelExt IDM2", + "itemId": "4f3c4216caa746efa9683a6d4878c60c", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves5_variant2", + "sku": "pd3_epic_mod_barrelext_idm2", "namespace": "pd3", - "name": "Gloves 5: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD BarrelExt IDM2", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:11:22.606Z" + "purchaseAt": "2024-06-27T14:44:46.533Z", + "discountPurchaseAt": "2024-06-27T14:44:46.533Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel107", - "TailorVendor" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:11:22.472Z", + "createdAt": "2024-06-27T14:44:23.526Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 5: Variant 3", - "itemId": "24f9ef065e984e1bbb8f80b92ffdc07e", + "title": "Epic MOD BarrelExt Ridgecyl", + "itemId": "43b866ff55ef485498696a571c448a54", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves5_variant3", + "sku": "pd3_epic_mod_barrelext_ridgecyl", "namespace": "pd3", - "name": "Gloves 5: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD BarrelExt Ridgecyl", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:12:31.784Z" + "purchaseAt": "2024-06-27T14:48:51.773Z", + "discountPurchaseAt": "2024-06-27T14:48:51.773Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel122" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:12:31.647Z", + "createdAt": "2024-06-27T14:48:28.738Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 5: Variant 4", - "itemId": "733d25a6bee242c38393c228c6eb9d94", + "title": "Epic MOD BarrelExt WhisperWrap ", + "itemId": "6a6b8c9edf944cb08c2253a12df221e9", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves5_variant4", + "sku": "pd3_epic_mod_barrelext_whisperwrap", "namespace": "pd3", - "name": "Gloves 5: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD BarrelExt WhisperWrap ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:13:42.268Z" + "purchaseAt": "2024-02-14T15:37:30.265Z", + "discountPurchaseAt": "2024-02-14T15:37:30.265Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel147" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:13:42.139Z", + "createdAt": "2024-02-14T15:37:31.322Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 6", - "itemId": "c0c32f6968c547ddb5aec3727c1ee965", + "title": "Epic MOD Sight LightHolographic ", + "itemId": "6cf884b75adc47659d3cd7fb91f7d012", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves6", + "sku": "pd3_epic_mod_sight_lightholographic", "namespace": "pd3", - "name": "Gloves 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic MOD Sight LightHolographic ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:20:17.522Z" + "purchaseAt": "2023-11-07T09:32:52.885Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel73", - "RarityEpic", - "TailorVendor" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:20:17.547Z", + "createdAt": "2023-11-07T09:32:53.542Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 6: Variant 1", - "itemId": "8d982213a7e641228df97b6184c6e867", + "title": "Epic MOD Sight Snapshot ", + "itemId": "168af3f159c24d7f8f8be20f2525bb25", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves6_variant1", + "sku": "pd3_epic_mod_sight_snapshot", "namespace": "pd3", - "name": "Gloves 6: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD Sight Snapshot ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:15:18.631Z" + "purchaseAt": "2024-02-14T15:35:20.719Z", + "discountPurchaseAt": "2024-02-14T15:35:20.719Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel98", - "RarityEpic", - "TailorVendor" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:15:18.512Z", + "createdAt": "2024-02-14T15:35:21.788Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 6: Variant 2", - "itemId": "05902a9724324dd0aad4b8e07b3a501d", + "title": "Epic MOD Sight SquareClaim", + "itemId": "1a9ac5f604a2428ca6888caed0b1609c", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves6_variant2", + "sku": "pd3_epic_mod_sight_squareclaim", "namespace": "pd3", - "name": "Gloves 6: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD Sight SquareClaim", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:16:44.620Z" + "purchaseAt": "2024-06-27T14:52:47.222Z", + "discountPurchaseAt": "2024-06-27T14:52:47.222Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel110" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:16:44.479Z", + "createdAt": "2024-06-27T14:52:24.18Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 6: Variant 3", - "itemId": "6c307f84294d48d8a94fcc86622aeaaf", + "title": "Epic MOD Sight Voyeur", + "itemId": "897783d13b944d20b9ed2c56c8d260da", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves6_variant3", + "sku": "pd3_epic_mod_sight_voyeur", "namespace": "pd3", - "name": "Gloves 6: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD Sight Voyeur", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:18:56.095Z" + "purchaseAt": "2024-07-25T13:35:30.978Z", + "discountPurchaseAt": "2024-07-25T13:35:30.978Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel129", - "TailorVendor" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:18:55.992Z", + "createdAt": "2024-07-25T13:34:56.739Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 6: Variant 4", - "itemId": "94e30a7ed2f74e739c87d7b1297e70b1", + "title": "Epic MOD Stock MinimizedHook ", + "itemId": "102640b57cf447ff964111b5894018b1", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves6_variant4", + "sku": "pd3_epic_mod_stock_minimizedhook", "namespace": "pd3", - "name": "Gloves 6: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD Stock MinimizedHook ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:22:13.147Z" + "purchaseAt": "2023-11-07T11:00:32.2Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel139" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:22:13.032Z", + "createdAt": "2023-11-07T11:00:33.019Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 7", - "itemId": "9190469b2f004952b01cbbd53268608c", + "title": "Epic MOD VerticalGrip FlatSideStab ", + "itemId": "a18494be05fc400487a3727a9f73f1fd", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves7", + "sku": "pd3_epic_mod_verticalgrip_flatsidestab", "namespace": "pd3", - "name": "Gloves 7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Gloves", + "name": "Epic MOD VerticalGrip FlatSideStab ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-26T16:20:55.010Z" + "purchaseAt": "2023-11-07T10:40:54.101Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel90" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-26T16:20:55.058Z", + "createdAt": "2023-11-07T10:40:54.891Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 7: Variant 1", - "itemId": "79f944b22c5243f182824eb7ea812403", + "title": "Epic MOD VerticalGrip RiggerHandStop ", + "itemId": "7f99128bb57a4ec789c12266a0fe7778", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves7_variant1", + "sku": "pd3_epic_mod_verticalgrip_riggerhandstop", "namespace": "pd3", - "name": "Gloves 7: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic MOD VerticalGrip RiggerHandStop ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:25:11.549Z" + "purchaseAt": "2024-02-14T15:25:41.796Z", + "discountPurchaseAt": "2024-02-14T15:25:41.796Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel102" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:25:11.392Z", + "createdAt": "2024-02-14T15:25:42.842Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 7: Variant 2", - "itemId": "edf4587824774c6487dc43d72e70bfc5", + "title": "Epic Marksman FIK22 ", + "itemId": "bf29ff7f2269498998a102f347a8768b", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves7_variant2", + "sku": "pd3_epic_wpn_marksman_fik22", "namespace": "pd3", - "name": "Gloves 7: Variant 2", + "name": "Epic Marksman FIK22 ", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Gloves", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:26:31.212Z" + "purchaseAt": "2023-11-06T16:24:57.792Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel114" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:26:31.157Z", + "createdAt": "2023-11-06T16:24:58.336Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 7: Variant 3", - "itemId": "b6987f84b2e444bda1884e2708a92366", + "title": "Epic Marksman FIK22 - Vendor Item ", + "itemId": "b4b433d76efd4c358c27df5ddb211987", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves7_variant3", + "sku": "pd3_epic_wpn_marksman_fik22_vendor", "namespace": "pd3", - "name": "Gloves 7: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Gloves", + "name": "Epic Marksman FIK22 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:27:25.349Z" + "purchaseAt": "2023-11-09T14:38:31.574Z", + "discountPurchaseAt": "2023-11-09T14:38:31.574Z" } ], "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "4bd7858dedf74532abc83f987470e4ab", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel126" + "PlatformOnly", + "Epic" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:27:25.203Z", + "createdAt": "2023-11-09T14:38:32.147Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves 7: Variant 4", - "itemId": "da41f9c167814aa6baa0cbd9a35ab9bb", + "title": "Epic Pistol GV50", + "itemId": "a638f29536f84828abed463c22b16e8d", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves7_variant4", + "sku": "pd3_epic_wpn_pistol_gv50", "namespace": "pd3", - "name": "Gloves 7: Variant 4", + "name": "Epic Pistol GV50", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Gloves", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T12:29:22.890Z" + "purchaseAt": "2024-07-25T11:35:46.609Z", + "discountPurchaseAt": "2024-07-25T11:35:46.609Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel136" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC4Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T12:29:22.733Z", + "createdAt": "2024-07-25T11:35:12.488Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot", - "itemId": "b19570ad9a7b462fac0797482dcdb0b3", + "title": "Epic Pistol GV50 - Vendor Item", + "itemId": "2570174c558841049d041033db73b51d", "baseAppId": "", - "sku": "pd3_slot_gloves_initial", + "sku": "pd3_epic_wpn_pistol_gv50_vendor", "namespace": "pd3", - "name": "Gloves Inventory Slot", + "name": "Epic Pistol GV50 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:20:10.693Z" + "purchaseAt": "2024-07-25T11:40:31.784Z", + "discountPurchaseAt": "2024-07-25T11:40:31.784Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "028dfa799af94f1bb98ea17645064b11", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:20:10.729Z", + "createdAt": "2024-07-25T11:39:57.654Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 0", - "itemId": "d9c2c7a8bed9447587c73c9119f44820", + "title": "Epic Pistol PD5", + "itemId": "f98c047face64331a2eab52e84c409ba", "baseAppId": "", - "sku": "pd3_slot_gloves0", + "sku": "pd3_epic_wpn_pistol_pd5", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 0", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Epic Pistol PD5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:24:15.889Z", - "discountPurchaseAt": "2023-02-07T09:24:15.889Z" + "purchaseAt": "2024-06-27T11:06:09.35Z", + "discountPurchaseAt": "2024-06-27T11:06:09.35Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression0", - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:24:15.927Z", + "createdAt": "2024-06-27T11:05:46.539Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 1", - "itemId": "8581eb7b610d4c73981775dd1a3b91e1", + "title": "Epic Pistol PD5 - Vendor Item", + "itemId": "902bd87ea5334b43a02bc2761509bdf8", "baseAppId": "", - "sku": "pd3_slot_gloves1", + "sku": "pd3_epic_wpn_pistol_pd5_vendor", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 1", + "name": "Epic Pistol PD5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:26:20.655Z", - "discountPurchaseAt": "2023-02-07T09:26:20.655Z" + "purchaseAt": "2024-06-27T11:13:05.93Z", + "discountPurchaseAt": "2024-06-27T11:13:05.93Z" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "PriceProgression1", - "TailorVendor", - "InitialItem" + "PlatformOnly", + "Epic" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:26:20.685Z", + "createdAt": "2024-06-27T11:12:43.111Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 10", - "itemId": "67ef46f21434453fa593da4a7a74179a", + "title": "Epic Pistol SE5", + "itemId": "abac194ab9d1472e90341f571d3ca8d2", "baseAppId": "", - "sku": "pd3_slot_gloves10", + "sku": "pd3_epic_wpn_pistol_se5", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 10", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Epic Pistol SE5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:37:52.191Z" + "purchaseAt": "2024-07-25T11:47:51.465Z", + "discountPurchaseAt": "2024-07-25T11:47:51.465Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", - "TailorVendor", - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC4Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:37:52.225Z", + "createdAt": "2024-07-25T11:47:17.336Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 2", - "itemId": "bb1678e2e387419d9f613dce921118c7", + "title": "Epic Pistol SE5 - Vendor Item", + "itemId": "000b788915ee4b1686f7c43668cca285", "baseAppId": "", - "sku": "pd3_slot_gloves2", + "sku": "pd3_epic_wpn_pistol_se5_vendor", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 2", + "name": "Epic Pistol SE5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:28:09.734Z", - "discountPurchaseAt": "2023-02-07T09:28:09.734Z" + "purchaseAt": "2024-07-25T11:51:53.036Z", + "discountPurchaseAt": "2024-07-25T11:51:53.036Z" } ], "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "028dfa799af94f1bb98ea17645064b11", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "TailorVendor", - "PriceProgression2", - "InitialItem" + "PlatformOnly", + "Epic" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:28:09.760Z", + "createdAt": "2024-07-25T11:51:18.891Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 3", - "itemId": "c5e2c128dae04d2fb9065656a0ec62a3", + "title": "Epic Player Pack 03 Mask Mould 01", + "itemId": "fc4dcf250f674e19927437d36bb0d39e", "baseAppId": "", - "sku": "pd3_slot_gloves3", + "sku": "pd3_epic_cosmetics_mould_pp03_01", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 3", + "name": "Epic Player Pack 03 Mask Mould 01", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:29:29.176Z", - "discountPurchaseAt": "2023-02-07T09:29:29.176Z" + "purchaseAt": "2024-08-27T11:22:06.746Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression3", - "InitialItem" + "PlatformOnly", + "STARCategory", + "Epic", + "CharacterVendor", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:29:29.200Z", + "createdAt": "2024-08-27T11:22:07.875Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 4", - "itemId": "a4b57284dcd34558ba23c0fc91abed4c", + "title": "Epic Player Pack 03 Mask Mould 01 - Vendor Item", + "itemId": "7f9cfe2af8494701a32c33522ebab810", "baseAppId": "", - "sku": "pd3_slot_gloves4", + "sku": "pd3_epic_cosmetics_mould_pp03_01_vendor", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 4", + "name": "Epic Player Pack 03 Mask Mould 01 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/VendorItem/Mask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:30:41.588Z", - "discountPurchaseAt": "2023-02-07T09:30:41.588Z" + "purchaseAt": "2024-08-27T11:42:24.968Z", + "discountPurchaseAt": "2024-08-27T11:42:24.968Z" } ], "itemQty": {}, + "boundItemIds": [ + "034ded11b32c4384974d0013cb3e5886" + ], "tags": [ - "TailorVendor", - "PriceProgression4", - "InitialItem" + "PlatformOnly", + "Epic" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:30:41.615Z", + "createdAt": "2024-08-27T11:42:26.124Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 5", - "itemId": "4ea20b8a30074503b7faa3cc7f8d23fd", + "title": "Epic Player Pack 03 Weapon Charm 01", + "itemId": "339c1f28cb3340e59a652d9afaa2a7e4", "baseAppId": "", - "sku": "pd3_slot_gloves5", + "sku": "pd3_epic_cosmetics_charm_pp03_01", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 5", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Epic Player Pack 03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:32:34.157Z", - "discountPurchaseAt": "2023-02-07T09:32:34.157Z" + "purchaseAt": "2024-08-28T09:20:44.676Z" } ], "itemQty": {}, + "boundItemIds": [ + "034ded11b32c4384974d0013cb3e5886" + ], "tags": [ - "TailorVendor", - "PriceProgression5", - "InitialItem" + "PlatformOnly", + "Epic", + "inexhaustible" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:32:34.193Z", + "createdAt": "2024-08-28T09:20:44.002Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 6", - "itemId": "cc590981e5ce4c47adf0c0006d4514ff", + "title": "Epic Premium Preset 11", + "itemId": "27eed0c33df24f338f415fb44ff6bc11", "baseAppId": "", - "sku": "pd3_slot_gloves6", + "sku": "pd3_epic_wpn_preset_p11", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 6", + "name": "Epic Premium Preset 11", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:33:50.385Z", - "discountPurchaseAt": "2023-02-07T09:33:50.385Z" + "purchaseAt": "2024-06-04T15:54:06.251Z", + "discountPurchaseAt": "2024-06-04T15:54:06.251Z" } ], "itemQty": {}, + "boundItemIds": [ + "eb41a84fe1154a76a219d86f09b3fd12" + ], "tags": [ - "TailorVendor", - "PriceProgression6", - "InitialItem" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:33:50.410Z", + "createdAt": "2024-06-04T15:53:30.477Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 7", - "itemId": "39c17825fae547c8a269bf47bfb17ab8", + "title": "Epic Premium Preset 2", + "itemId": "42b95ea66c4949d6bb4d74b779a8a65e", "baseAppId": "", - "sku": "pd3_slot_gloves7", + "sku": "pd3_epic_wpn_preset_p2", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 7", + "name": "Epic Premium Preset 2", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:34:48.369Z", - "discountPurchaseAt": "2023-02-07T09:34:48.369Z" + "purchaseAt": "2024-06-04T15:47:06.013Z", + "discountPurchaseAt": "2024-06-04T15:47:06.013Z" } ], "itemQty": {}, + "boundItemIds": [ + "94f8c32e97e64d32b71800bb33701e76" + ], "tags": [ - "TailorVendor", - "PriceProgression7", - "InitialItem" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:34:48.387Z", + "createdAt": "2024-06-04T15:46:30.24Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 8", - "itemId": "e8476cb1e7274679a15291883151feab", + "title": "Epic Premium Preset 4", + "itemId": "a8c71eacd3a04a7e8b8fe02f5abfa4ae", "baseAppId": "", - "sku": "pd3_slot_gloves8", + "sku": "pd3_epic_wpn_preset_p4", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 8", + "name": "Epic Premium Preset 4", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:35:41.944Z", - "discountPurchaseAt": "2023-02-07T09:35:41.944Z" + "purchaseAt": "2024-06-04T15:49:03.554Z", + "discountPurchaseAt": "2024-06-04T15:49:03.554Z" } ], "itemQty": {}, + "boundItemIds": [ + "94f8c32e97e64d32b71800bb33701e76" + ], "tags": [ - "TailorVendor", - "PriceProgression8", - "InitialItem" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:35:41.966Z", + "createdAt": "2024-06-04T15:48:27.778Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gloves Inventory Slot: Price Progression 9", - "itemId": "8da37ceb27e44aab839d3c246ad893c4", + "title": "Epic Premium Preset 6", + "itemId": "cd7d3e0184914e138b9f3629b307dfdc", "baseAppId": "", - "sku": "pd3_slot_gloves9", + "sku": "pd3_epic_wpn_preset_p6", "namespace": "pd3", - "name": "Gloves Inventory Slot: Price Progression 9", + "name": "Epic Premium Preset 6", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T09:36:53.048Z", - "discountPurchaseAt": "2023-02-07T09:36:53.048Z" + "purchaseAt": "2024-06-04T15:41:19.06Z", + "discountPurchaseAt": "2024-06-04T15:41:19.06Z" } ], "itemQty": {}, + "boundItemIds": [ + "2c13ac19cf2c4288a2f3add6933f0482" + ], "tags": [ - "TailorVendor", - "PriceProgression9", - "InitialItem" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T09:36:53.074Z", + "createdAt": "2024-06-04T15:40:43.336Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold", - "itemId": "4c7e4988a3184057bd24b22c484d6065", + "title": "Epic Revolver Bullkick 500 - Vendor Item ", + "itemId": "bacb3a65faaf48e0b48be79cb1084883", "baseAppId": "", - "sku": "pd3_coin_gold", + "sku": "pd3_epic_wpn_revolver_bullkick500_vendor", "namespace": "pd3", - "name": "Gold", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Revolver Bullkick 500 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T12:51:37.672Z", + "discountPurchaseAt": "2024-02-14T12:51:37.672Z" } ], "itemQty": {}, "boundItemIds": [ - "d7867b7039ed475282644cf31f47be0f" + "34a0e12b450e4450bf0a54de1768efcb", + "a5be4db055714c7ab722cf09f6f05c34", + "775cbf5cec0b4190961bc70422aedd75" ], - "tags": [], - "maxCountPerUser": -1, + "tags": [ + "PlatformOnly", + "Epic" + ], + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-02-25T14:22:36.977Z", + "createdAt": "2024-02-14T12:51:38.465Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Edition Bundle Epic", - "itemId": "957560277d0f484390817596cb6f6792", + "title": "Epic SMG ATK7", + "itemId": "08aeee30ab1c4e52a21f3e1aa6dd2b03", "baseAppId": "", - "sku": "PD3_epic_gold_edition", + "sku": "pd3_epic_wpn_smg_atk7", "namespace": "pd3", - "name": "Gold Edition Bundle Epic", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Epic SMG ATK7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:18:12.655Z", - "discountPurchaseAt": "2023-09-19T12:18:12.655Z" + "purchaseAt": "2024-02-14T11:55:02.272Z", + "discountPurchaseAt": "2024-02-14T11:55:02.272Z" } ], - "itemIds": [ - "c0298decd571485a924f8441b38feb0a", - "ceb3f7910b254e21a29dc85f19fe3716" + "itemQty": {}, + "tags": [ + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC2Category", + "VendorEntitlementRequired" ], - "itemQty": { - "c0298decd571485a924f8441b38feb0a": 1, - "ceb3f7910b254e21a29dc85f19fe3716": 1 - }, - "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T05:42:48.504Z", + "createdAt": "2024-02-14T11:55:02.97Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Edition Bundle PlayStation", - "itemId": "3c49d557e1b0440fa75e11bcede06d94", + "title": "Epic SMG ATK7 - Vendor Item ", + "itemId": "6efcf722028a4e9aa7870b3ab07d2cb4", "baseAppId": "", - "sku": "PD3_playstation_gold_edition", + "sku": "pd3_epic_wpn_smg_atk7_vendor", "namespace": "pd3", - "name": "Gold Edition Bundle PlayStation", + "name": "Epic SMG ATK7 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -6387,1731 +6632,25749 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:19:51.715Z", - "discountPurchaseAt": "2023-09-19T12:19:51.715Z" + "purchaseAt": "2024-02-14T12:04:20.178Z", + "discountPurchaseAt": "2024-02-14T12:04:20.178Z" } ], - "itemIds": [ - "6612d166d3c14863a756848ba6acd11d", - "ef8117da082c4c7691b27ed9ebb1a223" + "itemQty": {}, + "boundItemIds": [ + "34a0e12b450e4450bf0a54de1768efcb", + "a5be4db055714c7ab722cf09f6f05c34", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic" ], - "itemQty": { - "ef8117da082c4c7691b27ed9ebb1a223": 1, - "6612d166d3c14863a756848ba6acd11d": 1 - }, - "tags": [], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T06:25:50.766Z", + "createdAt": "2024-02-14T12:04:20.898Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Edition Bundle XBox", - "itemId": "0863f6d764a249649ef49545e3b9e4bb", + "title": "Epic SMG WAR45 ", + "itemId": "c6c32aeb875d454aa7788fca9bedbcc4", "baseAppId": "", - "sku": "PD3_xbox_gold_edition", + "sku": "pd3_epic_wpn_smg_war45", "namespace": "pd3", - "name": "Gold Edition Bundle XBox", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Epic SMG WAR45 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:14:14.235Z", - "discountPurchaseAt": "2023-09-19T12:14:14.235Z" + "purchaseAt": "2023-11-06T16:41:13.254Z" } ], - "itemIds": [ - "297c7c11e15c4ca3847e4494cff2352a", - "0ec654017e2c4b32868bf05f40578872" + "itemQty": {}, + "tags": [ + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC1Category", + "VendorEntitlementRequired" ], - "itemQty": { - "0ec654017e2c4b32868bf05f40578872": 1, - "297c7c11e15c4ca3847e4494cff2352a": 1 - }, - "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T14:04:37.731Z", + "createdAt": "2023-11-06T16:41:13.82Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 0", - "itemId": "4d85bf540d3b440d9aebce6d7519dcf3", + "title": "Epic SMG WAR45 - Vendor Item ", + "itemId": "b045a121cb344c40bddcfe80e6a39168", "baseAppId": "", - "sku": "pd3_coin_goldsmall0", + "sku": "pd3_epic_wpn_smg_war45_vendor", "namespace": "pd3", - "name": "Gold Price 0", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic SMG WAR45 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-09T14:31:23.356Z", + "discountPurchaseAt": "2023-11-09T14:31:23.356Z" } ], "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "4bd7858dedf74532abc83f987470e4ab", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "PriceProgression0", - "GoldExchangeVendor" + "PlatformOnly", + "Epic" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-04T06:53:40.812Z", + "createdAt": "2023-11-09T14:31:23.94Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 1", - "itemId": "9b7aadc5f83345f590e5baf1edf4adf3", + "title": "Epic Shotgun FSA12 ", + "itemId": "227f10fed6f84d4998d9b3f2bbe74a78", "baseAppId": "", - "sku": "pd3_coin_goldsmall1", + "sku": "pd3_epic_wpn_shotgun_fsa12", "namespace": "pd3", - "name": "Gold Price 1", + "name": "Epic Shotgun FSA12 ", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 25000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 25000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-06T16:51:56.648Z" } ], "itemQty": {}, "tags": [ - "PriceProgression1", - "GoldExchangeVendor" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC1Category", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-30T06:04:59.307Z", + "createdAt": "2023-11-06T16:51:57.211Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 10", - "itemId": "d37b9d47e54f46189efb6f9ff0d4a1cf", + "title": "Epic Shotgun FSA12 - Vendor Item ", + "itemId": "b1290462e6634f3db783b1f586c575e5", "baseAppId": "", - "sku": "pd3_coin_goldsmall10", + "sku": "pd3_epic_wpn_shotgun_fsa12_vendor", "namespace": "pd3", - "name": "Gold Price 10", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Shotgun FSA12 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-09T13:27:04.338Z", + "discountPurchaseAt": "2023-11-09T13:27:04.338Z" } ], "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "4bd7858dedf74532abc83f987470e4ab", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "PriceProgression10", - "GoldExchangeVendor" + "PlatformOnly", + "Epic" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-03T15:11:19.923Z", + "createdAt": "2023-11-09T13:27:04.831Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 2", - "itemId": "0d98e898a76e4f778c9ac7773a0df03f", + "title": "Epic Shotgun M7P", + "itemId": "8b99a248e6544824bfd70d79676caab2", "baseAppId": "", - "sku": "pd3_coin_goldsmall2", + "sku": "pd3_epic_wpn_shotgun_m7p", "namespace": "pd3", - "name": "Gold Price 2", + "name": "Epic Shotgun M7P", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T14:56:45.904Z", + "discountPurchaseAt": "2024-06-25T14:56:45.904Z" } ], "itemQty": {}, "tags": [ - "PriceProgression2", - "GoldExchangeVendor" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC3Category", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-04T06:12:01.354Z", + "createdAt": "2024-06-25T14:56:25.821Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 3", - "itemId": "55c499cc3ba94445887a2223d339ad4e", + "title": "Epic Shotgun M7P - Vendor Item", + "itemId": "669a4ebeb9444cb28527e886e6d799fa", "baseAppId": "", - "sku": "pd3_coin_goldsmall3", + "sku": "pd3_epic_wpn_shotgun_m7p_vendor", "namespace": "pd3", - "name": "Gold Price 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Shotgun M7P - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 75000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 75000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:01:06.378Z", + "discountPurchaseAt": "2024-06-25T15:01:06.378Z" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "PriceProgression3", - "GoldExchangeVendor" + "PlatformOnly", + "Epic" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-28T14:01:47.411Z", + "createdAt": "2024-06-25T15:00:46.279Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 4", - "itemId": "c210bbf4ed1c462b83515916c02cd0bb", + "title": "Epic Shotgun TAS12", + "itemId": "6e885cce0c5b44079f3ca4ad93305dd3", "baseAppId": "", - "sku": "pd3_coin_goldsmall4", + "sku": "pd3_epic_wpn_shotgun_tas12", "namespace": "pd3", - "name": "Gold Price 4", + "name": "Epic Shotgun TAS12", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T11:57:00.454Z", + "discountPurchaseAt": "2024-07-25T11:57:00.454Z" } ], "itemQty": {}, "tags": [ - "PriceProgression4", - "GoldExchangeVendor" + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "DLC4Category", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-27T12:44:37.826Z", + "createdAt": "2024-07-25T11:56:26.304Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 5", - "itemId": "7fc6e9f89bb44335947ad40db5169d51", + "title": "Epic Shotgun TAS12 - Vendor Item", + "itemId": "02cf529c855d44b7ac1296eb2f0173ff", "baseAppId": "", - "sku": "pd3_coin_goldsmall5", + "sku": "pd3_epic_wpn_shotgun_tas12_vendor", "namespace": "pd3", - "name": "Gold Price 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Shotgun TAS12 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 150000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 150000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T12:02:34.513Z", + "discountPurchaseAt": "2024-07-25T12:02:34.513Z" } ], "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "028dfa799af94f1bb98ea17645064b11", + "775cbf5cec0b4190961bc70422aedd75" + ], "tags": [ - "PriceProgression5", - "GoldExchangeVendor" + "PlatformOnly", + "Epic" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-27T12:48:06.318Z", + "createdAt": "2024-07-25T12:02:00.354Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 6", - "itemId": "d83b01b379be4421b17d9eae01078846", + "title": "Epic Star Character Bundle", + "itemId": "034ded11b32c4384974d0013cb3e5886", "baseAppId": "", - "sku": "pd3_coin_goldsmall6", + "sku": "pd3_epic_character_bundle_star", "namespace": "pd3", - "name": "Gold Price 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Star Character Bundle", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "BUNDLE", "regionData": [ { - "price": 200000, + "price": 993, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 993, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-26T14:10:15.376Z", + "discountPurchaseAt": "2024-08-26T14:10:15.376Z" } ], - "itemQty": {}, + "itemIds": [ + "0a548f38d0b043d7b527507617f5d9c3", + "9947b65182ed4315816816e4504eb581", + "7f9cfe2af8494701a32c33522ebab810", + "339c1f28cb3340e59a652d9afaa2a7e4" + ], + "itemQty": { + "9947b65182ed4315816816e4504eb581": 1, + "339c1f28cb3340e59a652d9afaa2a7e4": 1, + "7f9cfe2af8494701a32c33522ebab810": 1, + "0a548f38d0b043d7b527507617f5d9c3": 1 + }, "tags": [ - "GoldExchangeVendor", - "PriceProgression6" + "PlatformOnly", + "epic" ], - "maxCountPerUser": -1, - "maxCount": -1, + "features": [], + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-27T15:27:43.704Z", + "createdAt": "2024-08-26T14:10:14.375Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 7", - "itemId": "95a682220a32434abb7dea44b6082a20", + "title": "Epic Star Preset Vendor Item", + "itemId": "9947b65182ed4315816816e4504eb581", "baseAppId": "", - "sku": "pd3_coin_goldsmall7", + "sku": "pd3_epic_wpn_preset_star_vendor", "namespace": "pd3", - "name": "Gold Price 7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Star Preset Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-27T11:32:52.37Z", + "discountPurchaseAt": "2024-08-27T11:32:52.37Z" } ], "itemQty": {}, + "boundItemIds": [ + "034ded11b32c4384974d0013cb3e5886" + ], "tags": [ - "GoldExchangeVendor", - "PriceProgression7" + "PlatformOnly", + "Epic" ], - "maxCountPerUser": -1, - "maxCount": -1, + "features": [], + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-03T15:05:10.123Z", + "createdAt": "2024-08-27T11:32:52.362Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 8", - "itemId": "3a20b5928ba24cde8f9c460805635a6b", + "title": "Epic Star Weapon Preset", + "itemId": "997fe02e9963435b85a25ee42c46e4b6", "baseAppId": "", - "sku": "pd3_coin_goldsmall8", + "sku": "pd3_epic_wpn_preset_star", "namespace": "pd3", - "name": "Gold Price 8", + "name": "Epic Star Weapon Preset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 600000, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 600000, - "currencyCode": "CASH", + "discountedPrice": 50, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-28T09:32:37.065Z", + "discountPurchaseAt": "2024-08-28T09:32:37.065Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression8" + "STARCategory", + "PlatformOnly", + "CombatEquipmentVendor", + "Epic", + "VendorEntitlementRequired" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-03T15:07:26.686Z", + "createdAt": "2024-08-28T09:32:36.357Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price 9", - "itemId": "18d71fcd8331444ab6555f3a2bc7a43f", + "title": "Epic Tailor Pack 03 Gloves 01", + "itemId": "9866f2d75c7f42a182b1e8b8369de5ea", "baseAppId": "", - "sku": "pd3_coin_goldsmall9", + "sku": "pd3_epic_cosmetics_gloves_dlc03_01", "namespace": "pd3", - "name": "Gold Price 9", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Tailor Pack 03 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 800000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 800000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T07:43:16.32Z", + "discountPurchaseAt": "2024-07-09T07:43:16.32Z" } ], "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], "tags": [ - "GoldExchangeVendor", - "PriceProgression9" + "PlatformOnly", + "Epic", + "Premium" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-03T15:09:40.730Z", + "createdAt": "2024-07-09T07:43:15.754Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 0", - "itemId": "dd693796e4fb4e438971b65eecf6b4b7", - "sku": "pd3_coin_goldlarge0", + "title": "Epic Tailor Pack 03 Gloves 02", + "itemId": "1717f486e6414e4ca61dc73509b4e0a9", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc03_02", "namespace": "pd3", - "name": "Gold Price Large 0", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Tailor Pack 03 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 90000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 90000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T13:49:59.257Z" + "purchaseAt": "2024-07-09T07:44:13.99Z", + "discountPurchaseAt": "2024-07-09T07:44:13.99Z" } ], "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], "tags": [ - "PriceProgression0", - "GoldExchangeVendor" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T13:49:59.270Z", + "createdAt": "2024-07-09T07:44:13.423Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 1", - "itemId": "cc3c8d1877394604abde66eb29d19e1b", - "sku": "pd3_coin_goldlarge1", + "title": "Epic Tailor Pack 03 Gloves 03", + "itemId": "db6f92231a774f038971b2c678d3b1f0", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc03_03", "namespace": "pd3", - "name": "Gold Price Large 1", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Tailor Pack 03 Gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 225000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 225000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T13:51:12.631Z" + "purchaseAt": "2024-07-09T07:45:06.897Z", + "discountPurchaseAt": "2024-07-09T07:45:06.897Z" } ], "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], "tags": [ - "PriceProgression1", - "GoldExchangeVendor" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T13:51:12.638Z", + "createdAt": "2024-07-09T07:45:06.329Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 10", - "itemId": "cd00aeceda14413a9504d4177e021458", - "sku": "pd3_coin_goldlarge10", + "title": "Epic Tailor Pack 03 Gloves 04", + "itemId": "47bd52c190f34258b07dd6a413d2b591", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc03_04", "namespace": "pd3", - "name": "Gold Price Large 10", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Tailor Pack 03 Gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 9000000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 9000000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:07:50.631Z" + "purchaseAt": "2024-07-09T07:45:49.843Z", + "discountPurchaseAt": "2024-07-09T07:45:49.843Z" } ], "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], "tags": [ - "PriceProgression10", - "GoldExchangeVendor" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:07:50.637Z", + "createdAt": "2024-07-09T07:45:49.28Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 2", - "itemId": "d0074efb37714ad7bb334b08c103de0e", - "sku": "pd3_coin_goldlarge2", + "title": "Epic Tailor Pack 03 Mask 01", + "itemId": "ceca679bf82041d9bd16a82727cd5987", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc03_01", "namespace": "pd3", - "name": "Gold Price Large 2", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "Epic Tailor Pack 03 Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 450000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 450000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T13:52:40.941Z" + "purchaseAt": "2024-07-05T13:00:20.875Z", + "discountPurchaseAt": "2024-07-05T13:00:20.875Z" } ], "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], "tags": [ - "PriceProgression2", - "GoldExchangeVendor" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T13:52:40.949Z", + "createdAt": "2024-07-05T13:00:20.266Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 3", + "title": "Epic Tailor Pack 03 Mask 02", + "itemId": "1f992ebf8ba04be8abdf10b907577fc5", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc03_02", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 222, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 222, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:01:11.764Z", + "discountPurchaseAt": "2024-07-05T13:01:11.764Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:01:11.144Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Mask 03", + "itemId": "548df9398f814f90827390bc1952e3d6", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc03_03", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 222, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 222, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:01:56.684Z", + "discountPurchaseAt": "2024-07-05T13:01:56.684Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:01:56.292Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Mask 04", + "itemId": "e4969ec73ef84d2c85170c3e4533f052", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc03_04", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 222, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 222, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:02:59.269Z", + "discountPurchaseAt": "2024-07-05T13:02:59.269Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:02:58.653Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Suit 01", + "itemId": "39c65674349a4ab7a0317eafe38a6db0", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc03_01", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:05:18.999Z", + "discountPurchaseAt": "2024-07-09T08:05:18.999Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:05:18.38Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Suit 02", + "itemId": "7e36f35e695a4894adecf2acbc834fba", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc03_02", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:06:03.475Z", + "discountPurchaseAt": "2024-07-09T08:06:03.475Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:06:02.861Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Suit 03", + "itemId": "576d8f7cff154c8396f4af710a9baabd", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc03_03", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:06:45.217Z", + "discountPurchaseAt": "2024-07-09T08:06:45.217Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:06:44.594Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 03 Suit 04", + "itemId": "a32f3ec3d7564bf2997eddf62e6e0663", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc03_04", + "namespace": "pd3", + "name": "Epic Tailor Pack 03 Suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:07:31.429Z", + "discountPurchaseAt": "2024-07-09T08:07:31.429Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75", + "38df19ce613a436cbbd799a26b48e2fc" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:07:30.793Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Gloves 01", + "itemId": "d668841338f248a88399b0dddbcfd4d9", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc04_01", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T15:45:09.921Z", + "discountPurchaseAt": "2024-07-25T15:45:09.921Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T15:45:09.959Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Gloves 02", + "itemId": "d944e5df18c1473a9b9bb9eb3cc5e743", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc04_02", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T15:51:53.927Z", + "discountPurchaseAt": "2024-07-25T15:51:53.927Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T15:51:53.964Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Gloves 03", + "itemId": "d94c726aedaf4e2686ae098bd4815620", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc04_03", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T15:58:38.025Z", + "discountPurchaseAt": "2024-07-25T15:58:38.025Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T15:58:38.062Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Gloves 04", + "itemId": "4edf8f7ef95d41588b1f225e2b4dd616", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_gloves_dlc04_04", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T16:02:07.807Z", + "discountPurchaseAt": "2024-07-25T16:02:07.807Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T16:02:07.839Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Mask 01", + "itemId": "2c70891f6f1745f1bf8e1734c1de0985", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc04_01", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:51:39.195Z", + "discountPurchaseAt": "2024-07-25T13:51:39.195Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:51:39.249Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Mask 02", + "itemId": "b4030417319c414cb905e2b0ff4d8a13", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc04_02", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:59:19.632Z", + "discountPurchaseAt": "2024-07-25T13:59:19.632Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:59:19.695Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Mask 03", + "itemId": "f76fbb432c0d4b798332cd364f991a47", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc04_03", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:04:15Z", + "discountPurchaseAt": "2024-07-25T14:04:15Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:04:15.051Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Mask 04", + "itemId": "a1abdabc362942b39cd641ea091e3f10", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_mask_dlc04_04", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T15:37:50.104Z", + "discountPurchaseAt": "2024-07-25T15:37:50.104Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T15:37:50.139Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Mask 01", + "itemId": "ae2acfd57bae45a682df2f047cecbc0f", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc04_01", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:10:28.218Z", + "discountPurchaseAt": "2024-07-25T13:10:28.218Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:10:28.281Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Suit 02", + "itemId": "abe1cb33bf6241d59ba8aad5c761ec4f", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc04_02", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:31:37.762Z", + "discountPurchaseAt": "2024-07-25T13:31:37.762Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:31:37.819Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Suit 03", + "itemId": "9816a2b847094b93bc92c7924380e468", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc04_03", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:38:11.541Z", + "discountPurchaseAt": "2024-07-25T13:38:11.541Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:38:11.593Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor Pack 04 Suit 04", + "itemId": "fc1c4c8b9ab3425f88e696148feb670b", + "baseAppId": "", + "sku": "pd3_epic_cosmetics_suit_dlc04_04", + "namespace": "pd3", + "name": "Epic Tailor Pack 04 Suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:43:12.948Z", + "discountPurchaseAt": "2024-07-25T13:43:12.948Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "f2205fbbf08a454a95845934f394f751", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:43:13.004Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 gloves 01", + "itemId": "587a7177f7e2481b9bae4bb8d6d935d9", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_01", + "namespace": "pd3", + "name": "Epic Tailor pack 01 gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:19:50.841Z", + "discountPurchaseAt": "2023-11-15T13:19:50.841Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:19:36.642Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 gloves 02", + "itemId": "dadff347515741ceb213c60d6770093c", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_02", + "namespace": "pd3", + "name": "Epic Tailor pack 01 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:16:14.454Z", + "discountPurchaseAt": "2023-11-15T13:16:14.454Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:16:00.239Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 gloves 03", + "itemId": "02e2890b2c8547389f23efd42e9baa4f", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_03", + "namespace": "pd3", + "name": "Epic Tailor pack 01 gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:08:47.099Z", + "discountPurchaseAt": "2023-11-15T13:08:47.099Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:08:32.906Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 gloves 04", + "itemId": "d09eb1b2c3764f579d06d59cd36489f4", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_gloves_04", + "namespace": "pd3", + "name": "Epic Tailor pack 01 gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:04:29.051Z", + "discountPurchaseAt": "2023-11-15T13:04:29.051Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:04:14.882Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 mask 01", + "itemId": "40fb983b2a254ec79b26e7dbbacb0b04", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_mask_01", + "namespace": "pd3", + "name": "Epic Tailor pack 01 mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T12:54:50.452Z", + "discountPurchaseAt": "2023-11-15T12:54:50.452Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T12:54:36.306Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 mask 02", + "itemId": "ac72fd0f475343298e31443f25fa50b9", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_mask_02", + "namespace": "pd3", + "name": "Epic Tailor pack 01 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T12:47:38.344Z", + "discountPurchaseAt": "2023-11-15T12:47:38.344Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T12:47:24.218Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 mask 03", + "itemId": "14201497775e4d4391a653ed8d2f3528", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_mask_03", + "namespace": "pd3", + "name": "Epic Tailor pack 01 mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T12:43:31.598Z", + "discountPurchaseAt": "2023-11-15T12:43:31.598Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T12:43:17.494Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 mask 04", + "itemId": "8f451efae3774315bb305cfc8a9dc914", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_mask_04", + "namespace": "pd3", + "name": "Epic Tailor pack 01 mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T12:37:53.552Z", + "discountPurchaseAt": "2023-11-15T12:37:53.552Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T12:37:39.467Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 suit 01", + "itemId": "04fd0a5949204f63b2b39eaa9634ce36", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_suit_01", + "namespace": "pd3", + "name": "Epic Tailor pack 01 suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:58:16.225Z", + "discountPurchaseAt": "2023-11-15T13:58:16.225Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:58:01.882Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 suit 02", + "itemId": "a97e67e9d356437ab87308140720167e", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_suit_02", + "namespace": "pd3", + "name": "Epic Tailor pack 01 suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:54:02.226Z", + "discountPurchaseAt": "2023-11-15T13:54:02.226Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:53:47.898Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 suit 03", + "itemId": "89a7c03520794ddeb26d12e3453bb72c", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_suit_03", + "namespace": "pd3", + "name": "Epic Tailor pack 01 suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:49:52.633Z", + "discountPurchaseAt": "2023-11-15T13:49:52.633Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:49:38.31Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 01 suit 04", + "itemId": "e0642a77bbd24ec0a38162377eada954", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_01_suit_04", + "namespace": "pd3", + "name": "Epic Tailor pack 01 suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T13:26:21.624Z", + "discountPurchaseAt": "2023-11-15T13:26:21.624Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "15b137e80a3f41819c57246805e29f70", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-15T13:26:07.386Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 gloves 01", + "itemId": "20148290fc3b4554b7f5a31d7f1d8df2", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_gloves_01", + "namespace": "pd3", + "name": "Epic Tailor pack 02 gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:48:48.777Z", + "discountPurchaseAt": "2024-03-06T12:48:48.777Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T12:48:49.024Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 gloves 02", + "itemId": "bf17cb3854d84612a18b62b1d2907891", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_gloves_02", + "namespace": "pd3", + "name": "Epic Tailor pack 02 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:49:44.677Z", + "discountPurchaseAt": "2024-03-06T12:49:44.677Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T12:49:44.919Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 gloves 03", + "itemId": "8ebce252b5674345bf1b415e3e4d7f31", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_gloves_03", + "namespace": "pd3", + "name": "Epic Tailor pack 02 gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:50:48.365Z", + "discountPurchaseAt": "2024-03-06T12:50:48.365Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T12:50:48.615Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 gloves 04", + "itemId": "22b9b8e48e104a359ae057831676d0a5", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_gloves_04", + "namespace": "pd3", + "name": "Epic Tailor pack 02 gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T12:51:31.757Z", + "discountPurchaseAt": "2024-03-06T12:51:31.757Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T12:51:32.013Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 mask 01", + "itemId": "fbd4eea107884b269575f69a31db6450", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_mask_01", + "namespace": "pd3", + "name": "Epic Tailor pack 02 mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T10:37:34.378Z", + "discountPurchaseAt": "2024-03-06T10:37:34.378Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T10:37:34.542Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 mask 02", + "itemId": "5e68d716aec54051a42104e2008b7869", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_mask_02", + "namespace": "pd3", + "name": "Epic Tailor pack 02 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T10:38:51.396Z", + "discountPurchaseAt": "2024-03-06T10:38:51.396Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T10:38:51.597Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 mask 03", + "itemId": "27ce30cc9bdc4cd584c1a8eff6ba3853", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_mask_03", + "namespace": "pd3", + "name": "Epic Tailor pack 02 mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T10:39:57.617Z", + "discountPurchaseAt": "2024-03-06T10:39:57.617Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T10:39:57.785Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "pd3_epic_cosmetic_tailorpack_02_mask_04", + "itemId": "b063a32652df40209ee1c242ae405892", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_mask_04", + "namespace": "pd3", + "name": "Epic Tailor pack 02 mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T10:40:53.238Z", + "discountPurchaseAt": "2024-03-06T10:40:53.238Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T10:40:53.406Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 suit 01", + "itemId": "85c78d0381034d109856306b054e6c19", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_suit_01", + "namespace": "pd3", + "name": "Epic Tailor pack 02 suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T13:11:49.988Z", + "discountPurchaseAt": "2024-03-06T13:11:49.988Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T13:11:50.248Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 suit 02", + "itemId": "46bdf29668c0458fbf83e3828e15cfa2", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_suit_02", + "namespace": "pd3", + "name": "Epic Tailor pack 02 suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T13:22:52.274Z", + "discountPurchaseAt": "2024-03-06T13:22:52.274Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T13:22:52.543Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 suit 03", + "itemId": "f32a0886cf4d4a7a9c4aca6fe7fe314d", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_suit_03", + "namespace": "pd3", + "name": "Epic Tailor pack 02 suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T13:24:06.991Z", + "discountPurchaseAt": "2024-03-06T13:24:06.991Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T13:24:07.268Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Tailor pack 02 suit 04", + "itemId": "159a886183c645af8949bc2c104dff62", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_tailorpack_02_suit_04", + "namespace": "pd3", + "name": "Epic Tailor pack 02 suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-06T13:24:48.859Z", + "discountPurchaseAt": "2024-03-06T13:24:48.859Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "458fa0836b654f13a9c01595af07103d", + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-06T13:24:49.128Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Weapon Charm DLC1", + "itemId": "83dc052eca2e464eb8f7a098b8a617e8", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_dlc1", + "namespace": "pd3", + "name": "Epic Weapon Charm DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-10T14:22:33.575Z", + "discountPurchaseAt": "2023-11-10T14:22:33.575Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "4bd7858dedf74532abc83f987470e4ab", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T14:22:28.626Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Weapon Charm DLC2", + "itemId": "91002cf51b594ca2b326ad27d4b19592", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_dlc2", + "namespace": "pd3", + "name": "Epic Weapon Charm DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T16:14:36.986Z", + "discountPurchaseAt": "2024-02-14T16:14:36.986Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "34a0e12b450e4450bf0a54de1768efcb", + "a5be4db055714c7ab722cf09f6f05c34", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T16:14:38.109Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Weapon Sticker DLC1", + "itemId": "3f1c861b3e8449ac9aef70399eca577f", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_sticker_dlc1", + "namespace": "pd3", + "name": "Epic Weapon Sticker DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-10T14:36:12.882Z", + "discountPurchaseAt": "2023-11-10T14:36:12.882Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "cbf38295d2f14bada785ddfa905f2850", + "4bd7858dedf74532abc83f987470e4ab", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Inexhaustible" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T14:36:07.869Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Epic Weapon Sticker DLC2 ", + "itemId": "367a7c069b5f43568a0e0a1ad85c717c", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_sticker_dlc2", + "namespace": "pd3", + "name": "Epic Weapon Sticker DLC2 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T16:54:33.461Z", + "discountPurchaseAt": "2024-02-14T16:54:33.461Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "34a0e12b450e4450bf0a54de1768efcb", + "a5be4db055714c7ab722cf09f6f05c34", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Inexhaustible" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T16:54:34.668Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Chopper Jewelry Store Preplanning asset", + "itemId": "b21d68ea6ba94dc38032697233b6aa41", + "baseAppId": "", + "sku": "pd3_preplanning_jewelrystore_3", + "namespace": "pd3", + "name": "Escape Chopper Jewelry Store Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-21T13:16:29.873Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Escape Van Jewelry Store Preplanning asset", + "itemId": "736ee0a77016416ba9d35a9a5f4c7fd0", + "baseAppId": "", + "sku": "pd3_preplanning_jewelrystore_2", + "namespace": "pd3", + "name": "Escape Van Jewelry Store Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-21T13:09:34.272Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Event Mask 01", + "itemId": "5dea3e05720441edb8378715fc4aecd5", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_event_01", + "namespace": "pd3", + "name": "Event Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:41:44.921Z", + "discountPurchaseAt": "2024-07-05T13:41:44.921Z" + } + ], + "itemQty": {}, + "tags": [ + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:41:44.189Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Event Mask 02", + "itemId": "933469145ce44d5d80ef3ca78b40a68f", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_event_02", + "namespace": "pd3", + "name": "Event Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:42:19.344Z", + "discountPurchaseAt": "2024-07-05T13:42:19.344Z" + } + ], + "itemQty": {}, + "tags": [ + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:42:18.615Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Event Mask 03", + "itemId": "4e83f3a82a374a1b8a05b719e4ab8742", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_event_03", + "namespace": "pd3", + "name": "Event Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:42:49.835Z", + "discountPurchaseAt": "2024-07-05T13:42:49.835Z" + } + ], + "itemQty": {}, + "tags": [ + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:42:49.103Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Event Mask 04", + "itemId": "c3f38644fa4642f98038e5c8ef681b75", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_event_04", + "namespace": "pd3", + "name": "Event Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-05T13:43:19.14Z", + "discountPurchaseAt": "2024-07-05T13:43:19.14Z" + } + ], + "itemQty": {}, + "tags": [ + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-05T13:43:18.406Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Flashbang", + "itemId": "3b3533976a50486ba362bf19bbb2e97d", + "baseAppId": "", + "sku": "pd3_throwable_flashbang", + "namespace": "pd3", + "name": "Flashbang", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Throwables", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-02T10:24:38.719Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "FragGranade", + "itemId": "e275c968e5a747b09a02d7002314acb3", + "baseAppId": "", + "sku": "pd3_throwable_fraggrenade", + "namespace": "pd3", + "name": "FragGrenade", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Throwables", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 500, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 500, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2021-09-02T09:13:55.509Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gadget Camera tool", + "itemId": "6875f1551efb434eb822d95c77d7ca56", + "baseAppId": "", + "sku": "pd3_gadgets_microcam", + "namespace": "pd3", + "name": "Gadget Camera tool", + "entitlementType": "DURABLE", + "categoryPath": "/Tools", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-02-07T07:25:10.043Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gadget ECM Tool", + "itemId": "084202bef99c47c7a384a0106c7b6a2f", + "baseAppId": "", + "sku": "pd3_gadgets_ECMjammer", + "namespace": "pd3", + "name": "Gadget ECM Tool", + "entitlementType": "DURABLE", + "categoryPath": "/Tools", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-28T08:57:56.451Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gadget Sensor Tool", + "itemId": "d70af8f6c458400899fcf9990e470540", + "baseAppId": "", + "sku": "pd3_gadgets_sensor", + "namespace": "pd3", + "name": "Gadget Sensor Tool", + "entitlementType": "DURABLE", + "categoryPath": "/Tools", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-28T08:53:31.004Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gadget Stun Mine Tool", + "itemId": "acb366ee4d554ab3b4831c743969855c", + "baseAppId": "", + "sku": "pd3_gadgets_stunmine", + "namespace": "pd3", + "name": "Gadget Stun Mine Tool", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Tools", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-28T08:56:19.949Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gadget Trip Laser Tool", + "itemId": "92dbf20c9b6b40778484e7c56a9edf45", + "baseAppId": "", + "sku": "pd3_gadgets_triplaser", + "namespace": "pd3", + "name": "Gadget Trip Laser Tool", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Tools", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-16T07:42:44.942Z" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-05-16T07:42:30.05Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Garbage Chute Armored Transport Preplanning asset", + "itemId": "762a1305c25844a7aac3d0f0666c70e6", + "baseAppId": "", + "sku": "pd3_preplanning_armoredtransport_1", + "namespace": "pd3", + "name": "Garbage Chute Armored Transport Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:19:13.224Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Gold Edition", + "itemId": "f30a96c01c54492fb648f130106160da", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves_goldedition", + "namespace": "pd3", + "name": "Gloves - Gold Edition", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-31T11:13:22.321Z", + "discountPurchaseAt": "2023-05-31T11:13:22.321Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "5f0e2f433fe44a6ca51445bbd4d670f7" + ], + "tags": [ + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-31T11:13:21.781Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Gold Edition Epic", + "itemId": "c0298decd571485a924f8441b38feb0a", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_accessory_gloves_goldedition", + "namespace": "pd3", + "name": "Gloves - Gold Edition Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:29:36.875Z", + "discountPurchaseAt": "2023-09-06T13:29:36.875Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "957560277d0f484390817596cb6f6792" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:29:36.083Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Gold Edition PlayStation", + "itemId": "6612d166d3c14863a756848ba6acd11d", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_accessory_gloves_goldedition", + "namespace": "pd3", + "name": "Gloves - Gold Edition PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:28:45.64Z", + "discountPurchaseAt": "2023-09-06T13:28:45.64Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "3c49d557e1b0440fa75e11bcede06d94" + ], + "tags": [ + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:28:44.837Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Gold Edition Steam", + "itemId": "a0ade94cec904fbfb91dcdb79eb4b2c9", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_accessory_gloves_goldedition", + "namespace": "pd3", + "name": "Gloves - Gold Edition Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-07T16:52:16.942Z", + "discountPurchaseAt": "2023-09-07T16:52:16.942Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-07T16:52:15.652Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Gold Edition XBox", + "itemId": "297c7c11e15c4ca3847e4494cff2352a", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_accessory_gloves_goldedition", + "namespace": "pd3", + "name": "Gloves - Gold Edition XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:27:50.942Z", + "discountPurchaseAt": "2023-09-06T13:27:50.942Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "0863f6d764a249649ef49545e3b9e4bb" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:27:50.192Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Preorder", + "itemId": "5b65aab6f6354c66aea0da248e9452d6", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves_preorder", + "namespace": "pd3", + "name": "Gloves - Preorder", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-03-17T15:39:30.468Z", + "discountPurchaseAt": "2023-03-17T15:39:30.468Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "ce54b97b24184553ae56f1ffc3d54363" + ], + "tags": [], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-03-17T15:39:30.394Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Preorder Epic", + "itemId": "9e909ec0959d46d4b38d4a16f1114cb3", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_accessory_gloves_preorder", + "namespace": "pd3", + "name": "Gloves - Preorder Epic", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:07:32.829Z", + "discountPurchaseAt": "2023-09-06T13:07:32.829Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "6cce475cf54b4d0090df7e6df40170aa" + ], + "tags": [ + "PlatformOnly", + "Epic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:07:32.072Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Preorder PlayStation", + "itemId": "5708e1c1c12a4b0b8331dbc390bfa4e7", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_accessory_gloves_preorder", + "namespace": "pd3", + "name": "Gloves - Preorder PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:06:46.073Z", + "discountPurchaseAt": "2023-09-06T13:06:46.073Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "ec4e47fbeb9243a0b965f447ec6e10d5" + ], + "tags": [ + "PlatformOnly", + "PlayStation", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:06:45.342Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Preorder Steam", + "itemId": "db78293dfc5046d9a6426da3afaee65d", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_accessory_gloves_preorder", + "namespace": "pd3", + "name": "Gloves - Preorder Steam", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:04:53.634Z", + "discountPurchaseAt": "2023-09-06T13:04:53.634Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e29db70296e14583a91a9126d363d780" + ], + "tags": [ + "PlatformOnly", + "Steam", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:04:52.918Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves - Preorder XBox", + "itemId": "6ba35287ddf8432793570bc35af13323", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_accessory_gloves_preorder", + "namespace": "pd3", + "name": "Gloves - Preorder XBox", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T13:05:47.04Z", + "discountPurchaseAt": "2023-09-06T13:05:47.04Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "6f46ee17db244f36bc6cc977609d8274" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T13:05:46.304Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 1", + "itemId": "5927c3241eb74b25b190ce4771303ff6", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves1", + "namespace": "pd3", + "name": "Gloves 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:15:58.028Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel3" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:15:58.054Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 1: Variant 1", + "itemId": "b3f395948efa417181755cae78f200b5", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves1_variant1", + "namespace": "pd3", + "name": "Gloves 1: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:26:57.617Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "InfamyLevel9", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:26:57.54Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 1: Variant 2", + "itemId": "fc9bd663bc574a15bda31ead3f5cd8b0", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves1_variant2", + "namespace": "pd3", + "name": "Gloves 1: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:34:40.2Z", + "discountPurchaseAt": "2023-05-29T11:34:40.2Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel23" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:34:40.122Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 1: Variant 3", + "itemId": "5563f9c467174e16915e5333d9aec46a", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves1_variant3", + "namespace": "pd3", + "name": "Gloves 1: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:41:08.105Z", + "discountPurchaseAt": "2023-05-29T11:41:08.105Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel43", + "RarityUncommon", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:41:07.993Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 1: Variant 4", + "itemId": "d3adab1da42740c5af5eaf328f4f2dc4", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves1_variant4", + "namespace": "pd3", + "name": "Gloves 1: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:42:52.58Z", + "discountPurchaseAt": "2023-05-29T11:42:52.58Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel79" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:42:52.452Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 2", + "itemId": "22f02fb28d10451aa81de54e9d3d4df5", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves2", + "namespace": "pd3", + "name": "Gloves 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:16:42.655Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel5" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:16:42.684Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 2: Variant 1", + "itemId": "3ebda5d5b9864e46b7efad8b340273fb", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves2_variant1", + "namespace": "pd3", + "name": "Gloves 2: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:44:08.617Z", + "discountPurchaseAt": "2023-05-29T11:44:08.617Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel12" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:44:08.511Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 2: Variant 2", + "itemId": "375f88740e01457daf27fe24ddf04b7b", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves2_variant2", + "namespace": "pd3", + "name": "Gloves 2: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:45:21.566Z", + "discountPurchaseAt": "2023-05-29T11:45:21.566Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel30", + "RarityUncommon", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:45:21.565Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 2: Variant 3", + "itemId": "fd9c795e003f4d00af09d04f15be6f8a", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves2_variant3", + "namespace": "pd3", + "name": "Gloves 2: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:51:11.992Z", + "discountPurchaseAt": "2023-05-29T11:51:11.992Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "TailorVendor", + "InfamyLevel49" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:51:11.895Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 2: Variant 4", + "itemId": "0707a334dbf44472b679510c7cc34e12", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves2_variant4", + "namespace": "pd3", + "name": "Gloves 2: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:52:12.541Z", + "discountPurchaseAt": "2023-05-29T11:52:12.541Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel85", + "RarityUncommon", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:52:12.424Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 3", + "itemId": "14eebb64b16245f2b0fafb3e9caff715", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves3", + "namespace": "pd3", + "name": "Gloves 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:17:42.167Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "RarityRare", + "InfamyLevel16" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:17:42.2Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 3: Variant 1", + "itemId": "6fa9a60bcaef4362b83a0d1bfb3c574f", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves3_variant1", + "namespace": "pd3", + "name": "Gloves 3: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:55:26.104Z", + "discountPurchaseAt": "2023-05-29T11:55:26.104Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "TailorVendor", + "InfamyLevel33" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:55:25.983Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 3: Variant 2", + "itemId": "9ce7d6429f5d4e83b063054999059933", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves3_variant2", + "namespace": "pd3", + "name": "Gloves 3: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:56:43.316Z", + "discountPurchaseAt": "2023-05-29T11:56:43.316Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel61", + "RarityRare", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:56:43.174Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 3: Variant 3", + "itemId": "9e34da8923a24e71b271a685a8fe1857", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves3_variant3", + "namespace": "pd3", + "name": "Gloves 3: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T11:58:11.474Z", + "discountPurchaseAt": "2023-05-29T11:58:11.474Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel95", + "RarityRare", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T11:58:11.337Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 3: Variant 4", + "itemId": "c76a520e5810448cb101de0eb855049f", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves3_variant4", + "namespace": "pd3", + "name": "Gloves 3: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:00:09.125Z", + "discountPurchaseAt": "2023-05-29T12:00:09.125Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "TailorVendor", + "InfamyLevel104" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:00:09.013Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 4", + "itemId": "b855aefb9bee469bbbfbe14f03de3827", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves4", + "namespace": "pd3", + "name": "Gloves 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:18:27.139Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "RarityRare", + "InfamyLevel36" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:18:27.162Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 4: Variant 1", + "itemId": "8edf51c7975c41f2883bba488f102c69", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves4_variant1", + "namespace": "pd3", + "name": "Gloves 4: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:03:31.913Z", + "discountPurchaseAt": "2023-05-29T12:03:31.913Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel96", + "RarityRare", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:03:31.809Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 4: Variant 2", + "itemId": "057f56e5489b4b07b9b63c6ed4337829", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves4_variant2", + "namespace": "pd3", + "name": "Gloves 4: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:04:56.357Z", + "discountPurchaseAt": "2023-05-29T12:04:56.357Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "TailorVendor", + "InfamyLevel117" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:04:56.25Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 4: Variant 3", + "itemId": "f522ffe6097e46efba85cd1cbe40490e", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves4_variant3", + "namespace": "pd3", + "name": "Gloves 4: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:06:16.814Z", + "discountPurchaseAt": "2023-05-29T12:06:16.814Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "TailorVendor", + "InfamyLevel133" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:06:16.676Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 4: Variant 4", + "itemId": "0dce360fb4de4085ab7f4c9fb0c3bd20", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves4_variant4", + "namespace": "pd3", + "name": "Gloves 4: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:07:16.305Z", + "discountPurchaseAt": "2023-05-29T12:07:16.305Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "TailorVendor", + "InfamyLevel144" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:07:16.173Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 5", + "itemId": "627046233e2a4373832faf4064224983", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves5", + "namespace": "pd3", + "name": "Gloves 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:19:25.079Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel55" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:19:25.135Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 5: Variant 1", + "itemId": "af762699d0cd4269867b2b034a079f88", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves5_variant1", + "namespace": "pd3", + "name": "Gloves 5: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:09:10.827Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel67" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:09:10.699Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 5: Variant 2", + "itemId": "b3fe0a90243341709278de64cdd84224", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves5_variant2", + "namespace": "pd3", + "name": "Gloves 5: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:11:22.606Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "InfamyLevel107", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:11:22.472Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 5: Variant 3", + "itemId": "24f9ef065e984e1bbb8f80b92ffdc07e", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves5_variant3", + "namespace": "pd3", + "name": "Gloves 5: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:12:31.784Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel122" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:12:31.647Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 5: Variant 4", + "itemId": "733d25a6bee242c38393c228c6eb9d94", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves5_variant4", + "namespace": "pd3", + "name": "Gloves 5: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:13:42.268Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel147" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:13:42.139Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 6", + "itemId": "c0c32f6968c547ddb5aec3727c1ee965", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves6", + "namespace": "pd3", + "name": "Gloves 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:20:17.522Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel73", + "RarityEpic", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:20:17.547Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 6: Variant 1", + "itemId": "8d982213a7e641228df97b6184c6e867", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves6_variant1", + "namespace": "pd3", + "name": "Gloves 6: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:15:18.631Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel98", + "RarityEpic", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:15:18.512Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 6: Variant 2", + "itemId": "05902a9724324dd0aad4b8e07b3a501d", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves6_variant2", + "namespace": "pd3", + "name": "Gloves 6: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:16:44.62Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel110" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:16:44.479Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 6: Variant 3", + "itemId": "6c307f84294d48d8a94fcc86622aeaaf", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves6_variant3", + "namespace": "pd3", + "name": "Gloves 6: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:18:56.095Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "InfamyLevel129", + "TailorVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:18:55.992Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 6: Variant 4", + "itemId": "94e30a7ed2f74e739c87d7b1297e70b1", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves6_variant4", + "namespace": "pd3", + "name": "Gloves 6: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:22:13.147Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel139" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:22:13.032Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 7", + "itemId": "9190469b2f004952b01cbbd53268608c", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves7", + "namespace": "pd3", + "name": "Gloves 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-26T16:20:55.01Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel90" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-26T16:20:55.058Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 7: Variant 1", + "itemId": "79f944b22c5243f182824eb7ea812403", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves7_variant1", + "namespace": "pd3", + "name": "Gloves 7: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:25:11.549Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel102" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:25:11.392Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 7: Variant 2", + "itemId": "edf4587824774c6487dc43d72e70bfc5", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves7_variant2", + "namespace": "pd3", + "name": "Gloves 7: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:26:31.212Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel114" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:26:31.157Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 7: Variant 3", + "itemId": "b6987f84b2e444bda1884e2708a92366", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves7_variant3", + "namespace": "pd3", + "name": "Gloves 7: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:27:25.349Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel126" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:27:25.203Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves 7: Variant 4", + "itemId": "da41f9c167814aa6baa0cbd9a35ab9bb", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves7_variant4", + "namespace": "pd3", + "name": "Gloves 7: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T12:29:22.89Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "TailorVendor", + "InfamyLevel136" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T12:29:22.733Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot", + "itemId": "b19570ad9a7b462fac0797482dcdb0b3", + "baseAppId": "", + "sku": "pd3_slot_gloves_initial", + "namespace": "pd3", + "name": "Gloves Inventory Slot", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:20:10.693Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:20:10.729Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 0", + "itemId": "d9c2c7a8bed9447587c73c9119f44820", + "baseAppId": "", + "sku": "pd3_slot_gloves0", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 0", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:24:15.889Z", + "discountPurchaseAt": "2023-02-07T09:24:15.889Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression0", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:24:15.927Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 1", + "itemId": "8581eb7b610d4c73981775dd1a3b91e1", + "baseAppId": "", + "sku": "pd3_slot_gloves1", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 1", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:26:20.655Z", + "discountPurchaseAt": "2023-02-07T09:26:20.655Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression1", + "TailorVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:26:20.685Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 10", + "itemId": "67ef46f21434453fa593da4a7a74179a", + "baseAppId": "", + "sku": "pd3_slot_gloves10", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 10", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 5, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 5, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:37:52.191Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression10", + "TailorVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:37:52.225Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 2", + "itemId": "bb1678e2e387419d9f613dce921118c7", + "baseAppId": "", + "sku": "pd3_slot_gloves2", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 2", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:28:09.734Z", + "discountPurchaseAt": "2023-02-07T09:28:09.734Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression2", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:28:09.76Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 3", + "itemId": "c5e2c128dae04d2fb9065656a0ec62a3", + "baseAppId": "", + "sku": "pd3_slot_gloves3", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 3", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:29:29.176Z", + "discountPurchaseAt": "2023-02-07T09:29:29.176Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression3", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:29:29.2Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 4", + "itemId": "a4b57284dcd34558ba23c0fc91abed4c", + "baseAppId": "", + "sku": "pd3_slot_gloves4", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 4", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:30:41.588Z", + "discountPurchaseAt": "2023-02-07T09:30:41.588Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression4", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:30:41.615Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 5", + "itemId": "4ea20b8a30074503b7faa3cc7f8d23fd", + "baseAppId": "", + "sku": "pd3_slot_gloves5", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 5", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:32:34.157Z", + "discountPurchaseAt": "2023-02-07T09:32:34.157Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression5", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:32:34.193Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 6", + "itemId": "cc590981e5ce4c47adf0c0006d4514ff", + "baseAppId": "", + "sku": "pd3_slot_gloves6", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 6", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:33:50.385Z", + "discountPurchaseAt": "2023-02-07T09:33:50.385Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression6", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:33:50.41Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 7", + "itemId": "39c17825fae547c8a269bf47bfb17ab8", + "baseAppId": "", + "sku": "pd3_slot_gloves7", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 7", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:34:48.369Z", + "discountPurchaseAt": "2023-02-07T09:34:48.369Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression7", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:34:48.387Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 8", + "itemId": "e8476cb1e7274679a15291883151feab", + "baseAppId": "", + "sku": "pd3_slot_gloves8", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 8", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:35:41.944Z", + "discountPurchaseAt": "2023-02-07T09:35:41.944Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression8", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:35:41.966Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gloves Inventory Slot: Price Progression 9", + "itemId": "8da37ceb27e44aab839d3c246ad893c4", + "baseAppId": "", + "sku": "pd3_slot_gloves9", + "namespace": "pd3", + "name": "Gloves Inventory Slot: Price Progression 9", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-07T09:36:53.048Z", + "discountPurchaseAt": "2023-02-07T09:36:53.048Z" + } + ], + "itemQty": {}, + "tags": [ + "TailorVendor", + "PriceProgression9", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-07T09:36:53.074Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold", + "itemId": "4c7e4988a3184057bd24b22c484d6065", + "baseAppId": "", + "sku": "pd3_coin_gold", + "namespace": "pd3", + "name": "Gold", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "boundItemIds": [ + "d7867b7039ed475282644cf31f47be0f" + ], + "tags": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-02-25T14:22:36.977Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Bundle Epic", + "itemId": "957560277d0f484390817596cb6f6792", + "baseAppId": "", + "sku": "PD3_epic_gold_edition", + "namespace": "pd3", + "name": "Gold Edition Bundle Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-19T12:18:12.655Z", + "discountPurchaseAt": "2023-09-19T12:18:12.655Z" + } + ], + "itemIds": [ + "c0298decd571485a924f8441b38feb0a", + "ceb3f7910b254e21a29dc85f19fe3716" + ], + "itemQty": { + "c0298decd571485a924f8441b38feb0a": 1, + "ceb3f7910b254e21a29dc85f19fe3716": 1 + }, + "tags": [ + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-07T05:42:48.504Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Bundle PlayStation", + "itemId": "3c49d557e1b0440fa75e11bcede06d94", + "baseAppId": "", + "sku": "PD3_playstation_gold_edition", + "namespace": "pd3", + "name": "Gold Edition Bundle PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-19T12:19:51.715Z", + "discountPurchaseAt": "2023-09-19T12:19:51.715Z" + } + ], + "itemIds": [ + "6612d166d3c14863a756848ba6acd11d", + "ef8117da082c4c7691b27ed9ebb1a223" + ], + "itemQty": { + "ef8117da082c4c7691b27ed9ebb1a223": 1, + "6612d166d3c14863a756848ba6acd11d": 1 + }, + "tags": [ + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-07T06:25:50.766Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Bundle XBox", + "itemId": "0863f6d764a249649ef49545e3b9e4bb", + "baseAppId": "", + "sku": "PD3_xbox_gold_edition", + "namespace": "pd3", + "name": "Gold Edition Bundle XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-19T12:14:14.235Z", + "discountPurchaseAt": "2023-09-19T12:14:14.235Z" + } + ], + "itemIds": [ + "297c7c11e15c4ca3847e4494cff2352a", + "0ec654017e2c4b32868bf05f40578872" + ], + "itemQty": { + "0ec654017e2c4b32868bf05f40578872": 1, + "297c7c11e15c4ca3847e4494cff2352a": 1 + }, + "tags": [ + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T14:04:37.731Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Compensation Bundle Epic", + "itemId": "2c13ac19cf2c4288a2f3add6933f0482", + "baseAppId": "", + "sku": "pd3_epic_gold_edition_compensation_bundle", + "namespace": "pd3", + "name": "Gold Edition Compensation Bundle Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-10T11:17:40.907Z", + "discountPurchaseAt": "2024-06-10T11:17:40.907Z" + } + ], + "itemIds": [ + "0827cdc5c4024fcaa0bed41086b03b35", + "cd7d3e0184914e138b9f3629b307dfdc", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "cd7d3e0184914e138b9f3629b307dfdc": 1, + "0827cdc5c4024fcaa0bed41086b03b35": 1 + }, + "tags": [ + "PlatformOnly", + "Epic", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-10T11:17:40.472Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Compensation Bundle PlayStation", + "itemId": "96d5342e48bd4b86b8f901d4ef08ebb1", + "baseAppId": "", + "sku": "pd3_playstation_gold_edition_compensation_bundle", + "namespace": "pd3", + "name": "Gold Edition Compensation Bundle PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-10T11:11:40.629Z", + "discountPurchaseAt": "2024-06-10T11:11:40.629Z" + } + ], + "itemIds": [ + "bb74f8ffdfde4c0fbd90ede7ab1af56b", + "4547f46c07604feea5d4d903b3f02ec0", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "bb74f8ffdfde4c0fbd90ede7ab1af56b": 1, + "4547f46c07604feea5d4d903b3f02ec0": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-10T11:11:40.206Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Compensation Bundle Steam", + "itemId": "b34a1d608aec4cfd82850ba09f57278f", + "baseAppId": "", + "sku": "pd3_steam_gold_edition_compensation_bundle", + "namespace": "pd3", + "name": "Gold Edition Compensation Bundle Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-10T11:15:36.75Z", + "discountPurchaseAt": "2024-06-10T11:15:36.75Z" + } + ], + "itemIds": [ + "f5da11e73a134035bf42572ab6419e82", + "0f76b19ef14f47198a465fdf30cd1b9b", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "0f76b19ef14f47198a465fdf30cd1b9b": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "f5da11e73a134035bf42572ab6419e82": 1 + }, + "tags": [ + "PlatformOnly", + "Steam", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-10T11:15:36.319Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Edition Compensation Bundle XBox", + "itemId": "32a04d6b2fa247b5b15e36bc6a44c919", + "baseAppId": "", + "sku": "pd3_xbox_gold_edition_compensation_bundle", + "namespace": "pd3", + "name": "Gold Edition Compensation Bundle XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "BUNDLE", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-10T11:09:29.62Z", + "discountPurchaseAt": "2024-06-10T11:09:29.62Z" + } + ], + "itemIds": [ + "68d1a12712964919b786bf5cee81a449", + "d8d8793520bb4b96b9b17095c4ad172f", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "68d1a12712964919b786bf5cee81a449": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "d8d8793520bb4b96b9b17095c4ad172f": 1 + }, + "tags": [ + "PlatformOnly", + "XBox", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-10T11:09:29.269Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 0", + "itemId": "4d85bf540d3b440d9aebce6d7519dcf3", + "baseAppId": "", + "sku": "pd3_coin_goldsmall0", + "namespace": "pd3", + "name": "Gold Price 0", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression0", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-04T06:53:40.812Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 1", + "itemId": "9b7aadc5f83345f590e5baf1edf4adf3", + "baseAppId": "", + "sku": "pd3_coin_goldsmall1", + "namespace": "pd3", + "name": "Gold Price 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 25000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 25000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression1", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-30T06:04:59.307Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 10", + "itemId": "d37b9d47e54f46189efb6f9ff0d4a1cf", + "baseAppId": "", + "sku": "pd3_coin_goldsmall10", + "namespace": "pd3", + "name": "Gold Price 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 1000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression10", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-03T15:11:19.923Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 2", + "itemId": "0d98e898a76e4f778c9ac7773a0df03f", + "baseAppId": "", + "sku": "pd3_coin_goldsmall2", + "namespace": "pd3", + "name": "Gold Price 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression2", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-04T06:12:01.354Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 3", + "itemId": "55c499cc3ba94445887a2223d339ad4e", + "baseAppId": "", + "sku": "pd3_coin_goldsmall3", + "namespace": "pd3", + "name": "Gold Price 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 75000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 75000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression3", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-28T14:01:47.411Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 4", + "itemId": "c210bbf4ed1c462b83515916c02cd0bb", + "baseAppId": "", + "sku": "pd3_coin_goldsmall4", + "namespace": "pd3", + "name": "Gold Price 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression4", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-27T12:44:37.826Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 5", + "itemId": "7fc6e9f89bb44335947ad40db5169d51", + "baseAppId": "", + "sku": "pd3_coin_goldsmall5", + "namespace": "pd3", + "name": "Gold Price 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 150000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 150000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression5", + "GoldExchangeVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-27T12:48:06.318Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 6", + "itemId": "d83b01b379be4421b17d9eae01078846", + "baseAppId": "", + "sku": "pd3_coin_goldsmall6", + "namespace": "pd3", + "name": "Gold Price 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression6" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-27T15:27:43.704Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 7", + "itemId": "95a682220a32434abb7dea44b6082a20", + "baseAppId": "", + "sku": "pd3_coin_goldsmall7", + "namespace": "pd3", + "name": "Gold Price 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 300000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 300000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression7" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-03T15:05:10.123Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 8", + "itemId": "3a20b5928ba24cde8f9c460805635a6b", + "baseAppId": "", + "sku": "pd3_coin_goldsmall8", + "namespace": "pd3", + "name": "Gold Price 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 600000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 600000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression8" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-03T15:07:26.686Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price 9", + "itemId": "18d71fcd8331444ab6555f3a2bc7a43f", + "baseAppId": "", + "sku": "pd3_coin_goldsmall9", + "namespace": "pd3", + "name": "Gold Price 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 800000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 800000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression9" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-03T15:09:40.73Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 0", + "itemId": "dd693796e4fb4e438971b65eecf6b4b7", + "sku": "pd3_coin_goldlarge0", + "namespace": "pd3", + "name": "Gold Price Large 0", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 90000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 90000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T13:49:59.257Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression0", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T13:49:59.27Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 1", + "itemId": "cc3c8d1877394604abde66eb29d19e1b", + "sku": "pd3_coin_goldlarge1", + "namespace": "pd3", + "name": "Gold Price Large 1", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 225000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 225000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T13:51:12.631Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression1", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T13:51:12.638Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 10", + "itemId": "cd00aeceda14413a9504d4177e021458", + "sku": "pd3_coin_goldlarge10", + "namespace": "pd3", + "name": "Gold Price Large 10", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 9000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 9000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:07:50.631Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression10", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:07:50.637Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 2", + "itemId": "d0074efb37714ad7bb334b08c103de0e", + "sku": "pd3_coin_goldlarge2", + "namespace": "pd3", + "name": "Gold Price Large 2", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 450000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 450000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T13:52:40.941Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression2", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T13:52:40.949Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 3", "itemId": "83c9630489374cefbd0c25c41d1dd5fb", "sku": "pd3_coin_goldlarge3", "namespace": "pd3", - "name": "Gold Price Large 3", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "Gold Price Large 3", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 675000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 675000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T13:58:14.122Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression3", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T13:58:14.142Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 4", + "itemId": "61b0f573fb154321b4be8e3a6ce96141", + "sku": "pd3_coin_goldlarge4", + "namespace": "pd3", + "name": "Gold Price Large 4", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 900000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 900000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T13:59:26.959Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression4", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T13:59:26.972Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 5", + "itemId": "6fb7f60490b24943ba6237029f7f6fe9", + "sku": "pd3_coin_goldlarge5", + "namespace": "pd3", + "name": "Gold Price Large 5", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 1350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:00:46.397Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression5", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:00:46.413Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 6", + "itemId": "13d4ed273973426b85e2150c0b89f91f", + "sku": "pd3_coin_goldlarge6", + "namespace": "pd3", + "name": "Gold Price Large 6", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 1800000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1800000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:02:04.965Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression6" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:02:04.972Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 7", + "itemId": "c772a6645fde437a8f9155f7c0934cee", + "sku": "pd3_coin_goldlarge7", + "namespace": "pd3", + "name": "Gold Price Large 7", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 2700000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 2700000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:03:26.979Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression7", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:03:26.989Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 8", + "itemId": "980fe380fbba49fcb8f741e03cf1df39", + "sku": "pd3_coin_goldlarge8", + "namespace": "pd3", + "name": "Gold Price Large 8", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 5400000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 5400000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:05:25.657Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression8" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:05:25.669Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Large 9", + "itemId": "f8672d23710b4cb19d8a2f137df5e93d", + "sku": "pd3_coin_goldlarge9", + "namespace": "pd3", + "name": "Gold Price Large 9", + "entitlementType": "CONSUMABLE", + "useCount": 10, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 7200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 7200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T14:06:34.88Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression9" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T14:06:34.888Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 0", + "itemId": "ed477be545ee4767a705ef8fde8b5cf5", + "sku": "pd3_coin_goldmedium0", + "namespace": "pd3", + "name": "Gold Price Medium 0", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 45000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 45000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T09:51:15.072Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression0", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T09:51:15.277Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 1", + "itemId": "3449a9be2ee643cb84cf9efd20359b7e", + "sku": "pd3_coin_goldmedium1", + "namespace": "pd3", + "name": "Gold Price Medium 1", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 112500, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 112500, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T09:54:14.909Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression1", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T09:54:14.867Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 10", + "itemId": "daac0b6f046d49999c38313852417880", + "sku": "pd3_coin_goldmedium10", + "namespace": "pd3", + "name": "Gold Price Medium 10", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 4500000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 4500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:58:41.915Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression10", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:58:41.916Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 2", + "itemId": "986a616bedde4f6d8faf491f33e3e0b4", + "sku": "pd3_coin_goldmedium2", + "namespace": "pd3", + "name": "Gold Price Medium 2", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 225000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 225000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:42:36.49Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression2", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:42:36.488Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 3", + "itemId": "5659ae7b97304ad1b61e4f2c0acfc3fb", + "sku": "pd3_coin_goldmedium3", + "namespace": "pd3", + "name": "Gold Price Medium 3", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 337500, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 337500, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:44:41.084Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression3", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:44:41.077Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 4", + "itemId": "f1a2bfeeef784b9cb175eb746cb10dc8", + "sku": "pd3_coin_goldmedium4", + "namespace": "pd3", + "name": "Gold Price Medium 4", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 450000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 450000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:47:14.816Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression4", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:47:14.814Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 5", + "itemId": "ef27d3146d4447dfb9ef7e45b6df198a", + "sku": "pd3_coin_goldmedium5", + "namespace": "pd3", + "name": "Gold Price Medium 5", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 675000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 675000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:48:46.252Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression5", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:48:46.245Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 6", + "itemId": "b2da7754ddd846919fdb8d3aea5a28c2", + "sku": "pd3_coin_goldmedium6", + "namespace": "pd3", + "name": "Gold Price Medium 6", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 900000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 900000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:50:39.259Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression6" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:50:39.247Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 7", + "itemId": "1449deedea6f4570b477751c46c56419", + "sku": "pd3_coin_goldmedium7", + "namespace": "pd3", + "name": "Gold Price Medium 7", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 1350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:55:07.448Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression7", + "GoldExchangeVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:55:07.461Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 8", + "itemId": "96ea49e506cb4515ba9913d7b00b3e8d", + "sku": "pd3_coin_goldmedium8", + "namespace": "pd3", + "name": "Gold Price Medium 8", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 2700000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 2700000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:56:14.367Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression8" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:56:14.366Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Gold Price Medium 9", + "itemId": "a7d55ad216614c10a66802409d462220", + "sku": "pd3_coin_goldmedium9", + "namespace": "pd3", + "name": "Gold Price Medium 9", + "entitlementType": "CONSUMABLE", + "useCount": 5, + "stackable": true, + "categoryPath": "/Coin", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "COINS", + "targetCurrencyCode": "GOLD", + "regionData": [ + { + "price": 3600000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 3600000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-12-20T12:57:09.893Z" + } + ], + "itemQty": {}, + "tags": [ + "GoldExchangeVendor", + "PriceProgression9" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-12-20T12:57:09.884Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Halloween 23 Preset ", + "itemId": "05564d6351b54a519486567a1ca0bf22", + "baseAppId": "", + "sku": "pd3_wpn_preset_halloween23", + "namespace": "pd3", + "name": "Halloween 23 Preset ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponPreset", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-27T13:33:12.249Z" + } + ], + "itemQty": {}, + "tags": [ + "CombatEquipmentVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-27T13:33:13.894Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Halloween Mask 2023", + "itemId": "ebeb87ff303e4c65be770c6c0b51a528", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_halloween23", + "namespace": "pd3", + "name": "Halloween Mask 2023", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-17T13:44:27.633Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-10-17T13:47:27.321Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heavy Ballistic Vest", + "itemId": "0355159b70d845d5be98bbbd82614957", + "baseAppId": "", + "sku": "pd3_armor_heavyvest", + "namespace": "pd3", + "name": "Heavy Ballistic Vest", + "entitlementType": "DURABLE", + "categoryPath": "/Armor", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-02T10:15:23.582Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Art Gallery", + "itemId": "66e4918f797d4bd0b8e8eb43e8a15687", + "baseAppId": "", + "sku": "pd3_steam_heist_art_gallery", + "namespace": "pd3", + "name": "Heist Art Gallery", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T12:21:09.061Z", + "discountPurchaseAt": "2023-10-31T12:21:09.061Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Steam" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-10-31T12:21:08.848Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Art Gallery", + "itemId": "489d79f9aab64f449f67748aa97259d0", + "baseAppId": "", + "sku": "pd3_heist_art_gallery", + "namespace": "pd3", + "name": "Heist Art Gallery", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T14:31:38.567Z", + "discountPurchaseAt": "2023-10-31T14:31:38.567Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-10-31T14:31:37.968Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Branch Bank", + "itemId": "64278f9403474eecace83eb2035030b8", + "baseAppId": "", + "sku": "pd3_heist_branch_bank", + "namespace": "pd3", + "name": "Heist Branch Bank", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T14:48:39.348Z", + "discountPurchaseAt": "2023-11-02T14:48:39.348Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T14:48:38.528Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Cargo Dock", + "itemId": "de6b03a887db46ebb5f3c189eee0736c", + "baseAppId": "", + "sku": "pd3_heist_cargo_dock", + "namespace": "pd3", + "name": "Heist Cargo Dock", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:21:04.982Z", + "discountPurchaseAt": "2023-11-02T12:21:04.982Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:21:04.606Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Courthouse Epic", + "itemId": "3a50a8b0631349a8831ddcc15a6653e1", + "baseAppId": "", + "sku": "pd3_epic_heist_chus", + "namespace": "pd3", + "name": "Heist Courthouse Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:32:56.858Z", + "discountPurchaseAt": "2024-07-09T08:32:56.858Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "8fb3b7bdb7d1437ab782685429b967aa", + "f4b6caf6b4bb440c9c8abe896750bf94", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:32:57.875Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Courthouse PlayStation", + "itemId": "ba274ce3b39e4f4e8c73e9f753e1f7bb", + "baseAppId": "", + "sku": "pd3_playstation_heist_chus", + "namespace": "pd3", + "name": "Heist Courthouse PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:40:59.646Z", + "discountPurchaseAt": "2024-07-09T08:40:59.646Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f", + "9bdd6205acb148499a3fe9d7a95ee44d" + ], + "tags": [ + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:41:00.765Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Courthouse Steam", + "itemId": "85ec3e3656cf475ca514d4c3039cd739", + "baseAppId": "", + "sku": "pd3_steam_heist_chus", + "namespace": "pd3", + "name": "Heist Courthouse Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:39:37.836Z", + "discountPurchaseAt": "2024-07-09T08:39:37.836Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "ab2333b806264dffb620d48f0d3d0d30" + ], + "tags": [ + "PlatformOnly", + "Steam", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:39:38.869Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Courthouse XBox", + "itemId": "fc4023ed1a1c4635a6328a599fbcadfd", + "baseAppId": "", + "sku": "pd3_xbox_heist_chus", + "namespace": "pd3", + "name": "Heist Courthouse XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:42:37.061Z", + "discountPurchaseAt": "2024-07-09T08:42:37.061Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6", + "1201793fbd054c3186c42cb45fd8107e" + ], + "tags": [ + "PlatformOnly", + "XBox", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-09T08:42:38.083Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Data Center Epic", + "itemId": "db780556b7c2474fbe790ebd0bf8cc61", + "baseAppId": "", + "sku": "pd3_epic_heist_data_center", + "namespace": "pd3", + "name": "Heist Data Center Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:36:25.872Z", + "discountPurchaseAt": "2023-11-02T12:36:25.872Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "711cd306bb1142678b74ffeb51072380", + "cbf38295d2f14bada785ddfa905f2850", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:36:25.444Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Data Center PlayStation", + "itemId": "a6f6219f6ab04b3b9d90ae7c6778b379", + "baseAppId": "", + "sku": "pd3_playstation_heist_data_center", + "namespace": "pd3", + "name": "Heist Data Center PlayStation", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:34:51.822Z", + "discountPurchaseAt": "2023-11-02T12:34:51.822Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "2b1086a1125a4b75ad9bfa0af7128f12", + "88e8728f2a814997ba5a4ce7521bde4f" + ], + "tags": [ + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:34:51.411Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Data Center Steam", + "itemId": "9b3e2be8772e4674bb85dc28f533924e", + "baseAppId": "", + "sku": "pd3_steam_heist_data_center", + "namespace": "pd3", + "name": "Heist Data Center Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T07:22:18.366Z", + "discountPurchaseAt": "2023-11-02T07:22:18.366Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "f7bb2ffd415b4e39be0c09ebb6736b9a" + ], + "tags": [ + "PlatformOnly", + "Steam", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T07:22:15.045Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Data Center Xbox", + "itemId": "31a224936c0846799ce55efaa3245d9d", + "baseAppId": "", + "sku": "pd3_xbox_heist_data_center", + "namespace": "pd3", + "name": "Heist Data Center Xbox", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:35:48.073Z", + "discountPurchaseAt": "2023-11-02T12:35:48.073Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "44d935b4c568443a8bf7783f15f38711", + "dd0800a21b804c27b55ae954de880491", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:35:47.654Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Diamond District", + "itemId": "e83972745a774d30b12f849143c3bf54", + "baseAppId": "", + "sku": "pd3_heist_didi", + "namespace": "pd3", + "name": "Heist Diamond District", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-26T07:33:43.233Z", + "discountPurchaseAt": "2024-06-26T07:33:43.233Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-26T07:33:45.081Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Fort Epic", + "itemId": "f26d7322b3b94f8d9e42624397c2d9cc", + "baseAppId": "", + "sku": "pd3_epic_heist_fort", + "namespace": "pd3", + "name": "Heist Fort Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:33:29.524Z", + "discountPurchaseAt": "2023-11-02T12:33:29.524Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "34a0e12b450e4450bf0a54de1768efcb", + "775cbf5cec0b4190961bc70422aedd75", + "a8d6ccfbefc84680a15998a23889043d", + "3bf57ed271e34c5ba08592a8c57f5421" + ], + "tags": [ + "PlatformOnly", + "Epic", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:33:29.11Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Fort PlayStation", + "itemId": "3d9b22d25d4d40af927169b92bf8e599", + "baseAppId": "", + "sku": "pd3_playstation_heist_fort", + "namespace": "pd3", + "name": "Heist Fort PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:31:46.361Z", + "discountPurchaseAt": "2023-11-02T12:31:46.361Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "86f89185a7fa4c9e897f93bb7428ab1d" + ], + "tags": [ + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:31:45.961Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Fort Steam", + "itemId": "ebecba276c3342b481c434da16d69a5f", + "baseAppId": "", + "sku": "pd3_steam_heist_fort", + "namespace": "pd3", + "name": "Heist Fort Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:30:37.773Z", + "discountPurchaseAt": "2023-11-02T12:30:37.773Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "d9b299caae7e4620b17e961243e3aea6" + ], + "tags": [ + "PlatformOnly", + "Steam", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:30:37.357Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Fort XBox", + "itemId": "acc876daeade417e8cc0219914664fa6", + "baseAppId": "", + "sku": "pd3_xbox_heist_fort", + "namespace": "pd3", + "name": "Heist Fort XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:32:40.734Z", + "discountPurchaseAt": "2023-11-02T12:32:40.734Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "504a3fec0e6f459aa65bb9dc058dee93", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:32:40.31Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Gold Sharke", + "itemId": "51a4d1775a544f93b9dfdcf48f068c77", + "baseAppId": "", + "sku": "pd3_heist_gold_sharke", + "namespace": "pd3", + "name": "Heist Gold Sharke", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T14:50:38.168Z", + "discountPurchaseAt": "2023-11-02T14:50:38.168Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T14:50:37.35Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Jewelry Store", + "itemId": "452409c6100047a8bf7dc0a8e2eeda5b", + "baseAppId": "", + "sku": "pd3_heist_jewelry_store", + "namespace": "pd3", + "name": "Heist Jewelry Store", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:23:11.347Z", + "discountPurchaseAt": "2023-11-02T12:23:11.347Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:23:10.954Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Night Club", + "itemId": "b1476452baba4a3c8682e479acc44a46", + "baseAppId": "", + "sku": "pd3_heist_night_club", + "namespace": "pd3", + "name": "Heist Night Club", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:24:10.163Z", + "discountPurchaseAt": "2023-11-02T12:24:10.163Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:24:09.774Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Pent House", + "itemId": "0165fd5b2b704d6ca4f67f376e343b0d", + "baseAppId": "", + "sku": "pd3_heist_pent_house", + "namespace": "pd3", + "name": "Heist Pent House", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:25:06.126Z", + "discountPurchaseAt": "2023-11-02T12:25:06.126Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:25:05.743Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Station", + "itemId": "4c1a3b8d1b3a4c32aff561c5d68c7eff", + "baseAppId": "", + "sku": "pd3_heist_station", + "namespace": "pd3", + "name": "Heist Station", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:27:51.488Z", + "discountPurchaseAt": "2023-11-02T12:27:51.489Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:27:51.076Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Stock Exchange Epic", + "itemId": "59999e9debf94f859894bed189f91325", + "baseAppId": "", + "sku": "pd3_epic_heist_stonk", + "namespace": "pd3", + "name": "Heist Stock Exchange Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-23T09:10:57.181Z", + "discountPurchaseAt": "2024-08-23T09:10:57.181Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e2af9884246b442d9a363259322b0598", + "dcd85e669ef84794bc7f18c9f70bdf45", + "775cbf5cec0b4190961bc70422aedd75" + ], + "tags": [ + "PlatformOnly", + "Epic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-23T09:10:57.277Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Stock Exchange PlayStation", + "itemId": "6fe2d33da5d34711bdc490523be1d4fb", + "baseAppId": "", + "sku": "pd3_playstation_heist_stonk", + "namespace": "pd3", + "name": "Heist Stock Exchange PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-16T13:25:19.721Z", + "discountPurchaseAt": "2024-08-16T13:25:19.721Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "a33229744d2149dcb3101934d2794d68", + "88e8728f2a814997ba5a4ce7521bde4f" + ], + "tags": [ + "PlatformOnly", + "PlayStation" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-16T13:25:19.998Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Stock Exchange Steam", + "itemId": "454e69fa3cf042139b1d3d1525e94484", + "baseAppId": "", + "sku": "pd3_steam_heist_stonk", + "namespace": "pd3", + "name": "Heist Stock Exchange Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-16T13:26:57.756Z", + "discountPurchaseAt": "2024-08-16T13:26:57.756Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3", + "87e8cb11af3744e59ddb9bdf0598ac6a" + ], + "tags": [ + "PlatformOnly", + "Steam" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-16T13:26:58.034Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Stock Exchange XBox", + "itemId": "fe3355f049164ef689f58d4eaaab1919", + "baseAppId": "", + "sku": "pd3_xbox_heist_stonk", + "namespace": "pd3", + "name": "Heist Stock Exchange XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-16T13:29:53.747Z", + "discountPurchaseAt": "2024-08-16T13:29:53.747Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "bded0312311243c798691f93cf9bc7cc", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-16T13:29:54.029Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Transport", + "itemId": "0435cf118b294d259227310105876663", + "baseAppId": "", + "sku": "pd3_heist_transport", + "namespace": "pd3", + "name": "Heist Transport", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:26:04.158Z", + "discountPurchaseAt": "2023-11-02T12:26:04.158Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:26:03.757Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Heist Villa", + "itemId": "1855ea53b51c493a954500566db71326", + "baseAppId": "", + "sku": "pd3_heist_villa", + "namespace": "pd3", + "name": "Heist Villa", + "entitlementType": "DURABLE", + "categoryPath": "/Heist", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-02T12:29:00.78Z", + "discountPurchaseAt": "2023-11-02T12:29:00.78Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-02T12:29:00.371Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Helicopter Pilot Art Gallery Preplanning asset", + "itemId": "3872ce94c1bf4ae49962e97e6eee4c13", + "baseAppId": "", + "sku": "pd3_preplanning_artgallery_4", + "namespace": "pd3", + "name": "Helicopter Pilot Art Gallery Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-23T11:20:54.842Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Hoxton Mould", + "itemId": "d046a0b0a47a48df864a3303a06131ce", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould_hoxton", + "namespace": "pd3", + "name": "Hoxton Mould", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-10T15:00:51.543Z", + "discountPurchaseAt": "2023-02-10T15:00:51.543Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-10T15:00:51.429Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Hoxton Suit", + "itemId": "47df3749659448289077c224ab28ee28", + "baseAppId": "", + "sku": "pd3_suit_hoxton", + "namespace": "pd3", + "name": "Hoxton Suit", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-29T14:47:48.29Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-29T14:47:48.115Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Inside Man Keycard Night Club Preplanning asset", + "itemId": "ea9fd9afab3d4e88ab8f9276bd5e66b3", + "baseAppId": "", + "sku": "pd3_preplanning_nightclub_4", + "namespace": "pd3", + "name": "Inside Man Keycard Night Club Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-23T11:11:06.156Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Joy Mould", + "itemId": "24bf710f835542cea32db7de28c23e52", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould_joy", + "namespace": "pd3", + "name": "Joy Mould", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-10T15:03:36.327Z", + "discountPurchaseAt": "2023-02-10T15:03:36.327Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-10T15:03:36.205Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Keycard Art Gallery Preplanning asset", + "itemId": "714a8344431147b1bbb9a36c51a6e0fe", + "baseAppId": "", + "sku": "pd3_preplanning_artgallery_2", + "namespace": "pd3", + "name": "Keycard Art Gallery Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-21T13:00:46.321Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Keycard Branch Bank Preplanning asset", + "itemId": "fb595a70be16479cbd6398866ceace43", + "baseAppId": "", + "sku": "pd3_preplanning_branchbank_3", + "namespace": "pd3", + "name": "Keycard Branch Bank Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:17:31.806Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "LMG MX63", + "itemId": "2645e964b648497d951d03e2d325e9bc", + "baseAppId": "", + "sku": "pd3_wpn_lmg_mx63", + "namespace": "pd3", + "name": "LMG MX63", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 500000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-07T11:19:27.343Z" + } + ], + "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel62" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-05-07T11:19:26.306Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Less Containers Cargo Dock Preplanning asset", + "itemId": "0cd47901794a44b38a9f2d4b7b1b3f61", + "baseAppId": "", + "sku": "pd3_preplanning_cargodock_1", + "namespace": "pd3", + "name": "Less Containers Cargo Dock Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:26:16.732Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD A114 Barrel CQC", + "itemId": "93d0ad10410944d0a1573b7e6d2d557f", + "baseAppId": "", + "sku": "pd3_mod_a114_barrel_cqc", + "namespace": "pd3", + "name": "MOD A114 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:02:44.263Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:02:44.029Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD A114 Barrel Ranged", + "itemId": "d4d1d446671a49e99e06e7c5f4f5109e", + "baseAppId": "", + "sku": "pd3_mod_a114_barrel_ranged", + "namespace": "pd3", + "name": "MOD A114 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:08:08.936Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:08:08.679Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD A114 Mag Extended", + "itemId": "1d8f85c1abb94f619d6b412b97fae4ff", + "baseAppId": "", + "sku": "pd3_mod_a114_mag_extended", + "namespace": "pd3", + "name": "MOD A114 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:08:27.635Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:08:27.142Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD A114 Mag Quick", + "itemId": "48af4ebd6cf54c6c914a7b7343ae2a87", + "baseAppId": "", + "sku": "pd3_mod_a114_mag_quick", + "namespace": "pd3", + "name": "MOD A114 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:09:54.486Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:09:53.99Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Grip Biofit ", + "itemId": "3be79b6fb17746c2bbd72dd152a5628b", + "baseAppId": "", + "sku": "pd3_mod_atk7_grip_biofit", + "namespace": "pd3", + "name": "MOD ATK7 Grip Biofit ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:28:00.604Z", + "discountPurchaseAt": "2024-02-14T14:28:00.604Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:28:01.553Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Grip Lightweight", + "itemId": "08a9a0efb0334b76a3cb2bf2cbbf835a", + "baseAppId": "", + "sku": "pd3_mod_atk7_grip_lightweight", + "namespace": "pd3", + "name": "MOD ATK7 Grip Lightweight", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:29:22.817Z", + "discountPurchaseAt": "2024-02-14T14:29:22.817Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:29:23.786Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Grip Tac", + "itemId": "d6502f47ae384ad687afd76a38342694", + "baseAppId": "", + "sku": "pd3_mod_atk7_grip_tac", + "namespace": "pd3", + "name": "MOD ATK7 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:28:34.473Z", + "discountPurchaseAt": "2024-02-14T14:28:34.473Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:28:35.421Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Mag Compact", + "itemId": "def79002e91246528465fc0efb517767", + "baseAppId": "", + "sku": "pd3_mod_atk7_mag_compact", + "namespace": "pd3", + "name": "MOD ATK7 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:32:59.963Z", + "discountPurchaseAt": "2024-02-14T14:32:59.963Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:33:00.918Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Mag Extended", + "itemId": "ab64867811e5463aaffd8278ba841ca7", + "baseAppId": "", + "sku": "pd3_mod_atk7_mag_extended", + "namespace": "pd3", + "name": "MOD ATK7 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:33:43.53Z", + "discountPurchaseAt": "2024-02-14T14:33:43.53Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:33:44.494Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Mag Quick", + "itemId": "842451828a40463b8e4c0db4c13fbef9", + "baseAppId": "", + "sku": "pd3_mod_atk7_mag_quick", + "namespace": "pd3", + "name": "MOD ATK7 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:35:16.696Z", + "discountPurchaseAt": "2024-02-14T14:35:16.696Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:35:17.66Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Stock HQ", + "itemId": "2fa9488d89504bdbbf0a71ab2f43a4b1", + "baseAppId": "", + "sku": "pd3_mod_atk7_stock_hq", + "namespace": "pd3", + "name": "MOD ATK7 Stock HQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:31:27.217Z", + "discountPurchaseAt": "2024-02-14T14:31:27.217Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:31:28.17Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Stock Lightweight", + "itemId": "0ae0f888536c4713a232ea91dd96fa1b", + "baseAppId": "", + "sku": "pd3_mod_atk7_stock_lightweight", + "namespace": "pd3", + "name": "MOD ATK7 Stock Lightweight", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:32:08.263Z", + "discountPurchaseAt": "2024-02-14T14:32:08.263Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:32:09.226Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD ATK7 Stock TQ", + "itemId": "23307e3f0aca414eaf7c14f7352e24b9", + "baseAppId": "", + "sku": "pd3_mod_atk7_stock_tq", + "namespace": "pd3", + "name": "MOD ATK7 Stock TQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:30:49.11Z", + "discountPurchaseAt": "2024-02-14T14:30:49.11Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:30:50.07Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GObelisk", + "itemId": "af69c92a7eb346af83e72925fa00f2e1", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gobelisk", + "namespace": "pd3", + "name": "MOD BarrelExt 12GObelisk", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:10:18.661Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:10:16.529Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GObelisk High", + "itemId": "1851a24b12614fc0aa041543949ded6c", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gobelisk_high", + "namespace": "pd3", + "name": "MOD BarrelExt 12GObelisk High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:29:44.774Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:29:44.623Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GObelisk Low", + "itemId": "bfa7807cc6164d079af550370b4ff757", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gobelisk_low", + "namespace": "pd3", + "name": "MOD BarrelExt 12GObelisk Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:23:33.476Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:23:33.393Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GVentComp", + "itemId": "d7b993ab2d5545b09369f2d0cc484967", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gventcomp", + "namespace": "pd3", + "name": "MOD BarrelExt 12GVentComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:50:49.177Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:50:46.99Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GVentComp High", + "itemId": "db8d2810b2dc40938abc47aa6862089e", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gventcomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt 12GVentComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:34:47.745Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:34:47.587Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt 12GVentComp Low", + "itemId": "f2b4874a1ba64abcaa305e1dcb31faaf", + "baseAppId": "", + "sku": "pd3_mod_barrelext_12gventcomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt 12GVentComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:34:19.916Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:34:19.832Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt BeveledSilencer", + "itemId": "a4a5e170021d47629dc463e52a521c9d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_beveledsilencer", + "namespace": "pd3", + "name": "MOD BarrelExt BeveledSilencer", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:44:13.647Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:44:11.467Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt BeveledSilencer High", + "itemId": "dd767be070644ae98763122344b71a50", + "baseAppId": "", + "sku": "pd3_mod_barrelext_beveledsilencer_high", + "namespace": "pd3", + "name": "MOD BarrelExt BeveledSilencer High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:34:17.123Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:34:16.962Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt BeveledSilencer Low", + "itemId": "ac2ed906cb284a6aaaa8be9fef9eb573", + "baseAppId": "", + "sku": "pd3_mod_barrelext_beveledsilencer_low", + "namespace": "pd3", + "name": "MOD BarrelExt BeveledSilencer Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:33:15.235Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:33:15.136Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CompactComp", + "itemId": "7a3c5f1c2a674846882dcd8e3ccb9968", + "baseAppId": "", + "sku": "pd3_mod_barrelext_compactcomp", + "namespace": "pd3", + "name": "MOD BarrelExt CompactComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:27:48.644Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:27:46.504Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CompactComp High", + "itemId": "1e4b10af4d1242c5ae121c8dc7423f73", + "baseAppId": "", + "sku": "pd3_mod_barrelext_compactcomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt CompactComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:31:33.079Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:31:32.932Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CompactComp Low", + "itemId": "2b2dadeac50445bdb73c92317796d107", + "baseAppId": "", + "sku": "pd3_mod_barrelext_compactcomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt CompactComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:28:44.18Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:28:44.091Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CylindricComp", + "itemId": "3db2b8d358ad4e2fb9ab6b9b6ab6d1ab", + "baseAppId": "", + "sku": "pd3_mod_barrelext_cylindriccomp", + "namespace": "pd3", + "name": "MOD BarrelExt CylindricComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:46:23.623Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:46:21.509Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CylindricComp High", + "itemId": "ec9e1231ea694639bd65b548fee7b368", + "baseAppId": "", + "sku": "pd3_mod_barrelext_cylindriccomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt CylindricComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:26:38.722Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:26:38.569Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt CylindricComp Low", + "itemId": "ef2d653c92824c1990033b88ebd444fd", + "baseAppId": "", + "sku": "pd3_mod_barrelext_cylindriccomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt CylindricComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:15:58.898Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:15:58.816Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Express", + "itemId": "311490ee09d749eab7621e2200c7d409", + "baseAppId": "", + "sku": "pd3_mod_barrelext_express", + "namespace": "pd3", + "name": "MOD BarrelExt Express", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-18T12:21:55.191Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-18T12:21:53.761Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Express High", + "itemId": "39df727cf94144a19eb9abd36a1e8896", + "baseAppId": "", + "sku": "pd3_mod_barrelext_express_high", + "namespace": "pd3", + "name": "MOD BarrelExt Express High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:33:47.946Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:33:47.787Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Express Low", + "itemId": "1445c03d2a70435c91b997dd8db75bf0", + "baseAppId": "", + "sku": "pd3_mod_barrelext_express_low", + "namespace": "pd3", + "name": "MOD BarrelExt Express Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:32:15.674Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:32:15.599Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt HybridMB", + "itemId": "ba2356e8cb5f44119a607775fbca5227", + "baseAppId": "", + "sku": "pd3_mod_barrelext_hybridmb", + "namespace": "pd3", + "name": "MOD BarrelExt HybridMB", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:06:24.345Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:06:22.316Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt HybridMB High", + "itemId": "f5a50b465b5544e485bac3c4451c2089", + "baseAppId": "", + "sku": "pd3_mod_barrelext_hybridmb_high", + "namespace": "pd3", + "name": "MOD BarrelExt HybridMB High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:25:31.44Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:25:31.298Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt HybridMB Low", + "itemId": "af6dd6efad3e41acbd0de57fb9f10086", + "baseAppId": "", + "sku": "pd3_mod_barrelext_hybridmb_low", + "namespace": "pd3", + "name": "MOD BarrelExt HybridMB Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:11:21.131Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:11:21.086Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt IndentComp", + "itemId": "c53d2059cd8f4545beca4ea3c893aa11", + "baseAppId": "", + "sku": "pd3_mod_barrelext_indentcomp", + "namespace": "pd3", + "name": "MOD BarrelExt IndentComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:12:41.337Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:12:39.24Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt IndentComp High", + "itemId": "4118cbf10b7149d1bc701f4b2ca0a2de", + "baseAppId": "", + "sku": "pd3_mod_barrelext_indentcomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt IndentComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:26:09.12Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:26:08.967Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt IndentComp Low", + "itemId": "6cd9cde031fb46c1996e889a04ce3cd6", + "baseAppId": "", + "sku": "pd3_mod_barrelext_indentcomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt IndentComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:12:42.205Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:12:42.132Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt JawChoke", + "itemId": "74a754e8f1eb45df9f7da2a324971268", + "baseAppId": "", + "sku": "pd3_mod_barrelext_jawchoke", + "namespace": "pd3", + "name": "MOD BarrelExt JawChoke", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:06:19.701Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:06:17.572Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt JawChoke High", + "itemId": "f1132e7276394f02a0dda2471f733e62", + "baseAppId": "", + "sku": "pd3_mod_barrelext_jawchoke_high", + "namespace": "pd3", + "name": "MOD BarrelExt JawChoke High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:28:26.775Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:28:26.619Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt JawChoke Low", + "itemId": "ef2758e0d2ae4e60bcc0386c9f40298d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_jawchoke_low", + "namespace": "pd3", + "name": "MOD BarrelExt JawChoke Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:21:09.765Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:21:09.688Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt ObeliskSilencer", + "itemId": "9bff2fd9b30446e7b43c807771d91b82", + "baseAppId": "", + "sku": "pd3_mod_barrelext_obelisksilencer", + "namespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:14:56.313Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:14:54.14Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt ObeliskSilencer High", + "itemId": "3fe6adc00921471696f709e53ec34147", + "baseAppId": "", + "sku": "pd3_mod_barrelext_obelisksilencer_high", + "namespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:33:16.605Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:33:16.445Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt ObeliskSilencer Low", + "itemId": "fb9b28f96b6541f8840eedcae64d8567", + "baseAppId": "", + "sku": "pd3_mod_barrelext_obelisksilencer_low", + "namespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:31:36.881Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:31:36.782Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt ObeliskSilencer Zero", + "itemId": "eab464ee27e74fed9f4ead8162cd1e28", + "baseAppId": "", + "sku": "pd3_mod_barrelext_obelisksilencer_zero", + "namespace": "pd3", + "name": "MOD BarrelExt ObeliskSilencer Zero", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-14T10:16:53.128Z", + "discountPurchaseAt": "2023-02-14T10:16:53.128Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-14T10:16:53.182Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PartedComp", + "itemId": "51f025d0018a4ee2ade7e3944ab51351", + "baseAppId": "", + "sku": "pd3_mod_barrelext_partedcomp", + "namespace": "pd3", + "name": "MOD BarrelExt PartedComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:09:23.874Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:09:21.709Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PartedComp High", + "itemId": "9137646e808a4bf6933e3bb9b3f56b68", + "baseAppId": "", + "sku": "pd3_mod_barrelext_partedcomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt PartedComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:32:45.209Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:32:45.05Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PartedComp Low", + "itemId": "aa938f746bca4f1f9d3a59d16b06a44a", + "baseAppId": "", + "sku": "pd3_mod_barrelext_partedcomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt PartedComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:30:48.548Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:30:48.467Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PipedSilencer", + "itemId": "9abb2ba59dcc4907820705f6f2ad31a2", + "baseAppId": "", + "sku": "pd3_mod_barrelext_pipedsilencer", + "namespace": "pd3", + "name": "MOD BarrelExt PipedSilencer", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:51:25.277Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:51:23.157Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PipedSilencer High", + "itemId": "d9ca61b7d4f8471fbd4c02aeff36c7bc", + "baseAppId": "", + "sku": "pd3_mod_barrelext_pipedsilencer_high", + "namespace": "pd3", + "name": "MOD BarrelExt PipedSilencer High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:27:02.664Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:27:02.515Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt PipedSilencer Low", + "itemId": "9764e829162d4bfbb98f84280b9a2268", + "baseAppId": "", + "sku": "pd3_mod_barrelext_pipedsilencer_low", + "namespace": "pd3", + "name": "MOD BarrelExt PipedSilencer Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:17:06.67Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:17:06.626Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Ridged", + "itemId": "b6e094027882432d83e29b2577e049fe", + "baseAppId": "", + "sku": "pd3_mod_barrelext_ridged", + "namespace": "pd3", + "name": "MOD BarrelExt Ridged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:19:10.371Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:19:08.239Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Ridged High", + "itemId": "eb0683b3544942379183c7cca3dbe3ca", + "baseAppId": "", + "sku": "pd3_mod_barrelext_ridged_high", + "namespace": "pd3", + "name": "MOD BarrelExt Ridged High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:31:02.822Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:31:02.664Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Ridged Low", + "itemId": "a22f7d2c4bf24f50a445912569d71a45", + "baseAppId": "", + "sku": "pd3_mod_barrelext_ridged_low", + "namespace": "pd3", + "name": "MOD BarrelExt Ridged Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:27:55.524Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:27:55.455Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SedimentChoke", + "itemId": "7f32547e0c6e4a1dbf01e58204c9267f", + "baseAppId": "", + "sku": "pd3_mod_barrelext_sedimentchoke", + "namespace": "pd3", + "name": "MOD BarrelExt SedimentChoke", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:57:09.462Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:57:07.343Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SedimentChoke High", + "itemId": "9f1f19c3e23543b99a4208cadd9e92f8", + "baseAppId": "", + "sku": "pd3_mod_barrelext_sedimentchoke_high", + "namespace": "pd3", + "name": "MOD BarrelExt SedimentChoke High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:27:54.82Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:27:54.683Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SedimentChoke Low", + "itemId": "f26a1db67e3f4ae2b14d663f9bc943f7", + "baseAppId": "", + "sku": "pd3_mod_barrelext_sedimentchoke_low", + "namespace": "pd3", + "name": "MOD BarrelExt SedimentChoke Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:19:44.603Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:19:44.519Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SkeletonizedComp", + "itemId": "0993ae5428894dbc83ebab0952288a4d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_skeletonizedcomp", + "namespace": "pd3", + "name": "MOD BarrelExt SkeletonizedComp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:33:13.653Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:33:11.505Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SkeletonizedComp High", + "itemId": "9ea325d3c4444157abef8cf0acf2529d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_skeletonizedcomp_high", + "namespace": "pd3", + "name": "MOD BarrelExt SkeletonizedComp High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:32:05.851Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:32:05.697Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SkeletonizedComp Low", + "itemId": "ea66f2f2403f444eb3630a383ae5c0bd", + "baseAppId": "", + "sku": "pd3_mod_barrelext_skeletonizedcomp_low", + "namespace": "pd3", + "name": "MOD BarrelExt SkeletonizedComp Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:29:28.559Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:29:28.505Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SnubSilencer", + "itemId": "ab569395951f458b9231bed55d4e152d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_snubsilencer", + "namespace": "pd3", + "name": "MOD BarrelExt SnubSilencer", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:08:55.906Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:08:53.775Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SnubSilencer High", + "itemId": "59c0338858a54a96b390975371660621", + "baseAppId": "", + "sku": "pd3_mod_barrelext_snubsilencer_high", + "namespace": "pd3", + "name": "MOD BarrelExt SnubSilencer High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:28:56.912Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:28:56.761Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt SnubSilencer Low", + "itemId": "598b1136cd2447bd9627eff3b15fc21d", + "baseAppId": "", + "sku": "pd3_mod_barrelext_snubsilencer_low", + "namespace": "pd3", + "name": "MOD BarrelExt SnubSilencer Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:22:54.888Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:22:54.82Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Torque", + "itemId": "72d494dc1fdb4711902fb280787a6159", + "baseAppId": "", + "sku": "pd3_mod_barrelext_torque", + "namespace": "pd3", + "name": "MOD BarrelExt Torque", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:15:25.619Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:15:23.487Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Torque High", + "itemId": "5881d7837cc140b8999fe19e97e034e7", + "baseAppId": "", + "sku": "pd3_mod_barrelext_torque_high", + "namespace": "pd3", + "name": "MOD BarrelExt Torque High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:30:15.755Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:30:15.598Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD BarrelExt Torque Low", + "itemId": "c42d0da4cec94a9aa3b9f51e330eecf9", + "baseAppId": "", + "sku": "pd3_mod_barrelext_torque_low", + "namespace": "pd3", + "name": "MOD BarrelExt Torque Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:25:46.443Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:25:46.355Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bison Barrel CQC", + "itemId": "457e98815f7b46c0b9719ce2f1945b7a", + "baseAppId": "", + "sku": "pd3_mod_bison_barrel_cqc", + "namespace": "pd3", + "name": "MOD Bison Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:20:32.583Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:20:32.318Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bison Barrel Ranged", + "itemId": "821272eec52f47ed9024b519b54895c5", + "baseAppId": "", + "sku": "pd3_mod_bison_barrel_ranged", + "namespace": "pd3", + "name": "MOD Bison Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:19:14.397Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:19:14.131Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bison Grip Biofit", + "itemId": "1d61b80f065e47f2a54c2fef8a33c65d", + "baseAppId": "", + "sku": "pd3_mod_bison_grip_biofit", + "namespace": "pd3", + "name": "MOD Bison Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:04:51.225Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:04:53.098Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bison Grip Hardwood", + "itemId": "df0b7f2859b64bbf9b8f3a1f9a56aa08", + "baseAppId": "", + "sku": "pd3_mod_bison_grip_hardwood", + "namespace": "pd3", + "name": "MOD Bison Grip Hardwood", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:02:47.776Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:02:49.658Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bison Grip Tac", + "itemId": "f63e7afc881440cc938295aec4d122fe", + "baseAppId": "", + "sku": "pd3_mod_bison_grip_tac", + "namespace": "pd3", + "name": "MOD Bison Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:59:12.274Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:59:14.16Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Barrel CQC", + "itemId": "0662bfa324b94a04912406a82690605e", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_barrel_cqc", + "namespace": "pd3", + "name": "MOD Bullkick500 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:22:44.52Z", + "discountPurchaseAt": "2024-02-14T14:22:44.52Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:22:45.472Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Barrel Ranged", + "itemId": "24bb253eb5a34ea3b7c844a4685b3290", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_barrel_ranged", + "namespace": "pd3", + "name": "MOD Bullkick500 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:23:42.471Z", + "discountPurchaseAt": "2024-02-14T14:23:42.471Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:23:43.417Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Barrel Tac", + "itemId": "0d01e68b258d495bb2435ac24cdd7455", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_barrel_tac", + "namespace": "pd3", + "name": "MOD Bullkick500 Barrel Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:24:43.266Z", + "discountPurchaseAt": "2024-02-14T14:24:43.266Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:24:44.212Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Grip Hardwood", + "itemId": "a9838da4323343a3951aa80141477c8c", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_grip_hardwood", + "namespace": "pd3", + "name": "MOD Bullkick500 Grip Hardwood", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-04T16:13:47.428Z", + "discountPurchaseAt": "2024-03-04T16:13:47.428Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-04T16:13:48.161Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Grip Tac", + "itemId": "4962e0f871ee48be8f0c99b104481099", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_grip_tac", + "namespace": "pd3", + "name": "MOD Bullkick500 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:25:24.14Z", + "discountPurchaseAt": "2024-02-14T14:25:24.14Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:25:25.086Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Bullkick500 Mag Unfluted", + "itemId": "c813aca89a3e425ebb7bfdcad6887484", + "baseAppId": "", + "sku": "pd3_mod_bullkick500_mag_unfluted", + "namespace": "pd3", + "name": "MOD Bullkick500 Mag Unfluted", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:27:00.163Z", + "discountPurchaseAt": "2024-02-14T14:27:00.163Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:27:01.113Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CAR4 Barrel CQC", + "itemId": "1244cd8469f840c19472e1f3bc3bcaec", + "baseAppId": "", + "sku": "pd3_mod_car4_barrel_cqc", + "namespace": "pd3", + "name": "MOD CAR4 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:29:15.668Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:29:15.446Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CAR4 Barrel Ranged", + "itemId": "8b126649eb4147bdbded6dc90919a580", + "baseAppId": "", + "sku": "pd3_mod_car4_barrel_ranged", + "namespace": "pd3", + "name": "MOD CAR4 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:33:46.192Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:33:45.961Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CAR4 Mag Compact", + "itemId": "56d854ef16b24894bf898924850d5e36", + "baseAppId": "", + "sku": "pd3_mod_car4_mag_compact", + "namespace": "pd3", + "name": "MOD CAR4 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:56:16.21Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:56:15.728Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CAR4 Mag Extended", + "itemId": "6fd919c2a03a43a78500ea82fd4358d5", + "baseAppId": "", + "sku": "pd3_mod_car4_mag_extended", + "namespace": "pd3", + "name": "MOD CAR4 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:54:26.262Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:54:25.784Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CAR4 Mag Quick", + "itemId": "5551f478b5ec494380c1f544e7cd49ab", + "baseAppId": "", + "sku": "pd3_mod_car4_mag_quick", + "namespace": "pd3", + "name": "MOD CAR4 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:47:44.705Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:47:44.233Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Barrel CQC", + "itemId": "b2d81d9c50ec4e328fb84b2c88212785", + "baseAppId": "", + "sku": "pd3_mod_chs3_barrel_cqc", + "namespace": "pd3", + "name": "MOD CHS3 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:31:49.787Z", + "discountPurchaseAt": "2024-06-24T13:31:49.787Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:31:31.287Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Barrel Ranged", + "itemId": "99723000323244cca455902a6ffc5f12", + "baseAppId": "", + "sku": "pd3_mod_chs3_barrel_ranged", + "namespace": "pd3", + "name": "MOD CHS3 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:32:44.545Z", + "discountPurchaseAt": "2024-06-24T13:32:44.545Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:32:26.002Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Mag Compact", + "itemId": "af9c03ed6ad34dc599ecad13c6c82c00", + "baseAppId": "", + "sku": "pd3_mod_chs3_mag_compact", + "namespace": "pd3", + "name": "MOD CHS3 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:36:52.093Z", + "discountPurchaseAt": "2024-06-24T13:36:52.093Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:36:33.553Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Mag Extended", + "itemId": "09a179c9ed8e450ea362adfab502c61c", + "baseAppId": "", + "sku": "pd3_mod_chs3_mag_extended", + "namespace": "pd3", + "name": "MOD CHS3 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:38:13.645Z", + "discountPurchaseAt": "2024-06-24T13:38:13.645Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:37:55.094Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Mag Quick", + "itemId": "5cba354edbbb4d85a44eb89607c0f520", + "baseAppId": "", + "sku": "pd3_mod_chs3_mag_quick", + "namespace": "pd3", + "name": "MOD CHS3 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:34:29.708Z", + "discountPurchaseAt": "2024-06-24T13:34:29.708Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:34:11.163Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Stock Fortified", + "itemId": "171aff2be2fa4b168be7726839e69d4e", + "baseAppId": "", + "sku": "pd3_mod_chs3_stock_fortified", + "namespace": "pd3", + "name": "MOD CHS3 Stock Fortified", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:42:49.978Z", + "discountPurchaseAt": "2024-06-24T13:42:49.978Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:42:31.428Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD CHS3 Stock Refined", + "itemId": "062144f0638c46b7aa3330746184c5c0", + "baseAppId": "", + "sku": "pd3_mod_chs3_stock_refined", + "namespace": "pd3", + "name": "MOD CHS3 Stock Refined", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-24T13:40:33.251Z", + "discountPurchaseAt": "2024-06-24T13:40:33.251Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-24T13:40:14.707Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Barrel CQC", + "itemId": "a46d88ccc3df45698d2c8c3244085dc5", + "baseAppId": "", + "sku": "pd3_mod_castigo44_barrel_cqc", + "namespace": "pd3", + "name": "MOD Castigo44 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:15:50.71Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:15:50.445Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Barrel Ranged", + "itemId": "d1a3e567e3db466698a382c1fa495147", + "baseAppId": "", + "sku": "pd3_mod_castigo44_barrel_ranged", + "namespace": "pd3", + "name": "MOD Castigo44 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:14:18.089Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:14:17.826Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Barrel Tac", + "itemId": "bc60cdc13d7746e0adb079818d42c695", + "baseAppId": "", + "sku": "pd3_mod_castigo44_barrel_tac", + "namespace": "pd3", + "name": "MOD Castigo44 Barrel Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:17:21.622Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:17:21.36Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Grip Biofit", + "itemId": "3975268d9add4ba19e489a703c40c584", + "baseAppId": "", + "sku": "pd3_mod_castigo44_grip_biofit", + "namespace": "pd3", + "name": "MOD Castigo44 Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:51:49.115Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:51:51.024Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Grip Hardwood", + "itemId": "738f330b6eac49d1891746564e0aed3f", + "baseAppId": "", + "sku": "pd3_mod_castigo44_grip_hardwood", + "namespace": "pd3", + "name": "MOD Castigo44 Grip Hardwood", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:56:10.487Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:56:12.381Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Castigo44 Grip Tac", + "itemId": "8040900ee6f942fa8278434ffb369b00", + "baseAppId": "", + "sku": "pd3_mod_castigo44_grip_tac", + "namespace": "pd3", + "name": "MOD Castigo44 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:54:02.285Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:54:04.184Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Commando Mag Compact", + "itemId": "c4773b8fb93644f0966eae0907655a01", + "baseAppId": "", + "sku": "pd3_mod_commando_mag_compact", + "namespace": "pd3", + "name": "MOD Commando Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:01:51.211Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:01:50.724Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Commando Mag Extended", + "itemId": "3ba3246607b546f48b2a94de51b8144d", + "baseAppId": "", + "sku": "pd3_mod_commando_mag_extended", + "namespace": "pd3", + "name": "MOD Commando Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:57:59.507Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:57:59.024Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Commando Mag Quick", + "itemId": "2004490973424f5fa8a38cd577ea204c", + "baseAppId": "", + "sku": "pd3_mod_commando_mag_quick", + "namespace": "pd3", + "name": "MOD Commando Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:00:09.437Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:00:08.954Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Compact7 Mag Compact", + "itemId": "bdbd6f7e9f6d486ea56b077707900b2b", + "baseAppId": "", + "sku": "pd3_mod_compact7_mag_compact", + "namespace": "pd3", + "name": "MOD Compact7 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:38:34.908Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:38:34.449Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Compact7 Mag Extended", + "itemId": "6c2c8ad4bae149dbba527fadf061be04", + "baseAppId": "", + "sku": "pd3_mod_compact7_mag_extended", + "namespace": "pd3", + "name": "MOD Compact7 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:35:20.65Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:35:20.189Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Compact7 Mag Quick", + "itemId": "f27f3fef44e445a9aa9579e53073922e", + "baseAppId": "", + "sku": "pd3_mod_compact7_mag_quick", + "namespace": "pd3", + "name": "MOD Compact7 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:36:54.902Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:36:54.439Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FIK22 Barrel CQC ", + "itemId": "dbe78126247440e1bacee7f60b90b7c7", + "baseAppId": "", + "sku": "pd3_mod_fik22_barrel_cqc", + "namespace": "pd3", + "name": "MOD FIK22 Barrel CQC ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:46:43.084Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:46:44.247Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FIK22 Barrel Ranged ", + "itemId": "8e7fda47db5048549e785c5ad7e6ecc9", + "baseAppId": "", + "sku": "pd3_mod_fik22_barrel_ranged", + "namespace": "pd3", + "name": "MOD FIK22 Barrel Ranged ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:45:30.885Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:45:32.045Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FIK22 Mag Compact ", + "itemId": "086fd69c620f47e28ce0ca58cb1047f5", + "baseAppId": "", + "sku": "pd3_mod_fik22_mag_compact", + "namespace": "pd3", + "name": "MOD FIK22 Mag Compact ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:49:33.337Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:49:34.511Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FIK22 Mag Extended ", + "itemId": "8c721a6ff0534476ad888f8cd51c6c5e", + "baseAppId": "", + "sku": "pd3_mod_fik22_mag_extended", + "namespace": "pd3", + "name": "MOD FIK22 Mag Extended ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:47:51.034Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:47:52.198Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FIK22 Mag Quick ", + "itemId": "48995a315d7748debc5247d086782a67", + "baseAppId": "", + "sku": "pd3_mod_fik22_mag_quick", + "namespace": "pd3", + "name": "MOD FIK22 Mag Quick ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:50:46.56Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:50:47.736Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FSA12 Barrel CQC ", + "itemId": "a0aef83e62fc4924b0ef45c1231193a6", + "baseAppId": "", + "sku": "pd3_mod_fsa12_barrel_cqc", + "namespace": "pd3", + "name": "MOD FSA12 Barrel CQC ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:33:34.74Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:33:35.868Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FSA12 Barrel Ranged ", + "itemId": "9c4f0897e89344dba7046aacd05dd5fb", + "baseAppId": "", + "sku": "pd3_mod_fsa12_barrel_ranged", + "namespace": "pd3", + "name": "MOD FSA12 Barrel Ranged ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:35:07.589Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:35:08.738Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FSA12 Mag Compact ", + "itemId": "0e04713e183b48d6bcc99db840b7ae34", + "baseAppId": "", + "sku": "pd3_mod_fsa12_mag_compact", + "namespace": "pd3", + "name": "MOD FSA12 Mag Compact ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:39:39.421Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:39:40.588Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FSA12 Mag Extended ", + "itemId": "3af25c1438af48cb82c402f09e3df4e1", + "baseAppId": "", + "sku": "pd3_mod_fsa12_mag_extended", + "namespace": "pd3", + "name": "MOD FSA12 Mag Extended ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:38:00.592Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:38:01.753Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD FSA12 Mag Quick ", + "itemId": "bbd81ba64f9b4f889d9fcd16912acd38", + "baseAppId": "", + "sku": "pd3_mod_fsa12_mag_quick", + "namespace": "pd3", + "name": "MOD FSA12 Mag Quick ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:40:35.628Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:40:36.789Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Barrel ForceVentCut", + "itemId": "fb528c94a620438aa34103ebd30ebc13", + "baseAppId": "", + "sku": "pd3_mod_gv50_barrel_forceventcut", + "namespace": "pd3", + "name": "MOD GV50 Barrel ForceVentCut", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:18:22.89Z", + "discountPurchaseAt": "2024-07-25T13:18:22.89Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:17:48.666Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Barrel LeadReach", + "itemId": "d6299570398a41df9ac96d4e7602c756", + "baseAppId": "", + "sku": "pd3_mod_gv50_barrel_leadreach", + "namespace": "pd3", + "name": "MOD GV50 Barrel LeadReach", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:13:07.597Z", + "discountPurchaseAt": "2024-07-25T13:13:07.597Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:12:33.389Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Barrel SBallers", + "itemId": "0a8360e4e3cc4372874312199ef1c648", + "baseAppId": "", + "sku": "pd3_mod_gv50_barrel_sballers", + "namespace": "pd3", + "name": "MOD GV50 Barrel SBallers", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:20:50.981Z", + "discountPurchaseAt": "2024-07-25T13:20:50.981Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:20:16.75Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Barrel WhittledFit", + "itemId": "730a07312ce9429cb1ba3991f92781f9", + "baseAppId": "", + "sku": "pd3_mod_gv50_barrel_whittledfit", + "namespace": "pd3", + "name": "MOD GV50 Barrel WhittledFit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:15:11.403Z", + "discountPurchaseAt": "2024-07-25T13:15:11.403Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:14:37.174Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Grip CoarseErgo", + "itemId": "bd625146e9354ebabcf0df9bfc0c2960", + "baseAppId": "", + "sku": "pd3_mod_gv50_grip_coarseergo", + "namespace": "pd3", + "name": "MOD GV50 Grip CoarseErgo", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:24:58.941Z", + "discountPurchaseAt": "2024-07-25T13:24:58.941Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:24:24.716Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Grip RedwoodClassic", + "itemId": "f17b0942b0244081988ae8fb7c86210c", + "baseAppId": "", + "sku": "pd3_mod_gv50_grip_redwoodclassic", + "namespace": "pd3", + "name": "MOD GV50 Grip RedwoodClassic", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:26:04.968Z", + "discountPurchaseAt": "2024-07-25T13:26:04.968Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:25:30.748Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD GV50 Mag Extended", + "itemId": "53988e9e39024933b57aea484949ff17", + "baseAppId": "", + "sku": "pd3_mod_gv50_mag_extended", + "namespace": "pd3", + "name": "MOD GV50 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:27:21.319Z", + "discountPurchaseAt": "2024-07-25T13:27:21.319Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:26:47.087Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Biofit", + "itemId": "d6e3a0939b0649c49225f2032b1833cf", + "baseAppId": "", + "sku": "pd3_mod_grip_biofit", + "namespace": "pd3", + "name": "MOD Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:38:23.19Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:38:25.452Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Biofit High", + "itemId": "e22111215d6c4388bae5892dc8cc7fb0", + "baseAppId": "", + "sku": "pd3_mod_grip_biofit_high", + "namespace": "pd3", + "name": "MOD Grip Biofit High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:48:36.75Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:48:36.583Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Biofit Low", + "itemId": "6390a3ce3755466ba94b035ea7032170", + "baseAppId": "", + "sku": "pd3_mod_grip_biofit_low", + "namespace": "pd3", + "name": "MOD Grip Biofit Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:57:57.808Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:57:57.709Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Perforated", + "itemId": "b4e8b78464214cf5a2a50d65b2cc2ae8", + "baseAppId": "", + "sku": "pd3_mod_grip_perforated", + "namespace": "pd3", + "name": "MOD Grip Perforated", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:40:58.829Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:41:01.097Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Perforated High", + "itemId": "7771ec8015d94301b1e2c049ff6d5586", + "baseAppId": "", + "sku": "pd3_mod_grip_perforated_high", + "namespace": "pd3", + "name": "MOD Grip Perforated High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:50:30.007Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:50:29.836Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Perforated Low", + "itemId": "b54757580dbe406d99eeaa4281957efe", + "baseAppId": "", + "sku": "pd3_mod_grip_perforated_low", + "namespace": "pd3", + "name": "MOD Grip Perforated Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:59:40.885Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:59:40.76Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Tac", + "itemId": "945a3ffbe2394cdc976765d1a108a990", + "baseAppId": "", + "sku": "pd3_mod_grip_tac", + "namespace": "pd3", + "name": "MOD Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:39:46.96Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:39:49.219Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Tac High", + "itemId": "888e634e85d549658af1171988ad4b2d", + "baseAppId": "", + "sku": "pd3_mod_grip_tac_high", + "namespace": "pd3", + "name": "MOD Grip Tac High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:49:43.405Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:49:43.241Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Grip Tac Low", + "itemId": "fad3334008bb4fc4aceea6e709404079", + "baseAppId": "", + "sku": "pd3_mod_grip_tac_low", + "namespace": "pd3", + "name": "MOD Grip Tac Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:59:03.633Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:59:03.512Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Barrel Rail", + "itemId": "202233ed595d4b6cb6cfe6e851645150", + "baseAppId": "", + "sku": "pd3_mod_ku59_barrel_rail", + "namespace": "pd3", + "name": "MOD KU59 Barrel Rail", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:42:57.319Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:42:57.08Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Barrel TradGrip", + "itemId": "577aaaf2ad8c47cca94c279f0c01d8cb", + "baseAppId": "", + "sku": "pd3_mod_ku59_barrel_tradgrip", + "namespace": "pd3", + "name": "MOD KU59 Barrel TradGrip", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:45:27.456Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:45:27.216Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Grip Biofit", + "itemId": "31acebf19e7a414a8e3652be1b4f7c09", + "baseAppId": "", + "sku": "pd3_mod_ku59_grip_biofit", + "namespace": "pd3", + "name": "MOD KU59 Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:10:46.46Z", + "discountPurchaseAt": "2022-11-17T12:10:46.46Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:10:48.324Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Grip Perforated", + "itemId": "691082cc8b3c4f39be3ec0d594adb27b", + "baseAppId": "", + "sku": "pd3_mod_ku59_grip_perforated", + "namespace": "pd3", + "name": "MOD KU59 Grip Perforated", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:14:25.727Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:14:27.596Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Grip Tac", + "itemId": "183a3bea76c34d1f8218287ef0decb89", + "baseAppId": "", + "sku": "pd3_mod_ku59_grip_tac", + "namespace": "pd3", + "name": "MOD KU59 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:12:32.912Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:12:34.767Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Mag Compact", + "itemId": "038673a915354691ada83fa7a92d4c6a", + "baseAppId": "", + "sku": "pd3_mod_ku59_mag_compact", + "namespace": "pd3", + "name": "MOD KU59 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:33:36.709Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:33:36.249Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Mag Extended", + "itemId": "e36bb928eefe43628257d6baedc5c9bf", + "baseAppId": "", + "sku": "pd3_mod_ku59_mag_extended", + "namespace": "pd3", + "name": "MOD KU59 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:31:51.129Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:31:50.672Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD KU59 Mag Quick", + "itemId": "1bd766bc1248417e947dfcc852ac6457", + "baseAppId": "", + "sku": "pd3_mod_ku59_mag_quick", + "namespace": "pd3", + "name": "MOD KU59 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:26:35.561Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:26:35.114Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Barrel CQC", + "itemId": "5e2dba0013bf45dbb86a9e4066cf320e", + "baseAppId": "", + "sku": "pd3_mod_m7p_barrel_cqc", + "namespace": "pd3", + "name": "MOD M7P Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:09:36.888Z", + "discountPurchaseAt": "2024-06-25T15:09:36.888Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-25T15:09:16.778Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Barrel Ranged", + "itemId": "4b265bb026b4417d9de99caa05548310", + "baseAppId": "", + "sku": "pd3_mod_m7p_barrel_ranged", + "namespace": "pd3", + "name": "MOD M7P Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:10:44.057Z", + "discountPurchaseAt": "2024-06-25T15:10:44.057Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-25T15:10:23.938Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Mag Compact", + "itemId": "e0203cc6c15445c39a76889eaa61b906", + "baseAppId": "", + "sku": "pd3_mod_m7p_mag_compact", + "namespace": "pd3", + "name": "MOD M7P Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:14:50.067Z", + "discountPurchaseAt": "2024-06-25T15:14:50.067Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-25T15:14:29.95Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Mag Extended", + "itemId": "31a5aff33cb945b0986666f93d3e708c", + "baseAppId": "", + "sku": "pd3_mod_m7p_mag_extended", + "namespace": "pd3", + "name": "MOD M7P Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:13:29.563Z", + "discountPurchaseAt": "2024-06-25T15:13:29.563Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-25T15:13:09.444Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Mag Quick", + "itemId": "b1d9ff8a4cd44a74abed574517e76d5e", + "baseAppId": "", + "sku": "pd3_mod_m7p_mag_quick", + "namespace": "pd3", + "name": "MOD M7P Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-25T15:12:45.775Z", + "discountPurchaseAt": "2024-06-25T15:12:45.775Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-25T15:12:25.668Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD M7P Stock Bolstered", + "itemId": "d1f528142ba24072924d9754900e7dab", + "baseAppId": "", + "sku": "pd3_mod_m7p_stock_bolstered", + "namespace": "pd3", + "name": "MOD M7P Stock Bolstered", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T10:57:04.907Z", + "discountPurchaseAt": "2024-06-27T10:57:04.907Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T10:56:42.108Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD MX63 Barrel CQC", + "itemId": "43f4dc49de37400b97caf76900477b5e", + "baseAppId": "", + "sku": "pd3_mod_mx63_barrel_cqc", + "namespace": "pd3", + "name": "MOD MX63 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-15T11:07:30.37Z", + "discountPurchaseAt": "2024-05-15T11:07:30.37Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-05-15T11:07:16.803Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD MX63 Barrel Ranged", + "itemId": "a5e013fd7c7a45638a43344836d7ff24", + "baseAppId": "", + "sku": "pd3_mod_mx63_barrel_ranged", + "namespace": "pd3", + "name": "MOD MX63 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-15T11:08:24.982Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-05-15T11:08:11.417Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Mosconi12C Barrel CQC", + "itemId": "08ab9b885fca4acda0c1eac81cfea531", + "baseAppId": "", + "sku": "pd3_mod_mosconi12c_barrel_cqc", + "namespace": "pd3", + "name": "MOD Mosconi12C Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:58:06.31Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:58:06.061Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Mosconi12C Barrel Ranged", + "itemId": "4731fa450c574a9cb5e4caf21297e9c6", + "baseAppId": "", + "sku": "pd3_mod_mosconi12c_barrel_ranged", + "namespace": "pd3", + "name": "MOD Mosconi12C Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:59:36.21Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:59:35.957Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Mosconi12C Stock CQC", + "itemId": "fee628c71279410d8e301ff2b1c35a8c", + "baseAppId": "", + "sku": "pd3_mod_mosconi12c_stock_cqc", + "namespace": "pd3", + "name": "MOD Mosconi12C Stock CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:19:02.983Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:19:04.67Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Mosconi12C Stock Fortified", + "itemId": "9e55aa72c6414e0caf5865e834d3f1b2", + "baseAppId": "", + "sku": "pd3_mod_mosconi12c_stock_fortified", + "namespace": "pd3", + "name": "MOD Mosconi12C Stock Fortified", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:20:56.943Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:20:58.622Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Mosconi12C Stock Padded", + "itemId": "04ecae2516484a2793a6a81c3080e6ee", + "baseAppId": "", + "sku": "pd3_mod_mosconi12c_stock_padded", + "namespace": "pd3", + "name": "MOD Mosconi12C Stock Padded", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:20:05.762Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:20:07.447Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD NWB9 Mag Compact", + "itemId": "95ed2fc9e6344b38896965c06ac2397b", + "baseAppId": "", + "sku": "pd3_mod_nwb9_mag_compact", + "namespace": "pd3", + "name": "MOD NWB9 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:46:03.775Z", + "discountPurchaseAt": "2022-11-17T12:46:03.775Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:46:03.303Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD NWB9 Mag Extended", + "itemId": "131eb28f2a6147b69e069e34caf06b2c", + "baseAppId": "", + "sku": "pd3_mod_nwb9_mag_extended", + "namespace": "pd3", + "name": "MOD NWB9 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:44:31.639Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:44:31.169Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD NWB9 Mag Quick", + "itemId": "65d3a5c0af4c4a87ad34b2cd78bdca4e", + "baseAppId": "", + "sku": "pd3_mod_nwb9_mag_quick", + "namespace": "pd3", + "name": "MOD NWB9 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:41:03.405Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:41:02.956Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PC9 Mag Compact", + "itemId": "85e32b8d523c4e8aa2d4964930516a2f", + "baseAppId": "", + "sku": "pd3_mod_pc9_mag_compact", + "namespace": "pd3", + "name": "MOD PC9 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:06:43.482Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:06:43Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PC9 Mag Extended", + "itemId": "32dac3230aa3468784bf9943b116f5b2", + "baseAppId": "", + "sku": "pd3_mod_pc9_mag_extended", + "namespace": "pd3", + "name": "MOD PC9 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:03:38.337Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:03:37.848Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PC9 Mag Quick", + "itemId": "b23a93f1fb784b1ea1451118e51cc494", + "baseAppId": "", + "sku": "pd3_mod_pc9_mag_quick", + "namespace": "pd3", + "name": "MOD PC9 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:05:17.299Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:05:16.829Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PD5 Grip Premier", + "itemId": "165c39dc72384039a43f5c580ec65302", + "baseAppId": "", + "sku": "pd3_mod_pd5_grip_premier", + "namespace": "pd3", + "name": "MOD PD5 Grip Premier", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T12:20:30.742Z", + "discountPurchaseAt": "2024-06-27T12:20:30.742Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T12:20:07.855Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PD5 Grip Tac", + "itemId": "a81a52816fae4d40ace13c36b71194d5", + "baseAppId": "", + "sku": "pd3_mod_pd5_grip_tac", + "namespace": "pd3", + "name": "MOD PD5 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T12:19:25.986Z", + "discountPurchaseAt": "2024-06-27T12:19:25.986Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T12:19:03.101Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PD5 Mag Extended", + "itemId": "2ba3cf85843644b2a1cb9da697a297b8", + "baseAppId": "", + "sku": "pd3_mod_pd5_mag_extended", + "namespace": "pd3", + "name": "MOD PD5 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T12:11:19.93Z", + "discountPurchaseAt": "2024-06-27T12:11:19.93Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T12:10:57.051Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PD5 Mag Quick", + "itemId": "1ac4f692349044fda1b1cfaf40936fde", + "baseAppId": "", + "sku": "pd3_mod_pd5_mag_quick", + "namespace": "pd3", + "name": "MOD PD5 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T12:12:03.707Z", + "discountPurchaseAt": "2024-06-27T12:12:03.707Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T12:11:40.833Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD PD5 Stock Combat", + "itemId": "b250e3397c4049c3bf6b5ab19d823c79", + "baseAppId": "", + "sku": "pd3_mod_pd5_stock_combat", + "namespace": "pd3", + "name": "MOD PD5 Stock Combat", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T11:21:58.9Z", + "discountPurchaseAt": "2024-06-27T11:21:58.9Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T11:21:36.08Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Barrel CQC", + "itemId": "0ba573010f2841d9a996683495ed0ebb", + "baseAppId": "", + "sku": "pd3_mod_r880_barrel_cqc", + "namespace": "pd3", + "name": "MOD R880 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:49:03.54Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:49:03.293Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Barrel Comp", + "itemId": "23e0357915d44e3c8a8533cb6d2b3810", + "baseAppId": "", + "sku": "pd3_mod_r880_barrel_comp", + "namespace": "pd3", + "name": "MOD R880 Barrel Comp", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:52:40.795Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:52:40.549Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Barrel Ranged", + "itemId": "d8bf2739f85947e384e03b66206dc0b7", + "baseAppId": "", + "sku": "pd3_mod_r880_barrel_ranged", + "namespace": "pd3", + "name": "MOD R880 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:51:17.092Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:51:16.844Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Foregrip Biofit", + "itemId": "af2311468e9e4eda8653ae926713123e", + "baseAppId": "", + "sku": "pd3_mod_r880_foregrip_biofit", + "namespace": "pd3", + "name": "MOD R880 Foregrip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Foregrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:21:55.41Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:21:55.144Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Foregrip Tactical", + "itemId": "1d950bf7fc5d47c5875a107f9afe61a3", + "baseAppId": "", + "sku": "pd3_mod_r880_foregrip_tactical", + "namespace": "pd3", + "name": "MOD R880 Foregrip Tactical", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Foregrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:24:53.766Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:24:53.494Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Stock CQC", + "itemId": "f4af3abf5e454a5da466cff524594731", + "baseAppId": "", + "sku": "pd3_mod_r880_stock_cqc", + "namespace": "pd3", + "name": "MOD R880 Stock CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:14:02.919Z", + "discountPurchaseAt": "2022-11-17T13:14:02.919Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 0, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:14:04.622Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Stock Fortified", + "itemId": "738cc288c5834c0fb9071d5795028f9b", + "baseAppId": "", + "sku": "pd3_mod_r880_stock_fortified", + "namespace": "pd3", + "name": "MOD R880 Stock Fortified", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:15:18.763Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:15:20.461Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R880 Stock Padded", + "itemId": "fad166c667994e839bde6ef49e0bc9c8", + "baseAppId": "", + "sku": "pd3_mod_r880_stock_padded", + "namespace": "pd3", + "name": "MOD R880 Stock Padded", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:12:58.403Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:13:00.106Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R900S Barrel CQC", + "itemId": "923044a89fa94c089eac3798d5508de8", + "baseAppId": "", + "sku": "pd3_mod_r900s_barrel_cqc", + "namespace": "pd3", + "name": "MOD R900S Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:10:36.941Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:10:36.683Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R900S Barrel Ranged", + "itemId": "fe71976f34494d5f8e1e4cdabc1526fb", + "baseAppId": "", + "sku": "pd3_mod_r900s_barrel_ranged", + "namespace": "pd3", + "name": "MOD R900S Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:12:09.813Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:12:09.554Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R900S Mag Extended", + "itemId": "8a1bdac3496240d0a667cf81712d48eb", + "baseAppId": "", + "sku": "pd3_mod_r900s_mag_extended", + "namespace": "pd3", + "name": "MOD R900S Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:12:26.657Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:12:26.159Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R900S Stock Hardwood", + "itemId": "aa855287a9ea43d7a38d43134fcda2b3", + "baseAppId": "", + "sku": "pd3_mod_r900s_stock_hardwood", + "namespace": "pd3", + "name": "MOD R900S Stock Hardwood", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:23:40.478Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:23:42.153Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD R900S Stock Lightweight", + "itemId": "77f76d4cd24a4ecfb6f4605fae9707da", + "baseAppId": "", + "sku": "pd3_mod_r900s_stock_lightweight", + "namespace": "pd3", + "name": "MOD R900S Stock Lightweight", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:24:43.621Z", + "discountPurchaseAt": "2022-11-17T13:24:43.621Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:24:45.29Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Barrel CQC", + "itemId": "e8eb4c366bdb49389a27bb711b348330", + "baseAppId": "", + "sku": "pd3_mod_rg5_barrel_cqc", + "namespace": "pd3", + "name": "MOD RG5 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:39:36.056Z", + "discountPurchaseAt": "2024-02-14T14:39:36.056Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:39:37.023Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Barrel Ranged", + "itemId": "096f16f6207d4de4a0e50ae666608196", + "baseAppId": "", + "sku": "pd3_mod_rg5_barrel_ranged", + "namespace": "pd3", + "name": "MOD RG5 Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:40:16.861Z", + "discountPurchaseAt": "2024-02-14T14:40:16.861Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:40:17.832Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Grip Biofit", + "itemId": "78bb7ba5217c4e79a49393b8c67e25e1", + "baseAppId": "", + "sku": "pd3_mod_rg5_grip_biofit", + "namespace": "pd3", + "name": "MOD RG5 Grip Biofit", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:44:43.271Z", + "discountPurchaseAt": "2024-02-14T14:44:43.271Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:44:44.252Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Grip Lightweight", + "itemId": "dbbc490554094fbc9ac6178aacf989d7", + "baseAppId": "", + "sku": "pd3_mod_rg5_grip_lightweight", + "namespace": "pd3", + "name": "MOD RG5 Grip Lightweight", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:46:19.815Z", + "discountPurchaseAt": "2024-02-14T14:46:19.815Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:46:20.788Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Grip Tac", + "itemId": "012263300ded4697b3ed33b305dc5506", + "baseAppId": "", + "sku": "pd3_mod_rg5_grip_tac", + "namespace": "pd3", + "name": "MOD RG5 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:45:41.438Z", + "discountPurchaseAt": "2024-02-14T14:45:41.438Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:45:42.419Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Mag Compact", + "itemId": "9c557e4398ed497aa46475b659d6fe71", + "baseAppId": "", + "sku": "pd3_mod_rg5_mag_compact", + "namespace": "pd3", + "name": "MOD RG5 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:37:39.713Z", + "discountPurchaseAt": "2024-02-14T14:37:39.713Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:37:40.687Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Mag Extended", + "itemId": "1b0cea4f66734cbd97e8c71a55537d78", + "baseAppId": "", + "sku": "pd3_mod_rg5_mag_extended", + "namespace": "pd3", + "name": "MOD RG5 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:38:19.695Z", + "discountPurchaseAt": "2024-02-14T14:38:19.695Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:38:20.654Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Mag Quick", + "itemId": "75ffce5effa745419ca0832bba8dcd1c", + "baseAppId": "", + "sku": "pd3_mod_rg5_mag_quick", + "namespace": "pd3", + "name": "MOD RG5 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:36:47.24Z", + "discountPurchaseAt": "2024-02-14T14:36:47.24Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:36:48.204Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Stock HQ", + "itemId": "65b4de541e064b4e8335234f817e7b06", + "baseAppId": "", + "sku": "pd3_mod_rg5_stock_hq", + "namespace": "pd3", + "name": "MOD RG5 Stock HQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:42:20.119Z", + "discountPurchaseAt": "2024-02-14T14:42:20.119Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:42:21.091Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Stock Lightweight", + "itemId": "6cd38fa65f494942bfd19492f2d94e3c", + "baseAppId": "", + "sku": "pd3_mod_rg5_stock_lightweight", + "namespace": "pd3", + "name": "MOD RG5 Stock Lightweight", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:41:00.564Z", + "discountPurchaseAt": "2024-02-14T14:41:00.564Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:41:01.533Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD RG5 Stock TQ", + "itemId": "b41b98bd671741ebb84762b1a614a2aa", + "baseAppId": "", + "sku": "pd3_mod_rg5_stock_tq", + "namespace": "pd3", + "name": "MOD RG5 Stock TQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T14:41:45.589Z", + "discountPurchaseAt": "2024-02-14T14:41:45.589Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-02-14T14:41:46.554Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 BarrelExt None", + "itemId": "f554e3e84adf4730a9d9fefcfc32dfab", + "baseAppId": "", + "sku": "pd3_mod_s40_barrelext_none", + "namespace": "pd3", + "name": "MOD S40 BarrelExt None", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-24T09:21:57.155Z", + "discountPurchaseAt": "2023-05-24T09:21:57.155Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-24T09:21:57.145Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 Grip Embossed", + "itemId": "8a5e321490734b25b1a5f9593e54d17f", + "baseAppId": "", + "sku": "pd3_mod_s40_grip_embossed", + "namespace": "pd3", + "name": "MOD S40 Grip Embossed", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:31:53.265Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:31:55.385Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 Grip Hardwood", + "itemId": "e88d8b17a3df4a8992543c5e9ad3d9de", + "baseAppId": "", + "sku": "pd3_mod_s40_grip_hardwood", + "namespace": "pd3", + "name": "MOD S40 Grip Hardwood", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:28:17.864Z", + "discountPurchaseAt": "2022-11-17T10:28:17.864Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:28:20.36Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 Grip Tac", + "itemId": "91f375f1dd134360bf69fa69694e55fc", + "baseAppId": "", + "sku": "pd3_mod_s40_grip_tac", + "namespace": "pd3", + "name": "MOD S40 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:30:07.219Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:30:09.348Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 Mag Extended", + "itemId": "987523aaa67d40d29d72889d537c740b", + "baseAppId": "", + "sku": "pd3_mod_s40_mag_extended", + "namespace": "pd3", + "name": "MOD S40 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:22:11.782Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:22:11.279Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S40 Mag Quick", + "itemId": "6054cbf2abf340878b3432251cd5e517", + "baseAppId": "", + "sku": "pd3_mod_s40_mag_quick", + "namespace": "pd3", + "name": "MOD S40 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:23:44.664Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:23:44.156Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S403 Grip Friction", + "itemId": "43a93c295bca4a808bff8f3fe0fdf860", + "baseAppId": "", + "sku": "pd3_mod_s403_grip_friction", + "namespace": "pd3", + "name": "MOD S403 Grip Friction", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:14:12.542Z", + "discountPurchaseAt": "2022-11-17T10:14:12.542Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:14:14.717Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S403 Grip Grained", + "itemId": "10d190443d55410897b53aca4b03f19f", + "baseAppId": "", + "sku": "pd3_mod_s403_grip_grained", + "namespace": "pd3", + "name": "MOD S403 Grip Grained", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:20:26.353Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 0, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:20:28.508Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S403 Grip Ribbed", + "itemId": "90a3b77758ff459892bf7f2b2d201340", + "baseAppId": "", + "sku": "pd3_mod_s403_grip_ribbed", + "namespace": "pd3", + "name": "MOD S403 Grip Ribbed", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:17:39.43Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:17:41.59Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S403 Mag Extended", + "itemId": "9cd0b55ae18944718b3bd91a55d5bc33", + "baseAppId": "", + "sku": "pd3_mod_s403_mag_extended", + "namespace": "pd3", + "name": "MOD S403 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:19:15.851Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:19:15.349Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD S403 Mag Quick", + "itemId": "d4b7e543dd66411eb7467a7dcd0abac9", + "baseAppId": "", + "sku": "pd3_mod_s403_mag_quick", + "namespace": "pd3", + "name": "MOD S403 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:20:46.026Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:20:45.523Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Grip ShockPanel", + "itemId": "86113b9afd8249bb8041146fbeae6bcc", + "baseAppId": "", + "sku": "pd3_mod_se5_grip_shockpanel", + "namespace": "pd3", + "name": "MOD SE5 Grip ShockPanel", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:48:46.727Z", + "discountPurchaseAt": "2024-07-25T13:48:46.727Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:48:12.47Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Grip SigmaPane", + "itemId": "9b11eabe77a44ecda319b96150a6ef4a", + "baseAppId": "", + "sku": "pd3_mod_se5_grip_sigmapane", + "namespace": "pd3", + "name": "MOD SE5 Grip SigmaPane", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:46:21.372Z", + "discountPurchaseAt": "2024-07-25T13:46:21.372Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:45:47.114Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Grip StrafedHandle", + "itemId": "52201e8fef824b90a5fd13f60c6cd84f", + "baseAppId": "", + "sku": "pd3_mod_se5_grip_strafedhandle", + "namespace": "pd3", + "name": "MOD SE5 Grip StrafedHandle", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:47:58.375Z", + "discountPurchaseAt": "2024-07-25T13:47:58.375Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:47:24.112Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Mag Extended", + "itemId": "b5311b4a6a124c0aa7d29c76fe086272", + "baseAppId": "", + "sku": "pd3_mod_se5_mag_extended", + "namespace": "pd3", + "name": "MOD SE5 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:49:49.447Z", + "discountPurchaseAt": "2024-07-25T13:49:49.447Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:49:15.187Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Mag Quick", + "itemId": "90b800692cb44f169c5049553240eb18", + "baseAppId": "", + "sku": "pd3_mod_se5_mag_quick", + "namespace": "pd3", + "name": "MOD SE5 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:50:46.357Z", + "discountPurchaseAt": "2024-07-25T13:50:46.357Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:50:12.123Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SE5 Sight TrenchIron", + "itemId": "5f505f146f814979a48a0f0f3068438c", + "baseAppId": "", + "sku": "pd3_mod_se5_sight_trenchiron", + "namespace": "pd3", + "name": "MOD SE5 Sight TrenchIron", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:52:24.814Z", + "discountPurchaseAt": "2024-07-25T13:52:24.814Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T13:51:50.56Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SPM11 Grip Checkered", + "itemId": "71136965394340c5805d3df89b1603dd", + "baseAppId": "", + "sku": "pd3_mod_spm11_grip_checkered", + "namespace": "pd3", + "name": "MOD SPM11 Grip Checkered", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:44:29.931Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:44:31.861Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SPM11 Grip Embossed", + "itemId": "4512104c55ef41069e642a6f0ce41a69", + "baseAppId": "", + "sku": "pd3_mod_spm11_grip_embossed", + "namespace": "pd3", + "name": "MOD SPM11 Grip Embossed", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:48:03.709Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:48:05.637Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SPM11 Grip Tac", + "itemId": "a3d65ce56172464caf9b415aae168f43", + "baseAppId": "", + "sku": "pd3_mod_spm11_grip_tac", + "namespace": "pd3", + "name": "MOD SPM11 Grip Tac", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T11:45:55.351Z", + "discountPurchaseAt": "2022-11-17T11:45:55.351Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T11:45:57.271Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SPM11 Mag Extended", + "itemId": "24d082ae4bdb4faaa75d36ad83b7f6e1", + "baseAppId": "", + "sku": "pd3_mod_spm11_mag_extended", + "namespace": "pd3", + "name": "MOD SPM11 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:25:24.547Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:25:24.036Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD SPM11 Mag Quick", + "itemId": "2a270ba6bd81430da064885c7b83a198", + "baseAppId": "", + "sku": "pd3_mod_spm11_mag_quick", + "namespace": "pd3", + "name": "MOD SPM11 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:26:50.478Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:26:49.968Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Box", + "itemId": "0d2947f95b7d4e5991aefbf14051c905", + "baseAppId": "", + "sku": "pd3_mod_sight_box", + "namespace": "pd3", + "name": "MOD Sight Box", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:00:55.566Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:00:50.671Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Box High", + "itemId": "a7ef35fe9b5b405996d1544856e8bed9", + "baseAppId": "", + "sku": "pd3_mod_sight_box_high", + "namespace": "pd3", + "name": "MOD Sight Box High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:40:27.898Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:40:27.737Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Box Low", + "itemId": "ad879f1420f345d08257a3c041cb49d4", + "baseAppId": "", + "sku": "pd3_mod_sight_box_low", + "namespace": "pd3", + "name": "MOD Sight Box Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:43:05.203Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:43:05.096Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight ClassicRDS", + "itemId": "5e51babbb8ce49ad81bfff907c110f55", + "baseAppId": "", + "sku": "pd3_mod_sight_classicrds", + "namespace": "pd3", + "name": "MOD Sight ClassicRDS", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:03:29.394Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:03:24.493Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight ClassicRDS High", + "itemId": "c33eff3c90994bdd8e86599f6fbf6307", + "baseAppId": "", + "sku": "pd3_mod_sight_classicrds_high", + "namespace": "pd3", + "name": "MOD Sight ClassicRDS High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:40:58.495Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:40:58.331Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight ClassicRDS Low", + "itemId": "b025e241c9d34074aae0d32c5594aba3", + "baseAppId": "", + "sku": "pd3_mod_sight_classicrds_low", + "namespace": "pd3", + "name": "MOD Sight ClassicRDS Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:43:40.059Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:43:39.951Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Compact", + "itemId": "3ff0044abaa74bd0b4bf3362fbce6960", + "baseAppId": "", + "sku": "pd3_mod_sight_compact", + "namespace": "pd3", + "name": "MOD Sight Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:07:10.091Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:07:05.188Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Compact High", + "itemId": "59ab9232b5f6415b8f4b8e622d79946a", + "baseAppId": "", + "sku": "pd3_mod_sight_compact_high", + "namespace": "pd3", + "name": "MOD Sight Compact High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:41:26.732Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:41:26.564Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Compact Low", + "itemId": "f28ecb199c674143bb1bc43d007d5a27", + "baseAppId": "", + "sku": "pd3_mod_sight_compact_low", + "namespace": "pd3", + "name": "MOD Sight Compact Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:44:18.088Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:44:17.976Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Fluted", + "itemId": "c0d5da93707e4dc284be0db3141fa27a", + "baseAppId": "", + "sku": "pd3_mod_sight_fluted", + "namespace": "pd3", + "name": "MOD Sight Fluted", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:31:58.565Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:31:53.584Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Fluted High", + "itemId": "052f8c79d8ff4435bbb86254d835be94", + "baseAppId": "", + "sku": "pd3_mod_sight_fluted_high", + "namespace": "pd3", + "name": "MOD Sight Fluted High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:45:16.308Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 0, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:45:16.16Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Fluted Low", + "itemId": "6c0a81b8856d4b17b80f6fe983fba760", + "baseAppId": "", + "sku": "pd3_mod_sight_fluted_low", + "namespace": "pd3", + "name": "MOD Sight Fluted Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:49:51.763Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:49:51.672Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight LED", + "itemId": "cf7a61c9256347de8125c111b83b9b3b", + "baseAppId": "", + "sku": "pd3_mod_sight_led", + "namespace": "pd3", + "name": "MOD Sight LED", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:28:47.217Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:28:42.237Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight LED High", + "itemId": "73a63d59fac548d09fdd0e7abaae9cf2", + "baseAppId": "", + "sku": "pd3_mod_sight_led_high", + "namespace": "pd3", + "name": "MOD Sight LED High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:44:05.613Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:44:05.444Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight LED Low", + "itemId": "3534f7e1c2964ccfb4a89d3acfaa6595", + "baseAppId": "", + "sku": "pd3_mod_sight_led_low", + "namespace": "pd3", + "name": "MOD Sight LED Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:47:45.274Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:47:45.171Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Lined", + "itemId": "bf001b8185de45a0aa7728493c4cfb32", + "baseAppId": "", + "sku": "pd3_mod_sight_lined", + "namespace": "pd3", + "name": "MOD Sight Lined", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:56:53.757Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:56:48.868Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Lined High", + "itemId": "77a1f4201658410c84f8f261e87c34ef", + "baseAppId": "", + "sku": "pd3_mod_sight_lined_high", + "namespace": "pd3", + "name": "MOD Sight Lined High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:39:55.323Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:39:55.157Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Lined Low", + "itemId": "27adf6d7a7534cc9bbc267622f6c3c6e", + "baseAppId": "", + "sku": "pd3_mod_sight_lined_low", + "namespace": "pd3", + "name": "MOD Sight Lined Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:42:16.83Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:42:16.72Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Primed", + "itemId": "f2a3e10a3fb24dcba8f617401e86bce9", + "baseAppId": "", + "sku": "pd3_mod_sight_primed", + "namespace": "pd3", + "name": "MOD Sight Primed", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:33:33.709Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:33:28.726Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Primed High", + "itemId": "399853e97a6c4906892822f370d5809a", + "baseAppId": "", + "sku": "pd3_mod_sight_primed_high", + "namespace": "pd3", + "name": "MOD Sight Primed High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:45:50.411Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:45:50.256Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Primed Low", + "itemId": "0e8db2d89c944e989ecab104529382ee", + "baseAppId": "", + "sku": "pd3_mod_sight_primed_low", + "namespace": "pd3", + "name": "MOD Sight Primed Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:50:25.015Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:50:24.898Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Projection", + "itemId": "ab63137ca6f746248514e87cfc6b238e", + "baseAppId": "", + "sku": "pd3_mod_sight_projection", + "namespace": "pd3", + "name": "MOD Sight Projection", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:09:09.814Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:09:04.908Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Projection High", + "itemId": "cdf590c1c0a9424db13267bea2bb64e7", + "baseAppId": "", + "sku": "pd3_mod_sight_projection_high", + "namespace": "pd3", + "name": "MOD Sight Projection High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:41:57.242Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:41:57.089Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Projection Low", + "itemId": "17dfda2e5cb6428090eec1ab7e578a46", + "baseAppId": "", + "sku": "pd3_mod_sight_projection_low", + "namespace": "pd3", + "name": "MOD Sight Projection Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:44:58.037Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:44:57.927Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Sheath", + "itemId": "badc254025e74277b80f934b774ef6c0", + "baseAppId": "", + "sku": "pd3_mod_sight_sheath", + "namespace": "pd3", + "name": "MOD Sight Sheath", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:15:07.88Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:15:02.973Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Sheath High", + "itemId": "b8924f9a29494c20b949554d8cfb5ef3", + "baseAppId": "", + "sku": "pd3_mod_sight_sheath_high", + "namespace": "pd3", + "name": "MOD Sight Sheath High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:43:02.491Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:43:02.326Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Sheath Low", + "itemId": "4597877296594c149de4c47e9311dde4", + "baseAppId": "", + "sku": "pd3_mod_sight_sheath_low", + "namespace": "pd3", + "name": "MOD Sight Sheath Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:46:23.97Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:46:23.864Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Slate", + "itemId": "56eefa68d141439d81ab045d33950a8d", + "baseAppId": "", + "sku": "pd3_mod_sight_slate", + "namespace": "pd3", + "name": "MOD Sight Slate", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:27:06.691Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:27:01.722Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Slate High", + "itemId": "0ff45793d8a94ad2bfe0c5821f9979e7", + "baseAppId": "", + "sku": "pd3_mod_sight_slate_high", + "namespace": "pd3", + "name": "MOD Sight Slate High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:43:30.023Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:43:29.857Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Slate Low", + "itemId": "06c1c6a68d054134b601309a3d04c2d8", + "baseAppId": "", + "sku": "pd3_mod_sight_slate_low", + "namespace": "pd3", + "name": "MOD Sight Slate Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:47:05.655Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:47:05.553Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tactical", + "itemId": "9bfefaca0c1743ef89a78a7ac88d348f", + "baseAppId": "", + "sku": "pd3_mod_sight_tactical", + "namespace": "pd3", + "name": "MOD Sight Tactical", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T15:11:59.274Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T15:11:54.365Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tactical High", + "itemId": "14eca2b3ab394385a73f88e40d886b6e", + "baseAppId": "", + "sku": "pd3_mod_sight_tactical_high", + "namespace": "pd3", + "name": "MOD Sight Tactical High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:42:26.12Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:42:25.958Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tactical Low", + "itemId": "036a4b59de8d4bd3bac143c3a4b99591", + "baseAppId": "", + "sku": "pd3_mod_sight_tactical_low", + "namespace": "pd3", + "name": "MOD Sight Tactical Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:45:29.74Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:45:29.643Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tagged", + "itemId": "0331a8e132ac49bc8b7d6cacaf3372bd", + "baseAppId": "", + "sku": "pd3_mod_sight_tagged", + "namespace": "pd3", + "name": "MOD Sight Tagged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T16:30:06.58Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T16:30:01.599Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tagged High", + "itemId": "75e6ac8134664592ab8f7214dd777f30", + "baseAppId": "", + "sku": "pd3_mod_sight_tagged_high", + "namespace": "pd3", + "name": "MOD Sight Tagged High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:44:37.149Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:44:36.981Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Tagged Low", + "itemId": "a9668a76b0e04c95b4b6941296faf101", + "baseAppId": "", + "sku": "pd3_mod_sight_tagged_low", + "namespace": "pd3", + "name": "MOD Sight Tagged Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:48:42.608Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:48:42.527Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Viewpoint", + "itemId": "958d0f384eb8464fa62f09e68628d18a", + "baseAppId": "", + "sku": "pd3_mod_sight_viewpoint", + "namespace": "pd3", + "name": "MOD Sight Viewpoint", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-16T14:47:45.89Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-16T14:47:41.01Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Viewpoint High", + "itemId": "81010f8c3cff4d5cbcaf9401ba21168f", + "baseAppId": "", + "sku": "pd3_mod_sight_viewpoint_high", + "namespace": "pd3", + "name": "MOD Sight Viewpoint High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:39:15.813Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:39:15.649Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Sight Viewpoint Low", + "itemId": "6915792558cd4483859570225d26f90e", + "baseAppId": "", + "sku": "pd3_mod_sight_viewpoint_low", + "namespace": "pd3", + "name": "MOD Sight Viewpoint Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T13:41:44.739Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T13:41:44.633Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock HQ", + "itemId": "43fe9837925d40e5a46c418892dfd074", + "baseAppId": "", + "sku": "pd3_mod_stock_hq", + "namespace": "pd3", + "name": "MOD Stock HQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:08:56.841Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:08:58.552Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock HQ High", + "itemId": "c8cd8d10412044a3b17e90f7ca0f6a40", + "baseAppId": "", + "sku": "pd3_mod_stock_hq_high", + "namespace": "pd3", + "name": "MOD Stock HQ High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:53:30.558Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:53:30.383Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock HQ Low", + "itemId": "575467d606c749d8b7b85b44d213d6c6", + "baseAppId": "", + "sku": "pd3_mod_stock_hq_low", + "namespace": "pd3", + "name": "MOD Stock HQ Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:03:52.219Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:03:52.086Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock LightFrame", + "itemId": "96ed122861784960bf7cbe37cc0f7510", + "baseAppId": "", + "sku": "pd3_mod_stock_lightframe", + "namespace": "pd3", + "name": "MOD Stock LightFrame", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:07:34.585Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:07:36.299Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock LightFrame High", + "itemId": "fdd476a8518f44a69839d4982116ff86", + "baseAppId": "", + "sku": "pd3_mod_stock_lightframe_high", + "namespace": "pd3", + "name": "MOD Stock LightFrame High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:52:56.461Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:52:56.284Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock LightFrame Low", + "itemId": "02023c9bd54c4483ac645fb348b4615b", + "baseAppId": "", + "sku": "pd3_mod_stock_lightframe_low", + "namespace": "pd3", + "name": "MOD Stock LightFrame Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:03:25.239Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:03:25.104Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock PaddedTube", + "itemId": "ccf3ff9a2f4f41918ebf594882d2660d", + "baseAppId": "", + "sku": "pd3_mod_stock_paddedtube", + "namespace": "pd3", + "name": "MOD Stock PaddedTube", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:09:14.959Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:09:16.694Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock PaddedTube High", + "itemId": "be4beca5feba4aa2a444b5fc12b4cde4", + "baseAppId": "", + "sku": "pd3_mod_stock_paddedtube_high", + "namespace": "pd3", + "name": "MOD Stock PaddedTube High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:55:04.576Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:55:04.399Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock PaddedTube Low", + "itemId": "7a0f126c2c9340bbb5c838b18f6b70f5", + "baseAppId": "", + "sku": "pd3_mod_stock_paddedtube_low", + "namespace": "pd3", + "name": "MOD Stock PaddedTube Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:04:19.053Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:04:18.924Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock TQ", + "itemId": "94bb48141c384f88ba9e49c256da8817", + "baseAppId": "", + "sku": "pd3_mod_stock_tq", + "namespace": "pd3", + "name": "MOD Stock TQ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:06:49.238Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:06:50.964Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock TQ High", + "itemId": "5573b347e545424ab89685f34152dc2d", + "baseAppId": "", + "sku": "pd3_mod_stock_tq_high", + "namespace": "pd3", + "name": "MOD Stock TQ High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:52:29.485Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:52:29.316Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stock TQ Low", + "itemId": "d648dd6c8d3b414697f456f49ba72da0", + "baseAppId": "", + "sku": "pd3_mod_stock_tq_low", + "namespace": "pd3", + "name": "MOD Stock TQ Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:02:52.598Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:02:52.481Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Styk7 Grip Friction", + "itemId": "cc5c186f85f142a693ed9b818db8a532", + "baseAppId": "", + "sku": "pd3_mod_styk7_grip_friction", + "namespace": "pd3", + "name": "MOD Stryk7 Grip Friction", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:02:50.887Z", + "discountPurchaseAt": "2022-11-17T10:02:50.887Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:02:53.083Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Styk7 Grip Grained", + "itemId": "e334045d62df41e09bdb75fdd5377069", + "baseAppId": "", + "sku": "pd3_mod_styk7_grip_grained", + "namespace": "pd3", + "name": "MOD Stryk7 Grip Grained", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:08:23.866Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:08:26.054Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Styk7 Grip Ribbed", + "itemId": "e539ddbdbf2a4d818123e03ad8a88e73", + "baseAppId": "", + "sku": "pd3_mod_styk7_grip_ribbed", + "namespace": "pd3", + "name": "MOD Stryk7 Grip Ribbed", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T10:05:53.874Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T10:05:56.065Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stryk7 Mag Extended", + "itemId": "93936d9f8fe94dd29ea8f997a33a45e1", + "baseAppId": "", + "sku": "pd3_mod_stryk7_mag_extended", + "namespace": "pd3", + "name": "MOD Stryk7 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:14:22.491Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:14:21.993Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD Stryk7 Mag Quick", + "itemId": "73fc7f50a0844f16a23da40d67c8857a", + "baseAppId": "", + "sku": "pd3_mod_stryk7_mag_quick", + "namespace": "pd3", + "name": "MOD Stryk7 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:15:51.88Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:15:51.38Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD T32 Mag Compact", + "itemId": "e6f6a091c7c94eeb9187526f718949f2", + "baseAppId": "", + "sku": "pd3_mod_t32_mag_compact", + "namespace": "pd3", + "name": "MOD T32 Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T13:35:19.438Z", + "discountPurchaseAt": "2024-06-27T13:35:19.438Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T13:34:56.483Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD T32 Mag Extended", + "itemId": "1e00bd0461d44727a576766cf3bc0f1e", + "baseAppId": "", + "sku": "pd3_mod_t32_mag_extended", + "namespace": "pd3", + "name": "MOD T32 Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T13:34:15.412Z", + "discountPurchaseAt": "2024-06-27T13:34:15.412Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T13:33:52.457Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD T32 Mag Quick", + "itemId": "0d1a02b951a84b9099e6d9e763c1fb3b", + "baseAppId": "", + "sku": "pd3_mod_t32_mag_quick", + "namespace": "pd3", + "name": "MOD T32 Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T13:36:06.554Z", + "discountPurchaseAt": "2024-06-27T13:36:06.554Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T13:35:43.606Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD T32 Stock Overline", + "itemId": "fed33cc6f944423a9e0f007ac4025ef0", + "baseAppId": "", + "sku": "pd3_mod_t32_stock_overline", + "namespace": "pd3", + "name": "MOD T32 Stock Overline", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T13:40:08.664Z", + "discountPurchaseAt": "2024-06-27T13:40:08.664Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T13:39:45.698Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD T32 Stock Underline", + "itemId": "f4ec1595f0ac4b10972929d6602a18f0", + "baseAppId": "", + "sku": "pd3_mod_t32_stock_underline", + "namespace": "pd3", + "name": "MOD T32 Stock Underline", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T13:38:24.459Z", + "discountPurchaseAt": "2024-06-27T13:38:24.459Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T13:38:01.499Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Barrel CQC", + "itemId": "61fd8063787b4982b8e90b26372a503a", + "baseAppId": "", + "sku": "pd3_mod_tas12_barrel_cqc", + "namespace": "pd3", + "name": "MOD TAS12 Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:05:34.165Z", + "discountPurchaseAt": "2024-07-25T14:05:34.165Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:04:59.911Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Grip DiamondFriction", + "itemId": "584b1205b9234b638b392db5a801db93", + "baseAppId": "", + "sku": "pd3_mod_tas12_grip_diamondfriction", + "namespace": "pd3", + "name": "MOD TAS12 Grip DiamondFriction", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:10:09.176Z", + "discountPurchaseAt": "2024-07-25T14:10:09.176Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:09:34.899Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Grip FrictionWrapped", + "itemId": "b16eaec4fc5842698abe301740656d22", + "baseAppId": "", + "sku": "pd3_mod_tas12_grip_frictionwrapped", + "namespace": "pd3", + "name": "MOD TAS12 Grip FrictionWrapped", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:08:26.842Z", + "discountPurchaseAt": "2024-07-25T14:08:26.842Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:07:52.565Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Grip PatternedFriction", + "itemId": "e70c550c51064224b836a7d6fff9399c", + "baseAppId": "", + "sku": "pd3_mod_tas12_grip_patternedfriction", + "namespace": "pd3", + "name": "MOD TAS12 Grip PatternedFriction", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Grip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:11:42.506Z", + "discountPurchaseAt": "2024-07-25T14:11:42.506Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:11:08.233Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Stock SkeletonFolding", + "itemId": "b6a0d66517644a8890e685eabb0dc85a", + "baseAppId": "", + "sku": "pd3_mod_tas12_stock_skeletonfolding", + "namespace": "pd3", + "name": "MOD TAS12 Stock SkeletonFolding", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:14:01.153Z", + "discountPurchaseAt": "2024-07-25T14:14:01.153Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:13:26.871Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD TAS12 Stock WidenedBreach", + "itemId": "64efa21cf9d44a7bbc4cfcf0ac95b20b", + "baseAppId": "", + "sku": "pd3_mod_tas12_stock_widenedbreach", + "namespace": "pd3", + "name": "MOD TAS12 Stock WidenedBreach", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Stock", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:13:04.174Z", + "discountPurchaseAt": "2024-07-25T14:13:04.174Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-25T14:12:29.896Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VF7S Barrel CQC", + "itemId": "0ea8e4ef9f2b4e6ba9baf936d2a0e58a", + "baseAppId": "", + "sku": "pd3_mod_vf7s_barrel_cqc", + "namespace": "pd3", + "name": "MOD VF7S Barrel CQC", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:37:58.414Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:37:58.178Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VF7S Barrel Ranged", + "itemId": "474317cfffb444a2a5c0627ca0e5dc4a", + "baseAppId": "", + "sku": "pd3_mod_vf7s_barrel_ranged", + "namespace": "pd3", + "name": "MOD VF7S Barrel Ranged", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Barrel", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T08:40:08.218Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T08:40:07.981Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VF7S Mag Compact", + "itemId": "a9ba349a85804aad98e0015994595822", + "baseAppId": "", + "sku": "pd3_mod_vf7s_mag_compact", + "namespace": "pd3", + "name": "MOD VF7S Mag Compact", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:30:10.086Z", + "discountPurchaseAt": "2022-11-17T13:30:10.086Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:30:09.571Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VF7S Mag Extended", + "itemId": "7e6db7d4ce0e48f6b347b7a3d77efdfb", + "baseAppId": "", + "sku": "pd3_mod_vf7s_mag_extended", + "namespace": "pd3", + "name": "MOD VF7S Mag Extended", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T13:28:32.966Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T13:28:32.454Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VF7S Mag Quick", + "itemId": "c3c8a34652694ca8b48917a2b65a9add", + "baseAppId": "", + "sku": "pd3_mod_vf7s_mag_quick", + "namespace": "pd3", + "name": "MOD VF7S Mag Quick", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T12:24:28.995Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T12:24:28.541Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip AngledGhost", + "itemId": "ea432f121af14b54820a8bb1e4dbe632", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_angledghost", + "namespace": "pd3", + "name": "MOD VerticalGrip AngledGhost", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:38:25.057Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:38:24.764Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip AngledGhost High", + "itemId": "2989b9c54a5b49bbb0a2e8963e569879", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_angledghost_high", + "namespace": "pd3", + "name": "MOD VerticalGrip AngledGhost High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:56:40.668Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:56:40.493Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip AngledGhost Low", + "itemId": "16f77d114bf446a4a1ac2fc988318c0a", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_angledghost_low", + "namespace": "pd3", + "name": "MOD VerticalGrip AngledGhost Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:05:36.364Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:05:36.23Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Cylinder", + "itemId": "d044c47d8f9e4f95b1630265a1029e26", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_cylinder", + "namespace": "pd3", + "name": "MOD VerticalGrip Cylinder", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:36:02.537Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:36:02.266Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Cylinder High", + "itemId": "f0b395021c51426babba0b4958ab8a24", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_cylinder_high", + "namespace": "pd3", + "name": "MOD VerticalGrip Cylinder High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:55:54.414Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:55:54.246Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Cylinder Low", + "itemId": "610b3033bc9a4ecb85888c9cde423677", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_cylinder_low", + "namespace": "pd3", + "name": "MOD VerticalGrip Cylinder Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:05:08.517Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:05:08.386Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip QuickHold", + "itemId": "7d74840ae065498c93bb7d61c9e712c1", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_quickhold", + "namespace": "pd3", + "name": "MOD VerticalGrip QuickHold", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:41:15.897Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:41:15.601Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip QuickHold High", + "itemId": "3af22326335842a4893a33d99f2b2f9a", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_quickhold_high", + "namespace": "pd3", + "name": "MOD VerticalGrip QuickHold High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:58:33.659Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:58:33.48Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip QuickHold Low", + "itemId": "7427321a1ac94f1db7dc4db367290cd4", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_quickhold_low", + "namespace": "pd3", + "name": "MOD VerticalGrip QuickHold Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:06:34.456Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:06:34.322Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Stub", + "itemId": "fa0333c3bdfa41cba3aaa7eee8b2274e", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_stub", + "namespace": "pd3", + "name": "MOD VerticalGrip Stub", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-17T09:39:41.709Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-17T09:39:41.422Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Stub High", + "itemId": "4740ab64645a49ba97d3fe7bd6868917", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_stub_high", + "namespace": "pd3", + "name": "MOD VerticalGrip Stub High", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:57:54.367Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:57:54.195Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD VerticalGrip Stub Low", + "itemId": "fd0af7db61054a5db6b50a056de8793f", + "baseAppId": "", + "sku": "pd3_mod_verticalgrip_stub_low", + "namespace": "pd3", + "name": "MOD VerticalGrip Stub Low", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/VerticalGrip", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-25T14:06:06.229Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-25T14:06:06.101Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD WAR45 Mag Compact ", + "itemId": "234601dd009f49b494d25070bcbed2e9", + "baseAppId": "", + "sku": "pd3_mod_war45_mag_compact", + "namespace": "pd3", + "name": "MOD WAR45 Mag Compact ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:23:26.179Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:23:27.333Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD WAR45 Mag Extended ", + "itemId": "51f31c3e71514d5b8fdc68de268ec38e", + "baseAppId": "", + "sku": "pd3_mod_war45_mag_extended", + "namespace": "pd3", + "name": "MOD WAR45 Mag Extended ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:19:16.911Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:19:18.034Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "MOD WAR45 Mag Quick ", + "itemId": "f8a10c6ea6434b58a401f0ac37c2ad78", + "baseAppId": "", + "sku": "pd3_mod_war45_mag_quick", + "namespace": "pd3", + "name": "MOD WAR45 Mag Quick ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Mag", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-08T17:22:02.415Z" + } + ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "displayOrder": 1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-08T17:22:03.59Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Manager Cake Jewelry Store Preplanning asset", + "itemId": "a8a42735b6ed4bf48456de9f33ff6477", + "baseAppId": "", + "sku": "pd3_preplanning_jewelrystore_1", + "namespace": "pd3", + "name": "Manager Cake Jewelry Store Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-21T13:08:11.035Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Marksman M14", + "itemId": "4f67bce6dfc0416e80b67a62dea12c79", + "baseAppId": "", + "sku": "pd3_wpn_marksman_a114", + "namespace": "pd3", + "name": "Marksman A114", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 300000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 300000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel15" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-05-17T08:17:42.863Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Marksman R700", + "itemId": "bd59f1eb7e2e4ee398923418bfe26b0c", + "baseAppId": "", + "sku": "pd3_wpn_marksman_r900s", + "namespace": "pd3", + "name": "Marksman R900S", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Weapon", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 500000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "boundItemIds": [], + "tags": [ + "InfamyLevel53", + "CombatEquipmentVendor" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2021-10-29T12:15:33.519Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot - Initial", + "itemId": "7edebccf1e2d48bfb94513a78c2f91a9", + "baseAppId": "", + "sku": "pd3_slot_mask_initial", + "namespace": "pd3", + "name": "Mask Inventory Slot", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-06T13:09:57.643Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 0", + "itemId": "87d0be7e55304e62b4993ea5de750671", + "baseAppId": "", + "sku": "pd3_slot_mask0", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 0", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T09:46:15.321Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e005bc343c254adb9855ef1b7effc751" + ], + "tags": [ + "PriceProgression0", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T09:46:15.322Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 1", + "itemId": "662b6f7b2dbb44d9bdf2531f5739a646", + "baseAppId": "", + "sku": "pd3_slot_mask1", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 1", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T09:52:39.74Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression1", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T09:52:39.732Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 10", + "itemId": "a44d9e25df594acdabfc7b204383c826", + "baseAppId": "", + "sku": "pd3_slot_mask10", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 10", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 5, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 5, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:17:52.958Z" + } + ], + "itemQty": {}, + "tags": [ + "PriceProgression10", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:17:52.932Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 2", + "itemId": "0bff8655788c4f678327d5c9534cca7f", + "baseAppId": "", + "sku": "pd3_slot_mask2", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 2", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 50000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 50000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T09:55:21.787Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression2", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T09:55:21.772Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 3", + "itemId": "055f83d46d6e434395d673427bff87c6", + "baseAppId": "", + "sku": "pd3_slot_mask3", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 3", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:00:23.249Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression3", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:00:23.233Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 4", + "itemId": "a21a032b006443358fef71f58444a9c8", + "baseAppId": "", + "sku": "pd3_slot_mask4", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 4", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:02:39.719Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression4", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:02:39.712Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 5", + "itemId": "9945b01c6f5e4e24b0d1d149b02172ad", + "baseAppId": "", + "sku": "pd3_slot_mask5", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 5", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:04:19.478Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression5", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:04:19.461Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 6", + "itemId": "a12d4d2ca7de44b0a9e58a3116341d15", + "baseAppId": "", + "sku": "pd3_slot_mask6", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 6", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:06:16.236Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression6", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:06:16.213Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 7", + "itemId": "d5de9415612b406584ece698b7ec366e", + "baseAppId": "", + "sku": "pd3_slot_mask7", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 7", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:09:42.018Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression7", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:09:41.993Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 8", + "itemId": "f207245233494595abea3d85cf230797", + "baseAppId": "", + "sku": "pd3_slot_mask8", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 8", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:12:01.129Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression8", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:12:01.101Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Inventory Slot: Price Progression 9", + "itemId": "19d32639433c4f78bed9a9dfabc6f06a", + "baseAppId": "", + "sku": "pd3_slot_mask9", + "namespace": "pd3", + "name": "Mask Inventory Slot: Price Progression 9", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 250000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 250000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T10:13:46.641Z" + } + ], + "itemQty": {}, + "tags": [ + "CharacterVendor", + "PriceProgression9", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-14T10:13:46.616Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 1", + "itemId": "9ca00d0869f54a31886c2bd909886a69", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould1", + "namespace": "pd3", + "name": "Mask Mould 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:17:19.61Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "e005bc343c254adb9855ef1b7effc751" + ], + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:17:19.098Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 10", + "itemId": "68b95f8ad09d4d9e8aab45e3886406d5", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould10", + "namespace": "pd3", + "name": "Mask Mould 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:23:04.994Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "CharacterVendor", + "InfamyLevel23" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:23:04.465Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 11", + "itemId": "70af5635c22b421a998532a885ed74e9", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould11", + "namespace": "pd3", + "name": "Mask Mould 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:23:50.858Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "CharacterVendor", + "InfamyLevel33" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:23:50.333Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 12", + "itemId": "022afff72be74ab4bafba847758ae95d", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould12", + "namespace": "pd3", + "name": "Mask Mould 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:24:41.186Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "CharacterVendor", + "InfamyLevel45" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:24:40.659Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 13", + "itemId": "a3b05fe0956a4f60a3b72ae5e09b98c3", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould13", + "namespace": "pd3", + "name": "Mask Mould 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 350000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 350000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:25:16.658Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel50", + "RarityRare", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:25:16.128Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 14", + "itemId": "31f5ba76756d4e76b00b93f87c1f2c66", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould14", + "namespace": "pd3", + "name": "Mask Mould 14", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 500000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:25:51.13Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel57" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:25:50.599Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 15", + "itemId": "c5f1491ea8a141b39eb671b0101b3286", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould15", + "namespace": "pd3", + "name": "Mask Mould 15", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 500000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 500000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T08:13:29.421Z", + "discountPurchaseAt": "2023-05-29T08:13:29.421Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel68" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T08:13:29.381Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 16", + "itemId": "31161d5b97064770a13ab5f2e159e6f6", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould16", + "namespace": "pd3", + "name": "Mask Mould 16", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T08:16:23.034Z", + "discountPurchaseAt": "2023-05-29T08:16:23.034Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel75", + "RarityEpic", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T08:16:23.047Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 17", + "itemId": "07429f0326e940fca207b3307bd0b081", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould17", + "namespace": "pd3", + "name": "Mask Mould 17", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T08:19:09.715Z", + "discountPurchaseAt": "2023-05-29T08:19:09.715Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "InfamyLevel82", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T08:19:09.712Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 18", + "itemId": "a3a403f9790c497d851564ae626bf9de", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould18", + "namespace": "pd3", + "name": "Mask Mould 18", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T08:23:35.784Z", + "discountPurchaseAt": "2023-05-29T08:23:35.784Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "InfamyLevel92", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T08:23:35.726Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 19", + "itemId": "df4aaf915a8e45c3add01c805031d354", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould19", + "namespace": "pd3", + "name": "Mask Mould 19", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T08:24:45.268Z", + "discountPurchaseAt": "2023-05-29T08:24:45.268Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel99" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-05-29T08:24:45.229Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 2", + "itemId": "2dae2754ee64448dbb008a9b471fa2fe", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould2", + "namespace": "pd3", + "name": "Mask Mould 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:18:10.114Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:18:09.592Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 3", + "itemId": "2c8e1a2780724c0e90d44934a0d46752", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould3", + "namespace": "pd3", + "name": "Mask Mould 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:18:47.377Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:18:46.858Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 4", + "itemId": "4a8597feeaf244be8f32511a5c6f9473", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould4", + "namespace": "pd3", + "name": "Mask Mould 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:19:16.939Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:19:16.432Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 5", + "itemId": "a17d7e04a27d4df482a1a6d6e3d78724", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould5", + "namespace": "pd3", + "name": "Mask Mould 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:19:57.754Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:19:57.232Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 6", + "itemId": "2329d9ab5f0f4973b4a3224815889e9d", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould6", + "namespace": "pd3", + "name": "Mask Mould 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:20:40.418Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InfamyLevel5" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:20:39.896Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 7", + "itemId": "3272d6c0203d4a7ba3c88a47fa48bad9", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould7", + "namespace": "pd3", + "name": "Mask Mould 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:21:18.915Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "InfamyLevel8", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:21:18.389Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 8", + "itemId": "3a646df1cd1647a1a6b216658fae01be", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould8", + "namespace": "pd3", + "name": "Mask Mould 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:21:54.098Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InfamyLevel13" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:21:53.57Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould 9", + "itemId": "5348c2744eab4a5f870e52c079b2d1ab", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_mould9", + "namespace": "pd3", + "name": "Mask Mould 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 200000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T16:22:33.714Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "InfamyLevel19", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T16:22:33.194Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 1", + "itemId": "8ee5ea28195b416abb49f31b94382f5f", + "sku": "pd3_cosmetic_mask_mould_remake_1", + "namespace": "pd3", + "name": "Mask Mould Remake 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-30T15:00:59.283Z", + "discountPurchaseAt": "2023-10-30T15:00:59.283Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.432Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 10", + "itemId": "b06e3ac0bc4d425dbb8f32d59f6d92a0", + "sku": "pd3_cosmetic_mask_mould_remake_10", + "namespace": "pd3", + "name": "Mask Mould Remake 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:14:11.217Z", + "discountPurchaseAt": "2023-10-31T15:14:11.217Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.356Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 11", + "itemId": "56703b0ad17c4b3b937a0f8a719ec78d", + "sku": "pd3_cosmetic_mask_mould_remake_11", + "namespace": "pd3", + "name": "Mask Mould Remake 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:15:06.693Z", + "discountPurchaseAt": "2023-10-31T15:15:06.693Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.372Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 2", + "itemId": "6666d42c3dd24edf8cc08affb36636c1", + "sku": "pd3_cosmetic_mask_mould_remake_2", + "namespace": "pd3", + "name": "Mask Mould Remake 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T08:48:36.468Z", + "discountPurchaseAt": "2023-10-31T08:48:36.468Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.393Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 3", + "itemId": "81b67d89240f48048c9b08dcc33f9c36", + "sku": "pd3_cosmetic_mask_mould_remake_3", + "namespace": "pd3", + "name": "Mask Mould Remake 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:06:16.877Z", + "discountPurchaseAt": "2023-10-31T15:06:16.877Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.38Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 4", + "itemId": "9cee185cc53e441992aa590c682c6e1b", + "sku": "pd3_cosmetic_mask_mould_remake_4", + "namespace": "pd3", + "name": "Mask Mould Remake 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:07:18.921Z", + "discountPurchaseAt": "2023-10-31T15:07:18.921Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.659Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 5", + "itemId": "37887cbd98d44e23b9ba4f71e3596d75", + "sku": "pd3_cosmetic_mask_mould_remake_5", + "namespace": "pd3", + "name": "Mask Mould Remake 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:08:11.571Z", + "discountPurchaseAt": "2023-10-31T15:08:11.571Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.659Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 6", + "itemId": "6b5e62ea9201468c856975385cd5f34c", + "sku": "pd3_cosmetic_mask_mould_remake_6", + "namespace": "pd3", + "name": "Mask Mould Remake 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:11:18.201Z", + "discountPurchaseAt": "2023-10-31T15:11:18.201Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.671Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 7", + "itemId": "2fc6953d920a4718b76e9b3c0a3acf11", + "sku": "pd3_cosmetic_mask_mould_remake_7", + "namespace": "pd3", + "name": "Mask Mould Remake 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:12:04.039Z", + "discountPurchaseAt": "2023-10-31T15:12:04.039Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.676Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 8", + "itemId": "61bd236692cb42459bd31c651e3d8389", + "sku": "pd3_cosmetic_mask_mould_remake_8", + "namespace": "pd3", + "name": "Mask Mould Remake 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:12:56.825Z", + "discountPurchaseAt": "2023-10-31T15:12:56.825Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.718Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Mould Remake 9", + "itemId": "14f0b55e00b040bc91a52c057e975599", + "sku": "pd3_cosmetic_mask_mould_remake_9", + "namespace": "pd3", + "name": "Mask Mould Remake 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 999, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 999, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-10-31T15:13:40.968Z", + "discountPurchaseAt": "2023-10-31T15:13:40.968Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-11-10T05:51:54.966Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern - Nebula", + "itemId": "056db958485a43f998c7d6330203240b", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern_nebula", + "namespace": "pd3", + "name": "Mask Pattern - Nebula", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-03-17T15:23:16.431Z", + "discountPurchaseAt": "2023-03-17T15:23:16.431Z" + } + ], + "itemQty": {}, + "tags": [ + "inexhaustible" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-03-17T15:23:16.389Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 1", + "itemId": "ede759055ae844f5a982050dde945d8c", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern1", + "namespace": "pd3", + "name": "Mask Pattern 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:47:25.75Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:47:25.169Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 10", + "itemId": "a13af4f11286480e9334f16fdba1851c", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern10", + "namespace": "pd3", + "name": "Mask Pattern 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 40000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 40000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:54:55.746Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel96", + "RarityRare", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:54:55.158Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 11", + "itemId": "1bc5cd579dd84947ab866c2987c68632", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern11", + "namespace": "pd3", + "name": "Mask Pattern 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 40000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 40000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:55:42.05Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel108", + "RarityRare", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:55:41.46Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 12", + "itemId": "4e7f003d36884c468c60a453d968c2ec", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern12", + "namespace": "pd3", + "name": "Mask Pattern 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:57:24.001Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel118", + "RarityEpic", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:57:23.411Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 13", + "itemId": "7b2f99e149ed4593b4e1113151a6b04b", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern13", + "namespace": "pd3", + "name": "Mask Pattern 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:58:04.096Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel129", + "RarityEpic", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:58:03.504Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 14", + "itemId": "ddea80f08c624c559f0dca2e16e51bf8", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern14", + "namespace": "pd3", + "name": "Mask Pattern 14", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:58:42.216Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel140", + "RarityEpic", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:58:41.621Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 2", + "itemId": "0f0504a1378c493bb18ea78c7260f008", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern2", + "namespace": "pd3", + "name": "Mask Pattern 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:49:20.14Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:49:19.557Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 3", + "itemId": "45387e45c9094de8a256f0f0d7f8f716", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern3", + "namespace": "pd3", + "name": "Mask Pattern 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:50:03.868Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:50:03.28Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 4", + "itemId": "2ad41c0f43be4fb3b20402f6189c9030", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern4", + "namespace": "pd3", + "name": "Mask Pattern 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:50:59.219Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:50:58.635Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 5", + "itemId": "7f5fb8d48d204a6182bc62cb4f43e83a", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern5", + "namespace": "pd3", + "name": "Mask Pattern 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 25000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 25000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:51:37.806Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InfamyLevel11" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:51:37.218Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 6", + "itemId": "3ee5761e930c4f40968ce5d2f2e60563", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern6", + "namespace": "pd3", + "name": "Mask Pattern 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 25000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 25000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:52:12.731Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InfamyLevel24" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:52:12.144Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 7", + "itemId": "dbea9856629444d3b0051090fb1e681b", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern7", + "namespace": "pd3", + "name": "Mask Pattern 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 25000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 25000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:52:44.763Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InfamyLevel44" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:52:44.187Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 8", + "itemId": "a136a7ae2722471ca671793a3a12d55c", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern8", + "namespace": "pd3", + "name": "Mask Pattern 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 25000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 25000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:53:24.403Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel63", + "RarityUncommon", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:53:23.817Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Pattern 9", + "itemId": "93d9e2a2a9af4853b03f19e2cca080ba", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pattern9", + "namespace": "pd3", + "name": "Mask Pattern 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/MaskPattern", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 40000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 40000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T17:54:02.203Z" + } + ], + "itemQty": {}, + "tags": [ + "InfamyLevel83", + "RarityRare", + "CharacterVendor" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-24T17:54:01.614Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Mask Preset Dallas", + "itemId": "c915b86dab154ea2a8bb98403ceb89e7", + "baseAppId": "", + "sku": "pd3_mask_preset_dallas", + "namespace": "pd3", + "name": "Mask Preset Dallas", + "entitlementType": "DURABLE", + "categoryPath": "/MaskPreset", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 15, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 15, + "currencyCode": "CRED", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-01-19T13:37:40.999Z", + "discountPurchaseAt": "2023-01-19T13:37:40.999Z" + } + ], + "itemQty": {}, + "tags": [], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-01-19T13:37:40.112Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Medic Bag", + "itemId": "240c44b803d744f28e56a95a2a8c0a08", + "baseAppId": "", + "sku": "pd3_placeable_medicbag", + "namespace": "pd3", + "name": "Medic Bag", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Placeable", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-02-04T15:55:46.259Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Health Bag preplanning asset", + "itemId": "340a890d972d47b5adfacdf5ef854f2c", + "baseAppId": "", + "sku": "pd3_preplanning_uni_medicbag", + "namespace": "pd3", + "name": "Medic Bag universal preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 10000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 10000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "CombatEquipmentVendor", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-08-03T14:30:54.47Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "More Explosives Cargo Dock Preplanning asset", + "itemId": "b91465e2dc624101a3d157305637bbda", + "baseAppId": "", + "sku": "pd3_preplanning_cargodock_3", + "namespace": "pd3", + "name": "More Explosives Cargo Dock Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:27:44.397Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "More Planks Armored Transport Preplanning asset", + "itemId": "0441acf170484c509bcb2c7869170403", + "baseAppId": "", + "sku": "pd3_preplanning_armoredtransport_4", + "namespace": "pd3", + "name": "More Planks Armored Transport Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:21:41.992Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "More Thermite Branch Bank Preplanning asset", + "itemId": "ec4f15db42d54fdfa1a4716d3e880aaf", + "baseAppId": "", + "sku": "pd3_preplanning_branchbank_4", + "namespace": "pd3", + "name": "More Thermite Branch Bank Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-10-19T13:18:16.144Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Open Door Art Gallery Preplanning asset", + "itemId": "d1a8dbc374684db69970fb9655af3e98", + "baseAppId": "", + "sku": "pd3_preplanning_artgallery_3", + "namespace": "pd3", + "name": "Open Door Art Gallery Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 1000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 1000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "PreplanningAsset", + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-09-21T13:02:39.376Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Overkill ARGES", + "itemId": "9a631c69234a45f19d9da2b7fde23862", + "baseAppId": "", + "sku": "pd3_wpn_overkill_arges", + "namespace": "pd3", + "name": "Overkill ARGES", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Overkill", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-23T14:50:01.269Z", + "discountPurchaseAt": "2024-07-23T14:50:01.269Z" + } + ], + "itemQty": {}, + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-07-23T14:49:29.802Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Overkill HET5", + "itemId": "478952d6ba3a4a10ac4cb85c453dc94a", + "baseAppId": "", + "sku": "pd3_wpn_overkill_het5", + "namespace": "pd3", + "name": "Overkill HET5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Overkill", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-11-04T08:55:52.234Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Overkill M32A1 MGL", + "itemId": "a9a0f8e060cf4be79aba8ce9ca95ae4c", + "baseAppId": "", + "sku": "pd3_wpn_overkill_mamba", + "namespace": "pd3", + "name": "Overkill M32A1 MGL", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Overkill", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3" + } + ], + "itemQty": {}, + "tags": [ + "InitialItem" + ], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2022-04-19T11:37:16.506Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Hard Time Mask 11", + "itemId": "11b1ddca212548aca83290d06a4a8aa8", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_11", + "namespace": "pd3", + "name": "PD Store Hard Time Mask 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:05:00.314Z", + "discountPurchaseAt": "2024-08-12T12:05:00.314Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:05:00.343Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Hellspeak Mask 13", + "itemId": "7b9004e568854a4daac4534f5563ac33", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_13", + "namespace": "pd3", + "name": "PD Store Hellspeak Mask 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:08:06.408Z", + "discountPurchaseAt": "2024-08-12T12:08:06.408Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:08:06.438Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Long Face Mask 12", + "itemId": "cbd2c9921b9642cabcae663123201936", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_12", + "namespace": "pd3", + "name": "PD Store Long Face Mask 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:06:52.872Z", + "discountPurchaseAt": "2024-08-12T12:06:52.872Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:06:52.905Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Mask Mommy Dearest 01", + "itemId": "b8358f9f05c84598b81d0550324d94d9", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_01", + "namespace": "pd3", + "name": "PD Store Mask Mommy Dearest 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 123, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 123, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-08T15:29:34.527Z", + "discountPurchaseAt": "2024-08-08T15:29:34.527Z" + } + ], + "itemQty": {}, + "boundItemIds": [], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-08T15:29:34.596Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Master Plan Mask 10", + "itemId": "d98d23d2f4e64561b56ceae2542199ec", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_10", + "namespace": "pd3", + "name": "PD Store Master Plan Mask 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:03:39.077Z", + "discountPurchaseAt": "2024-08-12T12:03:39.077Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:03:39.109Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Metamorphosis Mask 14", + "itemId": "a6f2278c2c1d4b25a55c1c9a44fec667", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_14", + "namespace": "pd3", + "name": "PD Store Metamorphosis Mask 14", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:10:06.717Z", + "discountPurchaseAt": "2024-08-12T12:10:06.717Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:10:06.747Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Mommy Dearest Mask 09", + "itemId": "5114820944144d198fe9c878dffcae96", + "baseAppId": "", + "sku": "pd3_cosmetics_mask_pdstore_09", + "namespace": "pd3", + "name": "PD Store Mommy Dearest Mask 09", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 200, + "discountedPrice": 200, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-08-12T12:02:17.844Z", + "discountPurchaseAt": "2024-08-12T12:02:17.844Z" + } + ], + "itemQty": {}, + "boundItemIds": [ + "4b46c169f9b146149d069d8b2a90443f" + ], + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "MaskOfTheWeek" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-08-12T12:02:17.873Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 1", + "itemId": "d9ca81464da14e03923c4c14bd870268", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore1", + "namespace": "pd3", + "name": "PD Store Premium Mask 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 400, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:35:53.003Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:35:54.803Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 2", + "itemId": "e7ac48908d474a38989e6da80fb94aee", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore2", + "namespace": "pd3", + "name": "PD Store Premium Mask 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 400, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:43:27.786Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:43:29.607Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 3", + "itemId": "1af5e5d24f2d4069b19075470d0b8f86", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore3", + "namespace": "pd3", + "name": "PD Store Premium Mask 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 400, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:47:49.446Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:47:51.262Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 5", + "itemId": "35f8cfbf907b4a359fe238586676441f", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore5", + "namespace": "pd3", + "name": "PD Store Premium Mask 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 300, + "discountedPrice": 100, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:49:37.073Z", + "discountPurchaseAt": "2024-03-27T07:49:37.073Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:49:38.881Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 6", + "itemId": "c824cbf8f88641fe9a5f1359fda767e2", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore6", + "namespace": "pd3", + "name": "PD Store Premium Mask 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 400, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:53:04.62Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:53:06.419Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD Store Premium Mask 7", + "itemId": "f1ba754267e349b99a43b1d3bfee0f8b", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pdstore7", + "namespace": "pd3", + "name": "PD Store Premium Mask 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 400, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 400, + "currencyCode": "GOLD", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-03-27T07:56:32.3Z" + } + ], + "itemQty": {}, + "tags": [ + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-03-27T07:56:34.11Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 1", + "itemId": "27475b7fe3684a2284dde6785dd448a3", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo1", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Very Hard Skull", + "caption": "Icon_Charm_Skull_VeryHard (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/7b0806e22bb04ab8b1eb20676fe6665c.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/2d68c537c0bb4201a153d7c96497917f.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-05T18:43:41.367Z", + "discountPurchaseAt": "2023-09-05T18:43:41.367Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-05T18:43:39.692Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 2", + "itemId": "588ed18073384fa08ec67a67393274b2", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo2", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:25:08.17Z", + "discountPurchaseAt": "2023-09-06T05:25:08.17Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:25:04.603Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 3", + "itemId": "add07f37d0a541d491d28bd29e5e7090", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo3", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:29:48.929Z", + "discountPurchaseAt": "2023-09-06T05:29:48.929Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:29:45.332Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 4", + "itemId": "0255706e51534e7e815fa42de81bdb06", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo4", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:36:48.445Z", + "discountPurchaseAt": "2023-09-06T05:36:48.445Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:36:44.844Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 5", + "itemId": "4cfaad3c4c8549fcaa6044e58c28622e", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo5", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:40:43.268Z", + "discountPurchaseAt": "2023-09-06T05:40:43.268Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityEpic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:40:39.621Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Charm 6", + "itemId": "aecd11f54e1c41c8847e471ad20f61f4", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo6", + "namespace": "pd3", + "name": "PD2 Epic Promo Charm 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:44:53.495Z", + "discountPurchaseAt": "2023-09-06T05:44:53.495Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityEpic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:44:49.819Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Gloves", + "itemId": "f1739c37588849b28d98a7e57f643fa3", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_accessory_gloves_pd2promo", + "namespace": "pd3", + "name": "PD2 Epic Promo Gloves", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:19:16.16Z", + "discountPurchaseAt": "2023-09-06T06:19:16.16Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:19:12.381Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Mask", + "itemId": "206a86e1daed495dbcbc1932a3adccd6", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_mask_pd2promo", + "namespace": "pd3", + "name": "PD2 Epic Promo Mask", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:44:51.124Z", + "discountPurchaseAt": "2023-09-06T06:44:51.124Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityEpic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:44:47.285Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Epic Promo Suit", + "itemId": "10df6d973bbd4d6caf5e7a454157f4b0", + "baseAppId": "", + "sku": "pd3_epic_cosmetic_suit_pd2promo", + "namespace": "pd3", + "name": "PD2 Epic Promo Suit", + "entitlementType": "DURABLE", + "categoryPath": "/Suit", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:33:46.642Z", + "discountPurchaseAt": "2023-09-06T06:33:46.642Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "Epic", + "RarityRare", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:33:42.858Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 1", + "itemId": "b8c93f7de0c94d33a88d2c5184dab00c", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo1", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Very Hard Skull", + "caption": "Icon_Charm_Skull_VeryHard.png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/465e1e72338f4f8781023b9b591575cc.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/29b8587f49464e52b6ee45e0d54cf034.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-05T18:42:38.602Z", + "discountPurchaseAt": "2023-09-05T18:42:38.602Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-05T18:42:36.927Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 2", + "itemId": "84037598ee714419a7664eb5211e5d26", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo2", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:24:12.826Z", + "discountPurchaseAt": "2023-09-06T05:24:12.826Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:24:09.282Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 3", + "itemId": "98b49682be6f432cbea26d2d159e348a", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo3", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:28:53.94Z", + "discountPurchaseAt": "2023-09-06T05:28:53.94Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:28:50.385Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 4", + "itemId": "a5fe3dcca97245419b349f50bb189f6c", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo4", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:35:36.336Z", + "discountPurchaseAt": "2023-09-06T05:35:36.336Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:35:32.72Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 5", + "itemId": "6b8203a3f2144fc4aa04776db98a8818", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo5", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:39:42.504Z", + "discountPurchaseAt": "2023-09-06T05:39:42.504Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityEpic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:39:38.873Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Charm 6", + "itemId": "d815e8fe7d2d4901bcd57d6e98f85219", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo6", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Charm 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T05:44:00.763Z", + "discountPurchaseAt": "2023-09-06T05:44:00.763Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityEpic" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T05:43:57.111Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Gloves", + "itemId": "25a3807a831e4855a54283e777865af8", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_accessory_gloves_pd2promo", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Gloves", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:18:22.36Z", + "discountPurchaseAt": "2023-09-06T06:18:22.36Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:18:18.601Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Mask", + "itemId": "631b5bb263c04c33ae6ad3f3d4e3696e", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_mask_pd2promo", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Mask", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:44:07.212Z", + "discountPurchaseAt": "2023-09-06T06:44:07.212Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityEpic", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:44:03.353Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 PlayStation Promo Suit", + "itemId": "995619ddfd7e42dfb895cc2326ac334f", + "baseAppId": "", + "sku": "pd3_playstation_cosmetic_suit_pd2promo", + "namespace": "pd3", + "name": "PD2 PlayStation Promo Suit", + "entitlementType": "DURABLE", + "categoryPath": "/Suit", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:32:59.669Z", + "discountPurchaseAt": "2023-09-06T06:32:59.669Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "PlayStation", + "RarityRare", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:32:55.888Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 1", + "itemId": "2cffe14329c64be5b423de391c2955cd", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo1", + "namespace": "pd3", + "name": "PD2 Promo Charm 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Very Hard Skull", + "caption": "Icon_Charm_Skull_VeryHard.png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/fcdc9d2c01514fb3b8cc14a5ee3afd55.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/c6dfd2c22f5143f0a4a049802f741d12.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:18:12.522Z", + "discountPurchaseAt": "2023-02-22T14:18:12.522Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:18:12.495Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 2", + "itemId": "3841d23ab0c14d518ce13d70c03443fe", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo2", + "namespace": "pd3", + "name": "PD2 Promo Charm 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Overkill Skull", + "caption": "Icon_Charm_Skull_Overkill.png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/4480186218bb41afb84c68fd948e2ba5.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3ab165e0c6284e32b8239a15b21a0f34.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:31:40.734Z", + "discountPurchaseAt": "2023-02-22T14:31:40.734Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:31:40.707Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 3", + "itemId": "7254522dd58e4f8cbb939b89496fa31b", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo3", + "namespace": "pd3", + "name": "PD2 Promo Charm 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Mayhem Skull", + "caption": "Icon_Charm_Skull_Mayhem (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/8a54770890fc4dada1d4f779db899e40.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/0a62ff59642445a98f5b0bf4786452e2.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:33:01.891Z", + "discountPurchaseAt": "2023-02-22T14:33:01.891Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:33:01.885Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 4", + "itemId": "e4d7af8a113548bc8b184d66fdf4bcc6", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo4", + "namespace": "pd3", + "name": "PD2 Promo Charm 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Death Wish Skull", + "caption": "Icon_Charm_Skull_DeathWish (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/03dbdd51f55e49eaa1aa4952044c5539.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3c244ea56ed2468d929b46ceae30c9a6.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:34:29.163Z", + "discountPurchaseAt": "2023-02-22T14:34:29.163Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:34:29.122Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 5", + "itemId": "fcc48b191d434526804c18c17bd638d2", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo5", + "namespace": "pd3", + "name": "PD2 Promo Charm 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Death Sentence Skull", + "caption": "Icon_Charm_DeathSentence (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/046df7664ef24518ab17f916573164a4.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/b64be546db534e36bc3d3184688d365e.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:36:45.312Z", + "discountPurchaseAt": "2023-02-22T14:36:45.312Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:36:45.271Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Charm 6", + "itemId": "28d482c5dbb14de786f640c202d60950", + "baseAppId": "", + "sku": "pd3_cosmetic_weapon_charm_pd2promo6", + "namespace": "pd3", + "name": "PD2 Promo Charm 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "One Down Skull", + "caption": "Icon_Charm_DeathSentenceOneDown (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3645806c895d4262a376d03d0ee2e799.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/de1b0403a1224681b9e5342140906dac.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T14:37:28.832Z", + "discountPurchaseAt": "2023-02-22T14:37:28.832Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityEpic", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T14:37:28.793Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Gloves", + "itemId": "638bf75ba8394a508e05b52117eceee4", + "baseAppId": "", + "sku": "pd3_cosmetic_accessory_gloves_pd2promo", + "namespace": "pd3", + "name": "PD2 Promo Gloves", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Fleur-de-lis", + "caption": "Icon_Glove_Fleur_de_Lys (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/7f48204542a24dd29ef39198d27442df.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/29849255e5a440edbab216102bb1f36f.png" + } + ], + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-22T15:12:39.722Z", + "discountPurchaseAt": "2023-02-22T15:12:39.722Z" + } + ], + "itemQty": {}, + "tags": [ + "RarityRare", + "Premium", + "ReportsTelemetry" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-02-22T15:12:39.682Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Promo Mask", + "itemId": "865b127704cd40fe9284cc1f4023886f", + "baseAppId": "", + "sku": "pd3_cosmetic_mask_pd2promo", + "namespace": "pd3", + "name": "PD2 Promo Mask", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", + "images": [ + { + "as": "OG American Dream", + "caption": "Icon_Mask_Dallas_Old_Mask.png", + "height": 700, + "width": 700, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/48e19befc56742f9bf84926e4965e009.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/6b4e56b2270a4f73ba6b55ab1c1128e2.png" + } + ], "regionData": [ { - "price": 675000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 675000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T13:58:14.122Z" + "purchaseAt": "2023-02-22T15:10:36.725Z", + "discountPurchaseAt": "2023-02-22T15:10:36.725Z" } ], "itemQty": {}, "tags": [ - "PriceProgression3", - "GoldExchangeVendor" + "RarityEpic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T13:58:14.142Z", + "createdAt": "2023-02-22T15:10:36.685Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 4", - "itemId": "61b0f573fb154321b4be8e3a6ce96141", - "sku": "pd3_coin_goldlarge4", + "title": "PD2 Promo Suit", + "itemId": "533872e42ab84d00ba32355ea2de792f", + "baseAppId": "", + "sku": "pd3_cosmetic_suit_pd2promo", "namespace": "pd3", - "name": "Gold Price Large 4", - "entitlementType": "CONSUMABLE", - "useCount": 10, - "stackable": true, - "categoryPath": "/Coin", + "name": "PD2 Promo Suit", + "entitlementType": "DURABLE", + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Echelon", + "caption": "Icon_PromoSuit_Echelon (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/2ba67c4e84354c51837d09ef61b30f7e.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3e758d556cf34f9487b038a9574e36fe.png" + } + ], "regionData": [ { - "price": 900000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 900000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T13:59:26.959Z" + "purchaseAt": "2023-02-22T15:15:09.497Z", + "discountPurchaseAt": "2023-02-22T15:15:09.497Z" } ], "itemQty": {}, "tags": [ - "PriceProgression4", - "GoldExchangeVendor" + "RarityRare", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T13:59:26.972Z", + "createdAt": "2023-02-22T15:15:09.45Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 5", - "itemId": "6fb7f60490b24943ba6237029f7f6fe9", - "sku": "pd3_coin_goldlarge5", + "title": "PD2 Steam Promo Charm 1", + "itemId": "c1ad684a4d2840dcb8e116182cfe2b3b", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo1", "namespace": "pd3", - "name": "Gold Price Large 5", + "name": "PD2 Steam Promo Charm 1", "entitlementType": "CONSUMABLE", - "useCount": 10, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 1350000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1350000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:00:46.397Z" + "purchaseAt": "2023-09-05T18:39:30.263Z", + "discountPurchaseAt": "2023-09-05T18:39:30.263Z" } ], "itemQty": {}, "tags": [ - "PriceProgression5", - "GoldExchangeVendor" + "PlatformOnly", + "Steam", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:00:46.413Z", + "createdAt": "2023-09-05T18:39:28.601Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 6", - "itemId": "13d4ed273973426b85e2150c0b89f91f", - "sku": "pd3_coin_goldlarge6", + "title": "PD2 Steam Promo Charm 2", + "itemId": "ba744265a0e7486a819ad9df1978ab2d", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo2", "namespace": "pd3", - "name": "Gold Price Large 6", + "name": "PD2 Steam Promo Charm 2", "entitlementType": "CONSUMABLE", - "useCount": 10, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 1800000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1800000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:02:04.965Z" + "purchaseAt": "2023-09-06T05:21:35.841Z", + "discountPurchaseAt": "2023-09-06T05:21:35.841Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression6" + "PlatformOnly", + "Steam", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:02:04.972Z", + "createdAt": "2023-09-06T05:21:32.311Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 7", - "itemId": "c772a6645fde437a8f9155f7c0934cee", - "sku": "pd3_coin_goldlarge7", + "title": "PD2 Steam Promo Charm 3", + "itemId": "6718c60287d34d94b0cf371171b10610", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo3", "namespace": "pd3", - "name": "Gold Price Large 7", + "name": "PD2 Steam Promo Charm 3", "entitlementType": "CONSUMABLE", - "useCount": 10, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 2700000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 2700000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:03:26.979Z" + "purchaseAt": "2023-09-06T05:26:36.78Z", + "discountPurchaseAt": "2023-09-06T05:26:36.78Z" } ], "itemQty": {}, "tags": [ - "PriceProgression7", - "GoldExchangeVendor" + "PlatformOnly", + "Steam", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:03:26.989Z", + "createdAt": "2023-09-06T05:26:33.161Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 8", - "itemId": "980fe380fbba49fcb8f741e03cf1df39", - "sku": "pd3_coin_goldlarge8", + "title": "PD2 Steam Promo Charm 4", + "itemId": "efbb0361613f480bb945299529648282", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo4", "namespace": "pd3", - "name": "Gold Price Large 8", + "name": "PD2 Steam Promo Charm 4", "entitlementType": "CONSUMABLE", - "useCount": 10, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 5400000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5400000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:05:25.657Z" + "purchaseAt": "2023-09-06T05:32:59.917Z", + "discountPurchaseAt": "2023-09-06T05:32:59.917Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression8" + "PlatformOnly", + "Steam", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:05:25.669Z", + "createdAt": "2023-09-06T05:32:56.323Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Large 9", - "itemId": "f8672d23710b4cb19d8a2f137df5e93d", - "sku": "pd3_coin_goldlarge9", + "title": "PD2 Steam Promo Charm 5", + "itemId": "fb2a14b9cc0c4aa4a29c41ae7eabe37c", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo5", "namespace": "pd3", - "name": "Gold Price Large 9", + "name": "PD2 Steam Promo Charm 5", "entitlementType": "CONSUMABLE", - "useCount": 10, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 7200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 7200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T14:06:34.880Z" + "purchaseAt": "2023-09-06T05:37:54.097Z", + "discountPurchaseAt": "2023-09-06T05:37:54.097Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression9" + "PlatformOnly", + "RarityEpic", + "Steam" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T14:06:34.888Z", + "createdAt": "2023-09-06T05:37:50.469Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 0", - "itemId": "ed477be545ee4767a705ef8fde8b5cf5", - "sku": "pd3_coin_goldmedium0", + "title": "PD2 Steam Promo Charm 6", + "itemId": "92b5f6b6ec5743c7ab7ed05234e0959a", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo6", "namespace": "pd3", - "name": "Gold Price Medium 0", + "name": "PD2 Steam Promo Charm 6", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 45000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 45000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T09:51:15.072Z" + "purchaseAt": "2023-09-06T05:41:58.473Z", + "discountPurchaseAt": "2023-09-06T05:41:58.473Z" } ], "itemQty": {}, "tags": [ - "PriceProgression0", - "GoldExchangeVendor" + "PlatformOnly", + "RarityEpic", + "Steam" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T09:51:15.277Z", + "createdAt": "2023-09-06T05:41:54.832Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 1", - "itemId": "3449a9be2ee643cb84cf9efd20359b7e", - "sku": "pd3_coin_goldmedium1", + "title": "PD2 Steam Promo Gloves", + "itemId": "3dc0bccf84d2470a9cbd6efebafb0914", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_accessory_gloves_pd2promo", "namespace": "pd3", - "name": "Gold Price Medium 1", - "entitlementType": "CONSUMABLE", - "useCount": 5, - "stackable": true, - "categoryPath": "/Coin", + "name": "PD2 Steam Promo Gloves", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 112500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 112500, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T09:54:14.909Z" + "purchaseAt": "2023-09-06T06:14:41.424Z", + "discountPurchaseAt": "2023-09-06T06:14:41.424Z" } ], "itemQty": {}, "tags": [ - "PriceProgression1", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "Steam", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T09:54:14.867Z", + "createdAt": "2023-09-06T06:14:37.697Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 10", - "itemId": "daac0b6f046d49999c38313852417880", - "sku": "pd3_coin_goldmedium10", + "title": "PD2 Steam Promo Mask", + "itemId": "afeb2607f21c4f6fab5f463ed791f5e9", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_mask_pd2promo", "namespace": "pd3", - "name": "Gold Price Medium 10", + "name": "PD2 Steam Promo Mask", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:42:21.061Z", + "discountPurchaseAt": "2023-09-06T06:42:21.061Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "RarityEpic", + "Steam", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:42:17.276Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 Steam Promo Suit", + "itemId": "e1fdf51794514bb4ae7120b298492297", + "baseAppId": "", + "sku": "pd3_steam_cosmetic_suit_pd2promo", + "namespace": "pd3", + "name": "PD2 Steam Promo Suit", + "entitlementType": "DURABLE", + "categoryPath": "/Suit", + "status": "ACTIVE", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", + "regionData": [ + { + "price": 0, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 0, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-09-06T06:31:03.519Z", + "discountPurchaseAt": "2023-09-06T06:31:03.519Z" + } + ], + "itemQty": {}, + "tags": [ + "PlatformOnly", + "RarityRare", + "Steam", + "Premium" + ], + "features": [], + "maxCountPerUser": 1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2023-09-06T06:30:59.724Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "PD2 XBox Promo Charm 1 ", + "itemId": "c6b139b215e94d698b8e7b7b1c6e351d", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo1", + "namespace": "pd3", + "name": "PD2 XBox Promo Charm 1 ", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", + "images": [ + { + "as": "Very Hard Skull", + "caption": "Icon_Charm_Skull_VeryHard (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/55eeb2105b5546e299cf9d9e18473d8d.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/84f882648cf24be69cdade98fe1461c0.png" + } + ], "regionData": [ { - "price": 4500000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 4500000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:58:41.915Z" + "purchaseAt": "2023-09-05T18:41:29.205Z", + "discountPurchaseAt": "2023-09-05T18:41:29.205Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:58:41.916Z", + "createdAt": "2023-09-05T18:41:27.52Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 2", - "itemId": "986a616bedde4f6d8faf491f33e3e0b4", - "sku": "pd3_coin_goldmedium2", + "title": "PD2 XBox Promo Charm 2", + "itemId": "3e4615d6be814e9e9ea9f6678b98b22e", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo2", "namespace": "pd3", - "name": "Gold Price Medium 2", + "name": "PD2 XBox Promo Charm 2", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 225000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 225000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:42:36.490Z" + "purchaseAt": "2023-09-06T05:22:50.612Z", + "discountPurchaseAt": "2023-09-06T05:22:50.612Z" } ], "itemQty": {}, "tags": [ - "PriceProgression2", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:42:36.488Z", + "createdAt": "2023-09-06T05:22:47.165Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 3", - "itemId": "5659ae7b97304ad1b61e4f2c0acfc3fb", - "sku": "pd3_coin_goldmedium3", + "title": "PD2 XBox Promo Charm 3", + "itemId": "7967b51aea1f43558b93b560f56aa723", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo3", "namespace": "pd3", - "name": "Gold Price Medium 3", + "name": "PD2 XBox Promo Charm 3", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", - "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "listable": true, + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 337500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 337500, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:44:41.084Z" + "purchaseAt": "2023-09-06T05:27:24.631Z", + "discountPurchaseAt": "2023-09-06T05:27:24.631Z" } ], "itemQty": {}, "tags": [ - "PriceProgression3", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:44:41.077Z", + "createdAt": "2023-09-06T05:27:21.027Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 4", - "itemId": "f1a2bfeeef784b9cb175eb746cb10dc8", - "sku": "pd3_coin_goldmedium4", + "title": "PD2 XBox Promo Charm 4", + "itemId": "232dacfbc3644819823110bc58d0c0ba", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo4", "namespace": "pd3", - "name": "Gold Price Medium 4", + "name": "PD2 XBox Promo Charm 4", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 450000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 450000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:47:14.816Z" + "purchaseAt": "2023-09-06T05:34:10.999Z", + "discountPurchaseAt": "2023-09-06T05:34:10.999Z" } ], "itemQty": {}, "tags": [ - "PriceProgression4", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:47:14.814Z", + "createdAt": "2023-09-06T05:34:07.349Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 5", - "itemId": "ef27d3146d4447dfb9ef7e45b6df198a", - "sku": "pd3_coin_goldmedium5", + "title": "PD2 XBox Promo Charm 5", + "itemId": "88fd6ef64ba547fbb217c69383fa7a25", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo5", "namespace": "pd3", - "name": "Gold Price Medium 5", + "name": "PD2 XBox Promo Charm 5", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 675000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 675000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:48:46.252Z" + "purchaseAt": "2023-09-06T05:38:44.582Z", + "discountPurchaseAt": "2023-09-06T05:38:44.582Z" } ], "itemQty": {}, "tags": [ - "PriceProgression5", - "GoldExchangeVendor" + "PlatformOnly", + "RarityEpic", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:48:46.245Z", + "createdAt": "2023-09-06T05:38:41.075Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 6", - "itemId": "b2da7754ddd846919fdb8d3aea5a28c2", - "sku": "pd3_coin_goldmedium6", + "title": "PD2 XBox Promo Charm 6", + "itemId": "eb3fb58af81e4d6ca839865ae607d09d", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo6", "namespace": "pd3", - "name": "Gold Price Medium 6", + "name": "PD2 XBox Promo Charm 6", "entitlementType": "CONSUMABLE", - "useCount": 5, + "useCount": 1, "stackable": true, - "categoryPath": "/Coin", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 900000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 900000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:50:39.259Z" + "purchaseAt": "2023-09-06T05:43:02.428Z", + "discountPurchaseAt": "2023-09-06T05:43:02.428Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression6" + "PlatformOnly", + "RarityEpic", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:50:39.247Z", + "createdAt": "2023-09-06T05:42:58.788Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 7", - "itemId": "1449deedea6f4570b477751c46c56419", - "sku": "pd3_coin_goldmedium7", + "title": "PD2 XBox Promo Gloves", + "itemId": "18d84895e4bd4fd5b0d2e97b16a0126e", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_accessory_gloves_pd2promo", "namespace": "pd3", - "name": "Gold Price Medium 7", - "entitlementType": "CONSUMABLE", - "useCount": 5, - "stackable": true, - "categoryPath": "/Coin", + "name": "PD2 XBox Promo Gloves", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 1350000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1350000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:55:07.448Z" + "purchaseAt": "2023-09-06T06:17:29.636Z", + "discountPurchaseAt": "2023-09-06T06:17:29.636Z" } ], "itemQty": {}, "tags": [ - "PriceProgression7", - "GoldExchangeVendor" + "PlatformOnly", + "RarityRare", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:55:07.461Z", + "createdAt": "2023-09-06T06:17:25.856Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 8", - "itemId": "96ea49e506cb4515ba9913d7b00b3e8d", - "sku": "pd3_coin_goldmedium8", + "title": "PD2 XBox Promo Mask", + "itemId": "85c5c2e29a874c71ababdd94f771c5e9", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_mask_pd2promo", "namespace": "pd3", - "name": "Gold Price Medium 8", - "entitlementType": "CONSUMABLE", - "useCount": 5, - "stackable": true, - "categoryPath": "/Coin", + "name": "PD2 XBox Promo Mask", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 2700000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 2700000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:56:14.367Z" + "purchaseAt": "2023-09-06T06:43:19.371Z", + "discountPurchaseAt": "2023-09-06T06:43:19.371Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression8" + "PlatformOnly", + "RarityEpic", + "Premium", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:56:14.366Z", + "createdAt": "2023-09-06T06:43:15.515Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Gold Price Medium 9", - "itemId": "a7d55ad216614c10a66802409d462220", - "sku": "pd3_coin_goldmedium9", + "title": "PD2 XBox Promo Suit", + "itemId": "966a4b405b94462e8c5ad7b9950304c8", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_suit_pd2promo", "namespace": "pd3", - "name": "Gold Price Medium 9", - "entitlementType": "CONSUMABLE", - "useCount": 5, - "stackable": true, - "categoryPath": "/Coin", + "name": "PD2 XBox Promo Suit", + "entitlementType": "DURABLE", + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "GOLD", + "purchasable": false, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 3600000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3600000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-12-20T12:57:09.893Z" + "purchaseAt": "2023-09-06T06:32:03.01Z", + "discountPurchaseAt": "2023-09-06T06:32:03.01Z" } ], "itemQty": {}, "tags": [ - "GoldExchangeVendor", - "PriceProgression9" + "PlatformOnly", + "RarityRare", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-12-20T12:57:09.884Z", + "createdAt": "2023-09-06T06:31:59.221Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Halloween 23 Preset ", - "itemId": "05564d6351b54a519486567a1ca0bf22", + "title": "PP02 mask mould 01", + "itemId": "d70bf98b3da14bff9249cef6472afd32", "baseAppId": "", - "sku": "pd3_wpn_preset_halloween23", + "sku": "cosmetic_pp_02_maskmould_01", "namespace": "pd3", - "name": "Halloween 23 Preset ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponPreset", + "name": "PP02 mask mould 01", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-27T13:33:12.249Z" + "purchaseAt": "2024-02-16T17:15:19.617Z", + "discountPurchaseAt": "2024-02-16T17:15:19.617Z" } ], "itemQty": {}, - "tags": [ - "CombatEquipmentVendor" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-27T13:33:13.894Z", + "createdAt": "2024-02-16T17:15:18.915Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Halloween Mask 2023", - "itemId": "ebeb87ff303e4c65be770c6c0b51a528", + "title": "PayDay Credits", + "itemId": "a429582c433444d592485f59311be1ff", "baseAppId": "", - "sku": "pd3_cosmetic_mask_halloween23", + "sku": "pd3_coin_paydaycredits", "namespace": "pd3", - "name": "Halloween Mask 2023", + "name": "PayDay Credits", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumMask", + "stackable": true, + "categoryPath": "/Coin", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "COINS", + "targetCurrencyCode": "CRED", "regionData": [ { - "price": 10, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10, - "currencyCode": "GOLD", - "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-10-17T13:44:27.633Z" + "discountedPrice": 100, + "currencyCode": "USD", + "currencyType": "REAL", + "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "CharacterVendor" + "GoldExchangeVendor", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "features": [ + "iap-sync-steam" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-17T13:47:27.321Z", + "createdAt": "2022-09-15T15:02:09.009Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heavy Ballistic Vest", - "itemId": "0355159b70d845d5be98bbbd82614957", + "title": "Pearl Mould", + "itemId": "caf1f9376d324979a2c67f2d8cd0de53", "baseAppId": "", - "sku": "pd3_armor_heavyvest", + "sku": "pd3_cosmetic_mask_mould_pearl", "namespace": "pd3", - "name": "Heavy Ballistic Vest", - "entitlementType": "DURABLE", - "categoryPath": "/Armor", + "name": "Pearl Mould", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-10T15:04:43.863Z", + "discountPurchaseAt": "2023-02-10T15:04:43.863Z" } ], "itemQty": {}, "tags": [ + "RarityUncommon", + "CharacterVendor", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T10:15:23.582Z", + "createdAt": "2023-02-10T15:04:43.732Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Art Gallery", - "itemId": "66e4918f797d4bd0b8e8eb43e8a15687", + "title": "Pistol P226", + "itemId": "608e2ed558594f4097694d8c8abedf8b", "baseAppId": "", - "sku": "pd3_steam_heist_art_gallery", + "sku": "pd3_wpn_pistol_s40", "namespace": "pd3", - "name": "Heist Art Gallery", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "Pistol S40", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 75000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 75000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T12:21:09.061Z", - "discountPurchaseAt": "2023-10-31T12:21:09.061Z" + "purchaseAt": "2023-01-13T18:00:00Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-31T12:21:08.848Z", + "createdAt": "2021-10-29T12:10:27.272Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Art Gallery", - "itemId": "489d79f9aab64f449f67748aa97259d0", + "title": "Pistol S403", + "itemId": "f59ee45094f8470fb03430f648370a54", "baseAppId": "", - "sku": "pd3_heist_art_gallery", + "sku": "pd3_wpn_pistol_s403", "namespace": "pd3", - "name": "Heist Art Gallery", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "Pistol S403", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T14:31:38.567Z", - "discountPurchaseAt": "2023-10-31T14:31:38.567Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "features": [], - "maxCountPerUser": 1, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel59" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-31T14:31:37.968Z", + "createdAt": "2022-10-25T11:57:21.201Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Branch Bank", - "itemId": "64278f9403474eecace83eb2035030b8", + "title": "Pistol SPM 11", + "itemId": "029240e91fe4408796428e79fcadcefb", "baseAppId": "", - "sku": "pd3_heist_branch_bank", + "sku": "pd3_wpn_pistol_spm11", "namespace": "pd3", - "name": "Heist Branch Bank", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "Pistol SPM 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T14:48:39.348Z", - "discountPurchaseAt": "2023-11-02T14:48:39.348Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "features": [], - "maxCountPerUser": 1, + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel38" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T14:48:38.528Z", + "createdAt": "2022-10-21T08:23:25.562Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Cargo Dock", - "itemId": "de6b03a887db46ebb5f3c189eee0736c", + "title": "Pistol G17", + "itemId": "54883ae05a214c9790fe2ba7c37121d1", "baseAppId": "", - "sku": "pd3_heist_cargo_dock", + "sku": "pd3_wpn_pistol_stryk7", "namespace": "pd3", - "name": "Heist Cargo Dock", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "Pistol Stryk7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 150000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 150000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:21:04.982Z", - "discountPurchaseAt": "2023-11-02T12:21:04.982Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "features": [], - "maxCountPerUser": 1, + "boundItemIds": [], + "tags": [ + "CombatEquipmentVendor", + "InfamyLevel25" + ], + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:21:04.606Z", + "createdAt": "2022-05-05T11:53:49.212Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Data Center Epic", - "itemId": "db780556b7c2474fbe790ebd0bf8cc61", + "title": "Pistol T32", + "itemId": "f70a58560d4e4b9fb53a2299b2df1803", "baseAppId": "", - "sku": "pd3_epic_heist_data_center", + "sku": "pd3_wpn_pistol_t32", "namespace": "pd3", - "name": "Heist Data Center Epic", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "Pistol T32", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:36:25.872Z", - "discountPurchaseAt": "2023-11-02T12:36:25.872Z" + "purchaseAt": "2024-06-27T13:21:00.632Z", + "discountPurchaseAt": "2024-06-27T13:21:00.632Z" } ], "itemQty": {}, - "boundItemIds": [ - "711cd306bb1142678b74ffeb51072380" - ], "tags": [ - "PlatformOnly", - "Epic" + "CombatEquipmentVendor", + "InfamyLevel80" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:36:25.444Z", + "createdAt": "2024-06-27T13:20:37.689Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Data Center PlayStation", - "itemId": "a6f6219f6ab04b3b9d90ae7c6778b379", + "title": "PlayStation AssaultRifle CHS3", + "itemId": "7b07fcda67c542c3ad76b282ea765710", "baseAppId": "", - "sku": "pd3_playstation_heist_data_center", + "sku": "pd3_playstation_wpn_assaultrifle_chs3", "namespace": "pd3", - "name": "Heist Data Center PlayStation", + "name": "PlayStation AssaultRifle CHS3", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Heist", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:34:51.822Z", - "discountPurchaseAt": "2023-11-02T12:34:51.822Z" + "purchaseAt": "2024-06-24T13:12:49.532Z", + "discountPurchaseAt": "2024-06-24T13:12:49.532Z" } ], "itemQty": {}, - "boundItemIds": [ - "2b1086a1125a4b75ad9bfa0af7128f12" - ], "tags": [ "PlatformOnly", - "PlayStation" + "CombatEquipmentVendor", + "PlayStation", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:34:51.411Z", + "createdAt": "2024-06-24T13:12:31.012Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Data Center Steam", - "itemId": "9b3e2be8772e4674bb85dc28f533924e", + "title": "PlayStation AssaultRifle CHS3 - Vendor Item", + "itemId": "874daa64c6f445f385c30e3adbdc0348", "baseAppId": "", - "sku": "pd3_steam_heist_data_center", + "sku": "pd3_playstation_wpn_assaultrifle_chs3_vendor", "namespace": "pd3", - "name": "Heist Data Center Steam", + "name": "PlayStation AssaultRifle CHS3 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -8125,77 +32388,81 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T07:22:18.366Z", - "discountPurchaseAt": "2023-11-02T07:22:18.366Z" + "purchaseAt": "2024-06-24T13:18:09.573Z", + "discountPurchaseAt": "2024-06-24T13:18:09.573Z" } ], "itemQty": {}, "boundItemIds": [ - "f7bb2ffd415b4e39be0c09ebb6736b9a" + "49981ef260c34b028104e721284053d4", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" ], "tags": [ "PlatformOnly", - "Steam" + "PlayStation" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T07:22:15.045Z", + "createdAt": "2024-06-24T13:17:51.051Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Data Center Xbox", - "itemId": "31a224936c0846799ce55efaa3245d9d", + "title": "PlayStation AssaultRifle RG5", + "itemId": "aaf92236fee644ee8c2a0020b7ff4747", "baseAppId": "", - "sku": "pd3_xbox_heist_data_center", + "sku": "pd3_playstation_wpn_assaultrifle_rg5", "namespace": "pd3", - "name": "Heist Data Center Xbox", - "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "name": "PlayStation AssaultRifle RG5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:35:48.073Z", - "discountPurchaseAt": "2023-11-02T12:35:48.073Z" + "purchaseAt": "2024-02-14T12:36:43.043Z", + "discountPurchaseAt": "2024-02-14T12:36:43.043Z" } ], "itemQty": {}, - "boundItemIds": [ - "dd0800a21b804c27b55ae954de880491" - ], "tags": [ "PlatformOnly", - "XBox" + "CombatEquipmentVendor", + "PlayStation", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:35:47.654Z", + "createdAt": "2024-02-14T12:36:43.825Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Gold Sharke", - "itemId": "51a4d1775a544f93b9dfdcf48f068c77", + "title": "PlayStation AssaultRifle RG5 - Vendor Item ", + "itemId": "36e8443f80794c18ba9d8cdf548f2828", "baseAppId": "", - "sku": "pd3_heist_gold_sharke", + "sku": "pd3_playstation_wpn_assaultrifle_rg5_vendor", "namespace": "pd3", - "name": "Heist Gold Sharke", + "name": "PlayStation AssaultRifle RG5 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -8209,32 +32476,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T14:50:38.168Z", - "discountPurchaseAt": "2023-11-02T14:50:38.168Z" + "purchaseAt": "2024-02-14T12:57:14.928Z", + "discountPurchaseAt": "2024-02-14T12:57:14.928Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "47ed89c6d7fa496095c0adc4f3a9394c", + "88e8728f2a814997ba5a4ce7521bde4f" + ], + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T14:50:37.350Z", + "createdAt": "2024-02-14T12:57:15.727Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Jewelry Store", - "itemId": "452409c6100047a8bf7dc0a8e2eeda5b", + "title": "PlayStation DLC01 Heist pack ", + "itemId": "2b1086a1125a4b75ad9bfa0af7128f12", "baseAppId": "", - "sku": "pd3_heist_jewelry_store", + "sku": "pd3_playstation_dlc01_heist_pack", "namespace": "pd3", - "name": "Heist Jewelry Store", + "name": "PlayStation DLC01 Heist pack ", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8244,32 +32520,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:23:11.347Z", - "discountPurchaseAt": "2023-11-02T12:23:11.347Z" + "purchaseAt": "2023-11-10T13:46:23.883Z", + "discountPurchaseAt": "2023-11-10T13:46:23.883Z" } ], - "itemQty": {}, + "itemIds": [ + "a6f6219f6ab04b3b9d90ae7c6778b379" + ], + "itemQty": { + "a6f6219f6ab04b3b9d90ae7c6778b379": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:23:10.954Z", + "createdAt": "2023-11-10T13:46:19.014Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Night Club", - "itemId": "b1476452baba4a3c8682e479acc44a46", + "title": "PlayStation DLC01 Tailor pack", + "itemId": "5a5f6556433340a5bf5b9df009500923", "baseAppId": "", - "sku": "pd3_heist_night_club", + "sku": "pd3_playstation_dlc01_tailor_pack", "namespace": "pd3", - "name": "Heist Night Club", + "name": "PlayStation DLC01 Tailor pack", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8279,32 +32564,63 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:24:10.163Z", - "discountPurchaseAt": "2023-11-02T12:24:10.163Z" + "purchaseAt": "2023-11-15T15:00:20.057Z", + "discountPurchaseAt": "2023-11-15T15:00:20.057Z" } ], - "itemQty": {}, + "itemIds": [ + "1bd8171c04074c9fad15981759c93e6d", + "5ec14652f10b454db1fa6e5407ecc3c7", + "99cab930bc954c799bccefa91f79234c", + "754680e38dd74f7d914336a704162fb8", + "5c70de7544564ae590fdbb2d8eda5961", + "b2f20953043e4e91acd024cb019dd22b", + "2bad50b4125d41c9889b61ee94835d44", + "c7d62ea4cbc24792bf90dd45bbdee1d5", + "b5c5c8b0975245649fa3543c275dd2aa", + "9cd0150a7cad409a9abd29c451fbc9df", + "3468072166c4415da28d1ea8e6de1f1a", + "ab79e2bf8acb4f0785aaa41d1cabccc9" + ], + "itemQty": { + "2bad50b4125d41c9889b61ee94835d44": 1, + "b5c5c8b0975245649fa3543c275dd2aa": 1, + "754680e38dd74f7d914336a704162fb8": 1, + "3468072166c4415da28d1ea8e6de1f1a": 1, + "ab79e2bf8acb4f0785aaa41d1cabccc9": 1, + "c7d62ea4cbc24792bf90dd45bbdee1d5": 1, + "5ec14652f10b454db1fa6e5407ecc3c7": 1, + "9cd0150a7cad409a9abd29c451fbc9df": 1, + "1bd8171c04074c9fad15981759c93e6d": 1, + "5c70de7544564ae590fdbb2d8eda5961": 1, + "b2f20953043e4e91acd024cb019dd22b": 1, + "99cab930bc954c799bccefa91f79234c": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:24:09.774Z", + "createdAt": "2023-11-15T15:00:05.526Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Pent House", - "itemId": "0165fd5b2b704d6ca4f67f376e343b0d", + "title": "PlayStation DLC01 Weapon pack ", + "itemId": "926f52f52f0c4103aab2086175b947fa", "baseAppId": "", - "sku": "pd3_heist_pent_house", + "sku": "pd3_playstation_dlc01_weapon_pack", "namespace": "pd3", - "name": "Heist Pent House", + "name": "PlayStation DLC01 Weapon pack ", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8314,32 +32630,51 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:25:06.126Z", - "discountPurchaseAt": "2023-11-02T12:25:06.126Z" + "purchaseAt": "2023-11-10T13:20:43.292Z", + "discountPurchaseAt": "2023-11-10T13:20:43.292Z" } ], - "itemQty": {}, + "itemIds": [ + "ec444dcf8a8445f18eae9835f7a57792", + "2ddf331786e74dad9e6dbbcb549a7af7", + "ab1f5877c5934f7596fc8d52210a6bfa", + "de618e94a2dc499d99c3eb4967061c50", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "ab1770e446d3426a98cb20c7f62eb713" + ], + "itemQty": { + "ec444dcf8a8445f18eae9835f7a57792": 1, + "ab1770e446d3426a98cb20c7f62eb713": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 3, + "2ddf331786e74dad9e6dbbcb549a7af7": 1, + "ab1f5877c5934f7596fc8d52210a6bfa": 1, + "de618e94a2dc499d99c3eb4967061c50": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:25:05.743Z", + "createdAt": "2023-11-10T13:20:38.515Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Station", - "itemId": "4c1a3b8d1b3a4c32aff561c5d68c7eff", + "title": "PlayStation DLC02 Heist pack", + "itemId": "86f89185a7fa4c9e897f93bb7428ab1d", "baseAppId": "", - "sku": "pd3_heist_station", + "sku": "pd3_playstation_dlc02_heist_pack", "namespace": "pd3", - "name": "Heist Station", + "name": "PlayStation DLC02 Heist pack", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8349,32 +32684,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:27:51.488Z", - "discountPurchaseAt": "2023-11-02T12:27:51.489Z" + "purchaseAt": "2024-05-21T13:19:21.653Z", + "discountPurchaseAt": "2024-05-21T13:19:21.653Z" } ], - "itemQty": {}, + "itemIds": [ + "3d9b22d25d4d40af927169b92bf8e599" + ], + "itemQty": { + "3d9b22d25d4d40af927169b92bf8e599": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:27:51.076Z", + "createdAt": "2024-05-21T13:19:21.193Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Transport", - "itemId": "0435cf118b294d259227310105876663", + "title": "PlayStation DLC02 Tailor pack", + "itemId": "6656a9e1c3f5454589dd67dadfeabcb0", "baseAppId": "", - "sku": "pd3_heist_transport", + "sku": "pd3_playstation_dlc02_tailor_pack", "namespace": "pd3", - "name": "Heist Transport", + "name": "PlayStation DLC02 Tailor pack", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8384,32 +32728,63 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:26:04.158Z", - "discountPurchaseAt": "2023-11-02T12:26:04.158Z" + "purchaseAt": "2024-03-06T15:00:02.014Z", + "discountPurchaseAt": "2024-03-06T15:00:02.014Z" } ], - "itemQty": {}, + "itemIds": [ + "62a5a9e9e1164b2699e9de779a58a574", + "fcf4cb9f556b4dfdae67f952e5741820", + "b85fbcaf75ac402b804c36051dff04f2", + "fd66c2594d0a402ebec61c17de8e7662", + "e53a2a2646914c5395c7309ce775922c", + "e497067b6d244444a9989534f86eb4d5", + "e58d0b5cd80a4f8fb68b7d7010c5acef", + "1b3e212b6b714785a906d719a93b19c4", + "8ac2b1535038464682cbd18bc4babc77", + "c8dcad3ce1244f03a9434d32de68b541", + "bb77a697848a48d3a15978152bcf579a", + "b515668da7aa4eb4998ec237dea4eb86" + ], + "itemQty": { + "e53a2a2646914c5395c7309ce775922c": 1, + "c8dcad3ce1244f03a9434d32de68b541": 1, + "62a5a9e9e1164b2699e9de779a58a574": 1, + "b85fbcaf75ac402b804c36051dff04f2": 1, + "fd66c2594d0a402ebec61c17de8e7662": 1, + "e497067b6d244444a9989534f86eb4d5": 1, + "e58d0b5cd80a4f8fb68b7d7010c5acef": 1, + "1b3e212b6b714785a906d719a93b19c4": 1, + "8ac2b1535038464682cbd18bc4babc77": 1, + "fcf4cb9f556b4dfdae67f952e5741820": 1, + "bb77a697848a48d3a15978152bcf579a": 1, + "b515668da7aa4eb4998ec237dea4eb86": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:26:03.757Z", + "createdAt": "2024-03-06T15:00:02.341Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Heist Villa", - "itemId": "1855ea53b51c493a954500566db71326", + "title": "PlayStation DLC02 Weapon pack ", + "itemId": "47ed89c6d7fa496095c0adc4f3a9394c", "baseAppId": "", - "sku": "pd3_heist_villa", + "sku": "pd3_playstation_dlc02_weapon_pack", "namespace": "pd3", - "name": "Heist Villa", + "name": "PlayStation DLC02 Weapon pack ", "entitlementType": "DURABLE", - "categoryPath": "/Heist", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -8419,341 +32794,441 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-02T12:29:00.780Z", - "discountPurchaseAt": "2023-11-02T12:29:00.780Z" + "purchaseAt": "2024-02-14T15:47:34.527Z", + "discountPurchaseAt": "2024-02-14T15:47:34.527Z" } ], - "itemQty": {}, + "itemIds": [ + "36e8443f80794c18ba9d8cdf548f2828", + "060900d12765429bacd4ca86fe633817", + "d42d892b2de841f1bdab4e37b561250b", + "15ba36ac7d2c4654a5d0a1a2a6556ec4", + "4ee918867efa4e20a23cf7d25cc63ea1", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600" + ], + "itemQty": { + "d42d892b2de841f1bdab4e37b561250b": 1, + "4ee918867efa4e20a23cf7d25cc63ea1": 1, + "36e8443f80794c18ba9d8cdf548f2828": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "15ba36ac7d2c4654a5d0a1a2a6556ec4": 1, + "060900d12765429bacd4ca86fe633817": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, + "tags": [ + "PlatformOnly", + "PlayStation" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-02T12:29:00.371Z", + "createdAt": "2024-02-14T15:47:35.598Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Helicopter Pilot Art Gallery Preplanning asset", - "itemId": "3872ce94c1bf4ae49962e97e6eee4c13", + "title": "PlayStation DLC03 Heist pack", + "itemId": "9bdd6205acb148499a3fe9d7a95ee44d", "baseAppId": "", - "sku": "pd3_preplanning_artgallery_4", + "sku": "pd3_playstation_dlc03_heist_pack", "namespace": "pd3", - "name": "Helicopter Pilot Art Gallery Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "PlayStation DLC03 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T08:49:12.188Z", + "discountPurchaseAt": "2024-07-09T08:49:12.188Z" } ], - "itemQty": {}, + "itemIds": [ + "ba274ce3b39e4f4e8c73e9f753e1f7bb" + ], + "itemQty": { + "ba274ce3b39e4f4e8c73e9f753e1f7bb": 1 + }, "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-23T11:20:54.842Z", + "createdAt": "2024-07-09T08:49:13.214Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Hoxton Mould", - "itemId": "d046a0b0a47a48df864a3303a06131ce", + "title": "PlayStation DLC03 Weapon pack", + "itemId": "49981ef260c34b028104e721284053d4", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_hoxton", + "sku": "pd3_playstation_dlc03_weapon_pack", "namespace": "pd3", - "name": "Hoxton Mould", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "name": "PlayStation DLC03 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T15:00:51.543Z", - "discountPurchaseAt": "2023-02-10T15:00:51.543Z" + "purchaseAt": "2024-07-01T12:22:31.473Z", + "discountPurchaseAt": "2024-07-01T12:22:31.473Z" } ], - "itemQty": {}, + "itemIds": [ + "874daa64c6f445f385c30e3adbdc0348", + "9d211141972b46498436a64ba5b199cc", + "5d00492a70af4d2eb19f3bd562197494", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "782349c44a5644b5a57cf08177d270d8", + "f40aab1df6c847308fb4ecc87a776da8" + ], + "itemQty": { + "5d00492a70af4d2eb19f3bd562197494": 1, + "874daa64c6f445f385c30e3adbdc0348": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "9d211141972b46498436a64ba5b199cc": 1, + "782349c44a5644b5a57cf08177d270d8": 1, + "f40aab1df6c847308fb4ecc87a776da8": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T15:00:51.429Z", + "createdAt": "2024-07-01T12:22:02.657Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Hoxton Suit", - "itemId": "47df3749659448289077c224ab28ee28", + "title": "PlayStation DLC04 Heist pack", + "itemId": "a33229744d2149dcb3101934d2794d68", "baseAppId": "", - "sku": "pd3_suit_hoxton", + "sku": "pd3_playstation_dlc04_heist_pack", "namespace": "pd3", - "name": "Hoxton Suit", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "PlayStation DLC04 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-29T14:47:48.290Z" + "purchaseAt": "2024-08-16T13:13:40.203Z", + "discountPurchaseAt": "2024-08-16T13:13:40.203Z" } ], - "itemQty": {}, + "itemIds": [ + "6fe2d33da5d34711bdc490523be1d4fb" + ], + "itemQty": { + "6fe2d33da5d34711bdc490523be1d4fb": 1 + }, "tags": [ - "RarityCommon" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-29T14:47:48.115Z", + "createdAt": "2024-08-16T13:13:40.47Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Inside Man Keycard Night Club Preplanning asset", - "itemId": "ea9fd9afab3d4e88ab8f9276bd5e66b3", + "title": "PlayStation DLC04 Weapon pack", + "itemId": "5098b2b4214b4306967e7777953f99d6", "baseAppId": "", - "sku": "pd3_preplanning_nightclub_4", + "sku": "pd3_playstation_dlc04_weapon_pack", "namespace": "pd3", - "name": "Inside Man Keycard Night Club Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "PlayStation DLC04 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T12:13:48.013Z", + "discountPurchaseAt": "2024-07-25T12:13:48.013Z" } ], - "itemQty": {}, + "itemIds": [ + "fe164479fce2411c9252e083ab4a6f5b", + "e1e9b1e1c6fe4e99b464abbfeee93649", + "83c57bac06d54c5e997053892d40b2dc", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "a47b25b06de348f0a3fb1123519177ba", + "b2561d7e91764b7890f73ab80401d7a0" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "e1e9b1e1c6fe4e99b464abbfeee93649": 1, + "fe164479fce2411c9252e083ab4a6f5b": 1, + "a47b25b06de348f0a3fb1123519177ba": 1, + "b2561d7e91764b7890f73ab80401d7a0": 1, + "84d0c77410184162a1b300dcca87c600": 2, + "83c57bac06d54c5e997053892d40b2dc": 1 + }, "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "PlayStation" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-23T11:11:06.156Z", + "createdAt": "2024-07-25T12:13:13.846Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Joy Mould", - "itemId": "24bf710f835542cea32db7de28c23e52", + "title": "PlayStation JP Silver Edition Bundle", + "itemId": "d5661cf5254742c592716765ededa87a", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_joy", + "sku": "PD3_playstation_silver_jp_edition", "namespace": "pd3", - "name": "Joy Mould", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "name": "PlayStation JP Silver Edition Bundle", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T15:03:36.327Z", - "discountPurchaseAt": "2023-02-10T15:03:36.327Z" + "purchaseAt": "2024-03-15T10:36:22.747Z", + "discountPurchaseAt": "2024-03-15T10:36:22.747Z" } ], - "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" + "itemIds": [ + "a6f6219f6ab04b3b9d90ae7c6778b379", + "1bd8171c04074c9fad15981759c93e6d", + "5ec14652f10b454db1fa6e5407ecc3c7", + "ab79e2bf8acb4f0785aaa41d1cabccc9", + "99cab930bc954c799bccefa91f79234c", + "754680e38dd74f7d914336a704162fb8", + "5c70de7544564ae590fdbb2d8eda5961", + "b2f20953043e4e91acd024cb019dd22b", + "2bad50b4125d41c9889b61ee94835d44", + "c7d62ea4cbc24792bf90dd45bbdee1d5", + "b5c5c8b0975245649fa3543c275dd2aa", + "9cd0150a7cad409a9abd29c451fbc9df", + "3468072166c4415da28d1ea8e6de1f1a", + "ec444dcf8a8445f18eae9835f7a57792", + "2ddf331786e74dad9e6dbbcb549a7af7", + "ab1f5877c5934f7596fc8d52210a6bfa", + "de618e94a2dc499d99c3eb4967061c50", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "ab1770e446d3426a98cb20c7f62eb713" ], + "itemQty": { + "ab79e2bf8acb4f0785aaa41d1cabccc9": 1, + "3468072166c4415da28d1ea8e6de1f1a": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "5ec14652f10b454db1fa6e5407ecc3c7": 1, + "ab1f5877c5934f7596fc8d52210a6bfa": 1, + "de618e94a2dc499d99c3eb4967061c50": 1, + "b5c5c8b0975245649fa3543c275dd2aa": 1, + "ab1770e446d3426a98cb20c7f62eb713": 1, + "5c70de7544564ae590fdbb2d8eda5961": 1, + "b2f20953043e4e91acd024cb019dd22b": 1, + "ec444dcf8a8445f18eae9835f7a57792": 1, + "a6f6219f6ab04b3b9d90ae7c6778b379": 1, + "754680e38dd74f7d914336a704162fb8": 1, + "1bd8171c04074c9fad15981759c93e6d": 1, + "99cab930bc954c799bccefa91f79234c": 1, + "c7d62ea4cbc24792bf90dd45bbdee1d5": 1, + "2bad50b4125d41c9889b61ee94835d44": 1, + "2ddf331786e74dad9e6dbbcb549a7af7": 1, + "9cd0150a7cad409a9abd29c451fbc9df": 1 + }, "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T15:03:36.205Z", + "createdAt": "2024-03-15T10:36:22.948Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Keycard Art Gallery Preplanning asset", - "itemId": "714a8344431147b1bbb9a36c51a6e0fe", + "title": "PlayStation MOD BarrelExt Coronet", + "itemId": "9f03ef1f212c4c60b6477397b3d1664a", "baseAppId": "", - "sku": "pd3_preplanning_artgallery_2", + "sku": "pd3_playstation_mod_barrelext_coronet", "namespace": "pd3", - "name": "Keycard Art Gallery Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "PlayStation MOD BarrelExt Coronet", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T14:18:40.58Z", + "discountPurchaseAt": "2024-07-25T14:18:40.58Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "WeaponPart" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:00:46.321Z", + "createdAt": "2024-07-25T14:18:06.291Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Keycard Branch Bank Preplanning asset", - "itemId": "fb595a70be16479cbd6398866ceace43", + "title": "PlayStation MOD BarrelExt Crated", + "itemId": "e221b83f4660433a9ee79bf0ba21f296", "baseAppId": "", - "sku": "pd3_preplanning_branchbank_3", + "sku": "pd3_playstation_mod_barrelext_crated", "namespace": "pd3", - "name": "Keycard Branch Bank Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "PlayStation MOD BarrelExt Crated", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T13:57:22.343Z", + "discountPurchaseAt": "2024-07-25T13:57:22.343Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "WeaponPart" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:17:31.806Z", + "createdAt": "2024-07-25T13:56:48.077Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Less Containers Cargo Dock Preplanning asset", - "itemId": "0cd47901794a44b38a9f2d4b7b1b3f61", + "title": "PlayStation MOD BarrelExt IDM2", + "itemId": "2eb02718f8f04fe18fb65170b8ab597a", "baseAppId": "", - "sku": "pd3_preplanning_cargodock_1", + "sku": "pd3_playstation_mod_barrelext_idm2", "namespace": "pd3", - "name": "Less Containers Cargo Dock Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "PlayStation MOD BarrelExt IDM2", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T14:46:08.019Z", + "discountPurchaseAt": "2024-06-27T14:46:08.019Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "WeaponPart" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:26:16.732Z", + "createdAt": "2024-06-27T14:45:45.019Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD A114 Barrel CQC", - "itemId": "93d0ad10410944d0a1573b7e6d2d557f", + "title": "PlayStation MOD BarrelExt Ridgecyl", + "itemId": "1189de9010884b29bb6c0169f59dfce5", "baseAppId": "", - "sku": "pd3_mod_a114_barrel_cqc", + "sku": "pd3_playstation_mod_barrelext_ridgecyl", "namespace": "pd3", - "name": "MOD A114 Barrel CQC", + "name": "PlayStation MOD BarrelExt Ridgecyl", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -8767,7 +33242,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:02:44.263Z" + "purchaseAt": "2024-06-27T14:50:08.362Z", + "discountPurchaseAt": "2024-06-27T14:50:08.362Z" } ], "itemQty": {}, @@ -8777,35 +33253,35 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:02:44.029Z", + "createdAt": "2024-06-27T14:49:45.331Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD A114 Barrel Ranged", - "itemId": "d4d1d446671a49e99e06e7c5f4f5109e", + "title": "PlayStation MOD BarrelExt WhisperWrap ", + "itemId": "040e0312b8984f3b9c713d3f6dcb0a35", "baseAppId": "", - "sku": "pd3_mod_a114_barrel_ranged", + "sku": "pd3_playstation_mod_barrelext_whisperwrap", "namespace": "pd3", - "name": "MOD A114 Barrel Ranged", + "name": "PlayStation MOD BarrelExt WhisperWrap ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:08:08.936Z" + "purchaseAt": "2024-02-14T15:38:48.552Z", + "discountPurchaseAt": "2024-02-14T15:38:48.552Z" } ], "itemQty": {}, @@ -8815,35 +33291,34 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:08:08.679Z", + "createdAt": "2024-02-14T15:38:49.619Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD A114 Mag Extended", - "itemId": "1d8f85c1abb94f619d6b412b97fae4ff", + "title": "PlayStation MOD Sight LightHolographic", + "itemId": "23a3102b317a45399520ebd9ebbfa535", "baseAppId": "", - "sku": "pd3_mod_a114_mag_extended", + "sku": "pd3_playstation_mod_sight_lightholographic", "namespace": "pd3", - "name": "MOD A114 Mag Extended", + "name": "PlayStation MOD Sight LightHolographic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:08:27.635Z" + "purchaseAt": "2023-11-07T09:31:38.712Z" } ], "itemQty": {}, @@ -8856,18 +33331,18 @@ "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:08:27.142Z", + "createdAt": "2023-11-07T09:31:39.374Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD A114 Mag Quick", - "itemId": "48af4ebd6cf54c6c914a7b7343ae2a87", + "title": "PlayStation MOD Sight Snapshot ", + "itemId": "c862de57d2c948c68dbc93c05426dffe", "baseAppId": "", - "sku": "pd3_mod_a114_mag_quick", + "sku": "pd3_playstation_mod_sight_snapshot", "namespace": "pd3", - "name": "MOD A114 Mag Quick", + "name": "PlayStation MOD Sight Snapshot ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -8881,7 +33356,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:09:54.486Z" + "purchaseAt": "2024-02-14T15:36:35.841Z", + "discountPurchaseAt": "2024-02-14T15:36:35.841Z" } ], "itemQty": {}, @@ -8891,21 +33367,20 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:09:53.990Z", + "createdAt": "2024-02-14T15:36:36.901Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GObelisk", - "itemId": "af69c92a7eb346af83e72925fa00f2e1", + "title": "PlayStation MOD Sight SquareClaim", + "itemId": "cb6cc0850eef4521a916d63844a26766", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gobelisk", + "sku": "pd3_playstation_mod_sight_squareclaim", "namespace": "pd3", - "name": "MOD BarrelExt 12GObelisk", + "name": "PlayStation MOD Sight SquareClaim", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -8919,7 +33394,8 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:10:18.661Z" + "purchaseAt": "2024-06-27T14:54:05.43Z", + "discountPurchaseAt": "2024-06-27T14:54:05.43Z" } ], "itemQty": {}, @@ -8929,35 +33405,35 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:10:16.529Z", + "createdAt": "2024-06-27T14:53:42.42Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GObelisk High", - "itemId": "1851a24b12614fc0aa041543949ded6c", + "title": "PlayStation MOD Sight Voyeur", + "itemId": "5c3c3415a2164b36a1ebcf8d3cecb5d6", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gobelisk_high", + "sku": "pd3_playstation_mod_sight_voyeur", "namespace": "pd3", - "name": "MOD BarrelExt 12GObelisk High", + "name": "PlayStation MOD Sight Voyeur", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:29:44.774Z" + "purchaseAt": "2024-07-25T13:36:43.296Z", + "discountPurchaseAt": "2024-07-25T13:36:43.296Z" } ], "itemQty": {}, @@ -8967,35 +33443,34 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:29:44.623Z", + "createdAt": "2024-07-25T13:36:09.065Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GObelisk Low", - "itemId": "bfa7807cc6164d079af550370b4ff757", + "title": "PlayStation MOD Stock MinimizedHook ", + "itemId": "85e2a8af0b1a4cf3bb208013cae6bc39", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gobelisk_low", + "sku": "pd3_playstation_mod_stock_minimizedhook", "namespace": "pd3", - "name": "MOD BarrelExt 12GObelisk Low", + "name": "PlayStation MOD Stock MinimizedHook ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponMod/Stock", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:23:33.476Z" + "purchaseAt": "2023-11-07T10:59:44.844Z" } ], "itemQty": {}, @@ -9008,18 +33483,18 @@ "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:23:33.393Z", + "createdAt": "2023-11-07T10:59:45.656Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GVentComp", - "itemId": "d7b993ab2d5545b09369f2d0cc484967", + "title": "PlayStation MOD VerticalGrip FlatSideStab ", + "itemId": "42d32f1fbe32406590d01494d17a21de", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gventcomp", + "sku": "pd3_playstation_mod_verticalgrip_flatsidestab", "namespace": "pd3", - "name": "MOD BarrelExt 12GVentComp", + "name": "PlayStation MOD VerticalGrip FlatSideStab ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -9033,7 +33508,7 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:50:49.177Z" + "purchaseAt": "2023-11-07T10:40:12.769Z" } ], "itemQty": {}, @@ -9046,32 +33521,33 @@ "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:50:46.990Z", + "createdAt": "2023-11-07T10:40:13.547Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GVentComp High", - "itemId": "db8d2810b2dc40938abc47aa6862089e", + "title": "PlayStation MOD VerticalGrip RiggerHandStop ", + "itemId": "8b8d2dfdf1ae45d0974f9c607965e319", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gventcomp_high", + "sku": "pd3_playstation_mod_verticalgrip_riggerhandstop", "namespace": "pd3", - "name": "MOD BarrelExt 12GVentComp High", + "name": "PlayStation MOD VerticalGrip RiggerHandStop ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:34:47.745Z" + "purchaseAt": "2024-02-14T15:27:03.944Z", + "discountPurchaseAt": "2024-02-14T15:27:03.944Z" } ], "itemQty": {}, @@ -9081,965 +33557,1122 @@ "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:34:47.587Z", + "createdAt": "2024-02-14T15:27:05.033Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt 12GVentComp Low", - "itemId": "f2b4874a1ba64abcaa305e1dcb31faaf", + "title": "PlayStation Marksman FIK22 ", + "itemId": "966fbefba64f4dfb946f0d3abd147cf8", "baseAppId": "", - "sku": "pd3_mod_barrelext_12gventcomp_low", + "sku": "pd3_playstation_wpn_marksman_fik22", "namespace": "pd3", - "name": "MOD BarrelExt 12GVentComp Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Marksman FIK22 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:34:19.916Z" + "purchaseAt": "2023-11-06T16:23:48.652Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:34:19.832Z", + "createdAt": "2023-11-06T16:23:49.188Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt BeveledSilencer", - "itemId": "a4a5e170021d47629dc463e52a521c9d", + "title": "PlayStation Marksman FIK22 - Vendor Item ", + "itemId": "ec444dcf8a8445f18eae9835f7a57792", "baseAppId": "", - "sku": "pd3_mod_barrelext_beveledsilencer", + "sku": "pd3_playstation_wpn_marksman_fik22_vendor", "namespace": "pd3", - "name": "MOD BarrelExt BeveledSilencer", + "name": "PlayStation Marksman FIK22 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:44:13.647Z" + "purchaseAt": "2023-11-09T14:36:35.064Z", + "discountPurchaseAt": "2023-11-09T14:36:35.064Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "926f52f52f0c4103aab2086175b947fa", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:44:11.467Z", + "createdAt": "2023-11-09T14:36:35.646Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt BeveledSilencer High", - "itemId": "dd767be070644ae98763122344b71a50", + "title": "PlayStation Pistol GV50", + "itemId": "0b82373413194740b0773af3239cdd28", "baseAppId": "", - "sku": "pd3_mod_barrelext_beveledsilencer_high", + "sku": "pd3_playstation_wpn_pistol_gv50", "namespace": "pd3", - "name": "MOD BarrelExt BeveledSilencer High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Pistol GV50", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:34:17.123Z" + "purchaseAt": "2024-07-25T11:37:46.85Z", + "discountPurchaseAt": "2024-07-25T11:37:46.85Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC4Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:34:16.962Z", + "createdAt": "2024-07-25T11:37:12.728Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt BeveledSilencer Low", - "itemId": "ac2ed906cb284a6aaaa8be9fef9eb573", + "title": "PlayStation Pistol GV50 - Vendor Item", + "itemId": "fe164479fce2411c9252e083ab4a6f5b", "baseAppId": "", - "sku": "pd3_mod_barrelext_beveledsilencer_low", + "sku": "pd3_playstation_wpn_pistol_gv50_vendor", "namespace": "pd3", - "name": "MOD BarrelExt BeveledSilencer Low", + "name": "PlayStation Pistol GV50 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:33:15.235Z" + "purchaseAt": "2024-07-25T11:42:03.043Z", + "discountPurchaseAt": "2024-07-25T11:42:03.043Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "5098b2b4214b4306967e7777953f99d6", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:33:15.136Z", + "createdAt": "2024-07-25T11:41:28.911Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CompactComp", - "itemId": "7a3c5f1c2a674846882dcd8e3ccb9968", + "title": "PlayStation Pistol PD5", + "itemId": "487a14ed2b734cab8399b02488d75bea", "baseAppId": "", - "sku": "pd3_mod_barrelext_compactcomp", + "sku": "pd3_playstation_wpn_pistol_pd5", "namespace": "pd3", - "name": "MOD BarrelExt CompactComp", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Pistol PD5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:27:48.644Z" + "purchaseAt": "2024-06-27T11:08:15.665Z", + "discountPurchaseAt": "2024-06-27T11:08:15.665Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:27:46.504Z", + "createdAt": "2024-06-27T11:07:52.861Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CompactComp High", - "itemId": "1e4b10af4d1242c5ae121c8dc7423f73", + "title": "PlayStation Pistol PD5 - Vendor Item", + "itemId": "5d00492a70af4d2eb19f3bd562197494", "baseAppId": "", - "sku": "pd3_mod_barrelext_compactcomp_high", + "sku": "pd3_playstation_wpn_pistol_pd5_vendor", "namespace": "pd3", - "name": "MOD BarrelExt CompactComp High", + "name": "PlayStation Pistol PD5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:31:33.079Z" + "purchaseAt": "2024-06-27T11:15:37.46Z", + "discountPurchaseAt": "2024-06-27T11:15:37.46Z" } ], "itemQty": {}, + "boundItemIds": [ + "49981ef260c34b028104e721284053d4", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:31:32.932Z", + "createdAt": "2024-06-27T11:15:14.647Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CompactComp Low", - "itemId": "2b2dadeac50445bdb73c92317796d107", + "title": "PlayStation Pistol SE5", + "itemId": "056692b91782425cbc91783575fafc08", "baseAppId": "", - "sku": "pd3_mod_barrelext_compactcomp_low", + "sku": "pd3_playstation_wpn_pistol_se5", "namespace": "pd3", - "name": "MOD BarrelExt CompactComp Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Pistol SE5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:28:44.180Z" + "purchaseAt": "2024-07-25T11:49:43.664Z", + "discountPurchaseAt": "2024-07-25T11:49:43.664Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC4Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:28:44.091Z", + "createdAt": "2024-07-25T11:49:09.524Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CylindricComp", - "itemId": "3db2b8d358ad4e2fb9ab6b9b6ab6d1ab", + "title": "PlayStation Pistol SE5 - Vendor Item", + "itemId": "e1e9b1e1c6fe4e99b464abbfeee93649", "baseAppId": "", - "sku": "pd3_mod_barrelext_cylindriccomp", + "sku": "pd3_playstation_wpn_pistol_se5_vendor", "namespace": "pd3", - "name": "MOD BarrelExt CylindricComp", + "name": "PlayStation Pistol SE5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:46:23.623Z" + "purchaseAt": "2024-07-25T11:53:43.313Z", + "discountPurchaseAt": "2024-07-25T11:53:43.313Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "5098b2b4214b4306967e7777953f99d6", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:46:21.509Z", + "createdAt": "2024-07-25T11:53:09.162Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CylindricComp High", - "itemId": "ec9e1231ea694639bd65b548fee7b368", + "title": "PlayStation Premium Preset 11", + "itemId": "891f9dc7d1f64029b6e6cf01bcf171b5", "baseAppId": "", - "sku": "pd3_mod_barrelext_cylindriccomp_high", + "sku": "pd3_playstation_wpn_preset_p11", "namespace": "pd3", - "name": "MOD BarrelExt CylindricComp High", + "name": "PlayStation Premium Preset 11", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:26:38.722Z" + "purchaseAt": "2024-06-04T15:52:32.802Z", + "discountPurchaseAt": "2024-06-04T15:52:32.802Z" } ], "itemQty": {}, + "boundItemIds": [ + "3b590438276d44d9b0401cba3f928a7f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:26:38.569Z", + "createdAt": "2024-06-04T15:51:57.024Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt CylindricComp Low", - "itemId": "ef2d653c92824c1990033b88ebd444fd", + "title": "PlayStation Premium Preset 2", + "itemId": "e5fa0c2d921b4e24afb7574aaa243e11", "baseAppId": "", - "sku": "pd3_mod_barrelext_cylindriccomp_low", + "sku": "pd3_playstation_wpn_preset_p2", "namespace": "pd3", - "name": "MOD BarrelExt CylindricComp Low", + "name": "PlayStation Premium Preset 2", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:15:58.898Z" + "purchaseAt": "2024-06-04T15:45:55.09Z", + "discountPurchaseAt": "2024-06-04T15:45:55.09Z" } ], "itemQty": {}, + "boundItemIds": [ + "9d61f4b53c784983b6890f051eade065" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:15:58.816Z", + "createdAt": "2024-06-04T15:45:19.312Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Express", - "itemId": "311490ee09d749eab7621e2200c7d409", + "title": "PlayStation Premium Preset 4", + "itemId": "83791bf975864a5d95125b142fa09fdf", "baseAppId": "", - "sku": "pd3_mod_barrelext_express", + "sku": "pd3_playstation_wpn_preset_p4", "namespace": "pd3", - "name": "MOD BarrelExt Express", + "name": "PlayStation Premium Preset 4", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-18T12:21:55.191Z" + "purchaseAt": "2024-06-04T15:51:00.293Z", + "discountPurchaseAt": "2024-06-04T15:51:00.293Z" } ], "itemQty": {}, + "boundItemIds": [ + "9d61f4b53c784983b6890f051eade065" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-18T12:21:53.761Z", + "createdAt": "2024-06-04T15:50:24.513Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Express High", - "itemId": "39df727cf94144a19eb9abd36a1e8896", + "title": "PlayStation Premium Preset 6 ", + "itemId": "4547f46c07604feea5d4d903b3f02ec0", "baseAppId": "", - "sku": "pd3_mod_barrelext_express_high", + "sku": "pd3_playstation_wpn_preset_p6", "namespace": "pd3", - "name": "MOD BarrelExt Express High", + "name": "PlayStation Premium Preset 6 ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:33:47.946Z" + "purchaseAt": "2024-06-04T15:42:54.673Z", + "discountPurchaseAt": "2024-06-04T15:42:54.673Z" } ], "itemQty": {}, + "boundItemIds": [ + "96d5342e48bd4b86b8f901d4ef08ebb1" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:33:47.787Z", + "createdAt": "2024-06-04T15:42:18.916Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Express Low", - "itemId": "1445c03d2a70435c91b997dd8db75bf0", + "title": "PlayStation Revolver Bullkick500", + "itemId": "a4dd57166727490eb151de20eacb5215", "baseAppId": "", - "sku": "pd3_mod_barrelext_express_low", + "sku": "pd3_playstation_wpn_revolver_bullkick500", "namespace": "pd3", - "name": "MOD BarrelExt Express Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Revolver Bullkick500", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:32:15.674Z" + "purchaseAt": "2024-02-14T12:22:31.719Z", + "discountPurchaseAt": "2024-02-14T12:22:31.719Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:32:15.599Z", + "createdAt": "2024-02-14T12:22:32.457Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt HybridMB", - "itemId": "ba2356e8cb5f44119a607775fbca5227", + "title": "PlayStation Revolver Bullkick500 - Vendor Item ", + "itemId": "d42d892b2de841f1bdab4e37b561250b", "baseAppId": "", - "sku": "pd3_mod_barrelext_hybridmb", + "sku": "pd3_playstation_wpn_revolver_bullkick500_vendor", "namespace": "pd3", - "name": "MOD BarrelExt HybridMB", + "name": "PlayStation Revolver Bullkick500 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:06:24.345Z" + "purchaseAt": "2024-02-14T12:55:44.376Z", + "discountPurchaseAt": "2024-02-14T12:55:44.376Z" } ], "itemQty": {}, + "boundItemIds": [ + "47ed89c6d7fa496095c0adc4f3a9394c", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:06:22.316Z", + "createdAt": "2024-02-14T12:55:45.171Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt HybridMB High", - "itemId": "f5a50b465b5544e485bac3c4451c2089", + "title": "PlayStation SMG ATK7", + "itemId": "72c166b906744071abce56e22a53ad29", "baseAppId": "", - "sku": "pd3_mod_barrelext_hybridmb_high", + "sku": "pd3_playstation_wpn_smg_atk7", "namespace": "pd3", - "name": "MOD BarrelExt HybridMB High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation SMG ATK7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:25:31.440Z" + "purchaseAt": "2024-02-14T12:00:12.212Z", + "discountPurchaseAt": "2024-02-14T12:00:12.212Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:25:31.298Z", + "createdAt": "2024-02-14T12:00:12.917Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt HybridMB Low", - "itemId": "af6dd6efad3e41acbd0de57fb9f10086", + "title": "PlayStation SMG ATK7 - Vendor Item ", + "itemId": "060900d12765429bacd4ca86fe633817", "baseAppId": "", - "sku": "pd3_mod_barrelext_hybridmb_low", + "sku": "pd3_playstation_wpn_smg_atk7_vendor", "namespace": "pd3", - "name": "MOD BarrelExt HybridMB Low", + "name": "PlayStation SMG ATK7 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:11:21.131Z" + "purchaseAt": "2024-02-14T12:06:47.215Z", + "discountPurchaseAt": "2024-02-14T12:06:47.215Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "47ed89c6d7fa496095c0adc4f3a9394c", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:11:21.086Z", + "createdAt": "2024-02-14T12:06:47.932Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt IndentComp", - "itemId": "c53d2059cd8f4545beca4ea3c893aa11", + "title": "PlayStation SMG WAR45 ", + "itemId": "e8a551d529ea4257980976d27aa503c3", "baseAppId": "", - "sku": "pd3_mod_barrelext_indentcomp", + "sku": "pd3_playstation_wpn_smg_war45", "namespace": "pd3", - "name": "MOD BarrelExt IndentComp", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation SMG WAR45 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:12:41.337Z" + "purchaseAt": "2023-11-06T16:38:46.773Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:12:39.240Z", + "createdAt": "2023-11-06T16:38:47.298Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt IndentComp High", - "itemId": "4118cbf10b7149d1bc701f4b2ca0a2de", + "title": "PlayStation SMG WAR45 - Vendor Item ", + "itemId": "2ddf331786e74dad9e6dbbcb549a7af7", "baseAppId": "", - "sku": "pd3_mod_barrelext_indentcomp_high", + "sku": "pd3_playstation_wpn_smg_war45_vendor", "namespace": "pd3", - "name": "MOD BarrelExt IndentComp High", + "name": "PlayStation SMG WAR45 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:26:09.120Z" + "purchaseAt": "2023-11-09T14:30:30.113Z", + "discountPurchaseAt": "2023-11-09T14:30:30.113Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "926f52f52f0c4103aab2086175b947fa", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:26:08.967Z", + "createdAt": "2023-11-09T14:30:30.702Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt IndentComp Low", - "itemId": "6cd9cde031fb46c1996e889a04ce3cd6", + "title": "PlayStation Shotgun FSA12 ", + "itemId": "724f9ad7976146f39ac341db4d79a166", "baseAppId": "", - "sku": "pd3_mod_barrelext_indentcomp_low", + "sku": "pd3_playstation_wpn_shotgun_fsa12", "namespace": "pd3", - "name": "MOD BarrelExt IndentComp Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Shotgun FSA12 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:12:42.205Z" + "purchaseAt": "2023-11-06T16:50:25.753Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:12:42.132Z", + "createdAt": "2023-11-06T16:50:26.318Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt JawChoke", - "itemId": "74a754e8f1eb45df9f7da2a324971268", + "title": "PlayStation Shotgun FSA12 - Vendor Item ", + "itemId": "ab1f5877c5934f7596fc8d52210a6bfa", "baseAppId": "", - "sku": "pd3_mod_barrelext_jawchoke", + "sku": "pd3_playstation_wpn_shotgun_fsa12_vendor", "namespace": "pd3", - "name": "MOD BarrelExt JawChoke", + "name": "PlayStation Shotgun FSA12 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:06:19.701Z" + "purchaseAt": "2023-11-09T13:26:02.188Z", + "discountPurchaseAt": "2023-11-09T13:26:02.188Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "926f52f52f0c4103aab2086175b947fa", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:06:17.572Z", + "createdAt": "2023-11-09T13:26:02.656Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt JawChoke High", - "itemId": "f1132e7276394f02a0dda2471f733e62", + "title": "PlayStation Shotgun M7P", + "itemId": "4b9e2db41b5c41f39dc125170ee9c023", "baseAppId": "", - "sku": "pd3_mod_barrelext_jawchoke_high", + "sku": "pd3_playstation_wpn_shotgun_m7p", "namespace": "pd3", - "name": "MOD BarrelExt JawChoke High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Shotgun M7P", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:28:26.775Z" + "purchaseAt": "2024-06-25T14:58:34.892Z", + "discountPurchaseAt": "2024-06-25T14:58:34.892Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:28:26.619Z", + "createdAt": "2024-06-25T14:58:14.787Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt JawChoke Low", - "itemId": "ef2758e0d2ae4e60bcc0386c9f40298d", + "title": "PlayStation Shotgun M7P - Vendor Item", + "itemId": "9d211141972b46498436a64ba5b199cc", "baseAppId": "", - "sku": "pd3_mod_barrelext_jawchoke_low", + "sku": "pd3_playstation_wpn_shotgun_m7p_vendor", "namespace": "pd3", - "name": "MOD BarrelExt JawChoke Low", + "name": "PlayStation Shotgun M7P - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:21:09.765Z" + "purchaseAt": "2024-06-25T15:07:36.061Z", + "discountPurchaseAt": "2024-06-25T15:07:36.061Z" } ], "itemQty": {}, + "boundItemIds": [ + "49981ef260c34b028104e721284053d4", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:21:09.688Z", + "createdAt": "2024-06-25T15:07:15.965Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt ObeliskSilencer", - "itemId": "9bff2fd9b30446e7b43c807771d91b82", + "title": "PlayStation Shotgun TAS12", + "itemId": "1d0505969a974f319581e08bd5d032a7", "baseAppId": "", - "sku": "pd3_mod_barrelext_obelisksilencer", + "sku": "pd3_playstation_wpn_shotgun_tas12", "namespace": "pd3", - "name": "MOD BarrelExt ObeliskSilencer", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "PlayStation Shotgun TAS12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:14:56.313Z" + "purchaseAt": "2024-07-25T11:59:04.86Z", + "discountPurchaseAt": "2024-07-25T11:59:04.86Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "CombatEquipmentVendor", + "PlayStation", + "DLC4Category", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:14:54.140Z", + "createdAt": "2024-07-25T11:58:30.704Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt ObeliskSilencer High", - "itemId": "3fe6adc00921471696f709e53ec34147", + "title": "PlayStation Shotgun TAS12 - Vendor Item", + "itemId": "83c57bac06d54c5e997053892d40b2dc", "baseAppId": "", - "sku": "pd3_mod_barrelext_obelisksilencer_high", + "sku": "pd3_playstation_wpn_shotgun_tas12_vendor", "namespace": "pd3", - "name": "MOD BarrelExt ObeliskSilencer High", + "name": "PlayStation Shotgun TAS12 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:33:16.605Z" + "purchaseAt": "2024-07-25T12:04:32.738Z", + "discountPurchaseAt": "2024-07-25T12:04:32.738Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "5098b2b4214b4306967e7777953f99d6", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:33:16.445Z", + "createdAt": "2024-07-25T12:03:58.576Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt ObeliskSilencer Low", - "itemId": "fb9b28f96b6541f8840eedcae64d8567", + "title": "PlayStation Tailor pack 01 gloves 01", + "itemId": "1bd8171c04074c9fad15981759c93e6d", "baseAppId": "", - "sku": "pd3_mod_barrelext_obelisksilencer_low", + "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_01", "namespace": "pd3", - "name": "MOD BarrelExt ObeliskSilencer Low", + "name": "PlayStation Tailor pack 01 gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:31:36.881Z" + "purchaseAt": "2023-11-15T13:18:19.302Z", + "discountPurchaseAt": "2023-11-15T13:18:19.302Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "f5ab43b08c0445f29709eb05f67178bd", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:31:36.782Z", + "createdAt": "2023-11-15T13:18:05.082Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt ObeliskSilencer Zero", - "itemId": "eab464ee27e74fed9f4ead8162cd1e28", + "title": "PlayStation Tailor pack 01 gloves 02", + "itemId": "5ec14652f10b454db1fa6e5407ecc3c7", "baseAppId": "", - "sku": "pd3_mod_barrelext_obelisksilencer_zero", + "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_02", "namespace": "pd3", - "name": "MOD BarrelExt ObeliskSilencer Zero", + "name": "PlayStation Tailor pack 01 gloves 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -10053,5008 +34686,5824 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-14T10:16:53.128Z", - "discountPurchaseAt": "2023-02-14T10:16:53.128Z" + "purchaseAt": "2023-11-15T13:12:43.467Z", + "discountPurchaseAt": "2023-11-15T13:12:43.467Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-14T10:16:53.182Z", + "createdAt": "2023-11-15T13:12:29.255Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PartedComp", - "itemId": "51f025d0018a4ee2ade7e3944ab51351", + "title": "PlayStation Tailor pack 01 gloves 03", + "itemId": "ab79e2bf8acb4f0785aaa41d1cabccc9", "baseAppId": "", - "sku": "pd3_mod_barrelext_partedcomp", + "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_03", "namespace": "pd3", - "name": "MOD BarrelExt PartedComp", + "name": "PlayStation Tailor pack 01 gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:09:23.874Z" + "purchaseAt": "2023-11-16T07:16:02.285Z", + "discountPurchaseAt": "2023-11-16T07:16:02.285Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:09:21.709Z", + "createdAt": "2023-11-16T07:15:45.094Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PartedComp High", - "itemId": "9137646e808a4bf6933e3bb9b3f56b68", + "title": "PlayStation Tailor pack 01 gloves 04", + "itemId": "99cab930bc954c799bccefa91f79234c", "baseAppId": "", - "sku": "pd3_mod_barrelext_partedcomp_high", + "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_04", "namespace": "pd3", - "name": "MOD BarrelExt PartedComp High", + "name": "PlayStation Tailor pack 01 gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:32:45.209Z" + "purchaseAt": "2023-11-15T13:02:45.269Z", + "discountPurchaseAt": "2023-11-15T13:02:45.269Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:32:45.050Z", + "createdAt": "2023-11-15T13:02:31.125Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PartedComp Low", - "itemId": "aa938f746bca4f1f9d3a59d16b06a44a", + "title": "PlayStation Tailor pack 01 mask 01", + "itemId": "754680e38dd74f7d914336a704162fb8", "baseAppId": "", - "sku": "pd3_mod_barrelext_partedcomp_low", + "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_01", "namespace": "pd3", - "name": "MOD BarrelExt PartedComp Low", + "name": "PlayStation Tailor pack 01 mask 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:30:48.548Z" + "purchaseAt": "2023-11-15T12:52:56.865Z", + "discountPurchaseAt": "2023-11-15T12:52:56.865Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:30:48.467Z", + "createdAt": "2023-11-15T12:52:42.721Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PipedSilencer", - "itemId": "9abb2ba59dcc4907820705f6f2ad31a2", + "title": "PlayStation Tailor pack 01 mask 02", + "itemId": "5c70de7544564ae590fdbb2d8eda5961", "baseAppId": "", - "sku": "pd3_mod_barrelext_pipedsilencer", + "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_02", "namespace": "pd3", - "name": "MOD BarrelExt PipedSilencer", + "name": "PlayStation Tailor pack 01 mask 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:51:25.277Z" + "purchaseAt": "2023-11-15T12:45:50.125Z", + "discountPurchaseAt": "2023-11-15T12:45:50.125Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:51:23.157Z", + "createdAt": "2023-11-15T12:45:36.008Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PipedSilencer High", - "itemId": "d9ca61b7d4f8471fbd4c02aeff36c7bc", + "title": "PlayStation Tailor pack 01 mask 03", + "itemId": "b2f20953043e4e91acd024cb019dd22b", "baseAppId": "", - "sku": "pd3_mod_barrelext_pipedsilencer_high", + "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_03", "namespace": "pd3", - "name": "MOD BarrelExt PipedSilencer High", + "name": "PlayStation Tailor pack 01 mask 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:27:02.664Z" + "purchaseAt": "2023-11-15T12:41:30.223Z", + "discountPurchaseAt": "2023-11-15T12:41:30.223Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:27:02.515Z", + "createdAt": "2023-11-15T12:41:16.128Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt PipedSilencer Low", - "itemId": "9764e829162d4bfbb98f84280b9a2268", + "title": "PlayStation Tailor pack 01 mask 04", + "itemId": "2bad50b4125d41c9889b61ee94835d44", "baseAppId": "", - "sku": "pd3_mod_barrelext_pipedsilencer_low", + "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_04", "namespace": "pd3", - "name": "MOD BarrelExt PipedSilencer Low", + "name": "PlayStation Tailor pack 01 mask 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:17:06.670Z" + "purchaseAt": "2023-11-15T12:35:06.876Z", + "discountPurchaseAt": "2023-11-15T12:35:06.876Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:17:06.626Z", + "createdAt": "2023-11-15T12:34:52.797Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Ridged", - "itemId": "b6e094027882432d83e29b2577e049fe", + "title": "Tailor PlayStation pack 01 suit 01", + "itemId": "c7d62ea4cbc24792bf90dd45bbdee1d5", "baseAppId": "", - "sku": "pd3_mod_barrelext_ridged", + "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_01", "namespace": "pd3", - "name": "MOD BarrelExt Ridged", + "name": "PlayStation Tailor pack 01 suit 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:19:10.371Z" + "purchaseAt": "2023-11-15T13:56:26.071Z", + "discountPurchaseAt": "2023-11-15T13:56:26.071Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:19:08.239Z", + "createdAt": "2023-11-15T13:56:11.727Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Ridged High", - "itemId": "eb0683b3544942379183c7cca3dbe3ca", + "title": "PlayStation Tailor pack 01 suit 02", + "itemId": "b5c5c8b0975245649fa3543c275dd2aa", "baseAppId": "", - "sku": "pd3_mod_barrelext_ridged_high", + "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_02", "namespace": "pd3", - "name": "MOD BarrelExt Ridged High", + "name": "PlayStation Tailor pack 01 suit 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:31:02.822Z" + "purchaseAt": "2023-11-15T13:52:28.03Z", + "discountPurchaseAt": "2023-11-15T13:52:28.03Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:31:02.664Z", + "createdAt": "2023-11-15T13:52:13.699Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Ridged Low", - "itemId": "a22f7d2c4bf24f50a445912569d71a45", + "title": "PlayStation Tailor pack 01 suit 03", + "itemId": "9cd0150a7cad409a9abd29c451fbc9df", "baseAppId": "", - "sku": "pd3_mod_barrelext_ridged_low", + "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_03", "namespace": "pd3", - "name": "MOD BarrelExt Ridged Low", + "name": "PlayStation Tailor pack 01 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:27:55.524Z" + "purchaseAt": "2023-11-15T13:48:13.055Z", + "discountPurchaseAt": "2023-11-15T13:48:13.055Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:27:55.455Z", + "createdAt": "2023-11-15T13:47:58.745Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SedimentChoke", - "itemId": "7f32547e0c6e4a1dbf01e58204c9267f", + "title": "PlayStation Tailor pack 01 suit 04 ", + "itemId": "3468072166c4415da28d1ea8e6de1f1a", "baseAppId": "", - "sku": "pd3_mod_barrelext_sedimentchoke", + "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_04", "namespace": "pd3", - "name": "MOD BarrelExt SedimentChoke", + "name": "PlayStation Tailor pack 01 suit 04 ", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:57:09.462Z" + "purchaseAt": "2023-11-15T13:24:07.05Z", + "discountPurchaseAt": "2023-11-15T13:24:07.05Z" } ], "itemQty": {}, + "boundItemIds": [ + "5a5f6556433340a5bf5b9df009500923", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:57:07.343Z", + "createdAt": "2023-11-15T13:23:52.828Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SedimentChoke High", - "itemId": "9f1f19c3e23543b99a4208cadd9e92f8", + "title": "PlayStation Tailor pack 02 gloves 01", + "itemId": "62a5a9e9e1164b2699e9de779a58a574", "baseAppId": "", - "sku": "pd3_mod_barrelext_sedimentchoke_high", + "sku": "pd3_playstation_cosmetic_tailorpack_02_gloves_01", "namespace": "pd3", - "name": "MOD BarrelExt SedimentChoke High", + "name": "PlayStation Tailor pack 02 gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:27:54.820Z" + "purchaseAt": "2024-03-06T12:56:49.724Z", + "discountPurchaseAt": "2024-03-06T12:56:49.724Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:27:54.683Z", + "createdAt": "2024-03-06T12:56:49.972Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SedimentChoke Low", - "itemId": "f26a1db67e3f4ae2b14d663f9bc943f7", + "title": "PlayStation Tailor pack 02 gloves 02", + "itemId": "fcf4cb9f556b4dfdae67f952e5741820", "baseAppId": "", - "sku": "pd3_mod_barrelext_sedimentchoke_low", + "sku": "pd3_playstation_cosmetic_tailorpack_02_gloves_02", "namespace": "pd3", - "name": "MOD BarrelExt SedimentChoke Low", + "name": "PlayStation Tailor pack 02 gloves 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:19:44.603Z" + "purchaseAt": "2024-03-06T12:57:50.815Z", + "discountPurchaseAt": "2024-03-06T12:57:50.815Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:19:44.519Z", + "createdAt": "2024-03-06T12:57:51.067Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SkeletonizedComp", - "itemId": "0993ae5428894dbc83ebab0952288a4d", + "title": "PlayStation Tailor pack 02 gloves 03", + "itemId": "b85fbcaf75ac402b804c36051dff04f2", "baseAppId": "", - "sku": "pd3_mod_barrelext_skeletonizedcomp", + "sku": "pd3_playstation_cosmetic_tailorpack_02_gloves_03", "namespace": "pd3", - "name": "MOD BarrelExt SkeletonizedComp", + "name": "PlayStation Tailor pack 02 gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:33:13.653Z" + "purchaseAt": "2024-03-06T12:58:45.928Z", + "discountPurchaseAt": "2024-03-06T12:58:45.928Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:33:11.505Z", + "createdAt": "2024-03-06T12:58:46.178Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SkeletonizedComp High", - "itemId": "9ea325d3c4444157abef8cf0acf2529d", + "title": "PlayStation Tailor pack 02 gloves 04", + "itemId": "fd66c2594d0a402ebec61c17de8e7662", "baseAppId": "", - "sku": "pd3_mod_barrelext_skeletonizedcomp_high", + "sku": "pd3_playstation_cosmetic_tailorpack_02_gloves_04", "namespace": "pd3", - "name": "MOD BarrelExt SkeletonizedComp High", + "name": "PlayStation Tailor pack 02 gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:32:05.851Z" + "purchaseAt": "2024-03-06T12:59:24.91Z", + "discountPurchaseAt": "2024-03-06T12:59:24.91Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:32:05.697Z", + "createdAt": "2024-03-06T12:59:25.158Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SkeletonizedComp Low", - "itemId": "ea66f2f2403f444eb3630a383ae5c0bd", + "title": "PlayStation Tailor pack 02 mask 01", + "itemId": "e53a2a2646914c5395c7309ce775922c", "baseAppId": "", - "sku": "pd3_mod_barrelext_skeletonizedcomp_low", + "sku": "pd3_playstation_cosmetic_tailorpack_02_mask_01", "namespace": "pd3", - "name": "MOD BarrelExt SkeletonizedComp Low", + "name": "PlayStation Tailor pack 02 mask 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:29:28.559Z" + "purchaseAt": "2024-03-06T10:47:38.817Z", + "discountPurchaseAt": "2024-03-06T10:47:38.817Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:29:28.505Z", + "createdAt": "2024-03-06T10:47:38.991Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SnubSilencer", - "itemId": "ab569395951f458b9231bed55d4e152d", + "title": "PlayStation Tailor pack 02 mask 02", + "itemId": "e497067b6d244444a9989534f86eb4d5", "baseAppId": "", - "sku": "pd3_mod_barrelext_snubsilencer", + "sku": "pd3_playstation_cosmetic_tailorpack_02_mask_02", "namespace": "pd3", - "name": "MOD BarrelExt SnubSilencer", + "name": "PlayStation Tailor pack 02 mask 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:08:55.906Z" + "purchaseAt": "2024-03-06T10:48:43.845Z", + "discountPurchaseAt": "2024-03-06T10:48:43.845Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:08:53.775Z", + "createdAt": "2024-03-06T10:48:44.02Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SnubSilencer High", - "itemId": "59c0338858a54a96b390975371660621", + "title": "PlayStation Tailor pack 02 mask 03", + "itemId": "e58d0b5cd80a4f8fb68b7d7010c5acef", "baseAppId": "", - "sku": "pd3_mod_barrelext_snubsilencer_high", + "sku": "pd3_playstation_cosmetic_tailorpack_02_mask_03", "namespace": "pd3", - "name": "MOD BarrelExt SnubSilencer High", + "name": "PlayStation Tailor pack 02 mask 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:28:56.912Z" + "purchaseAt": "2024-03-06T10:49:56.144Z", + "discountPurchaseAt": "2024-03-06T10:49:56.144Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:28:56.761Z", + "createdAt": "2024-03-06T10:49:56.322Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt SnubSilencer Low", - "itemId": "598b1136cd2447bd9627eff3b15fc21d", + "title": "PlayStation Tailor pack 02 mask 04", + "itemId": "1b3e212b6b714785a906d719a93b19c4", "baseAppId": "", - "sku": "pd3_mod_barrelext_snubsilencer_low", + "sku": "pd3_playstation_cosmetic_tailorpack_02_mask_04", "namespace": "pd3", - "name": "MOD BarrelExt SnubSilencer Low", + "name": "PlayStation Tailor pack 02 mask 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:22:54.888Z" + "purchaseAt": "2024-03-06T10:50:41.145Z", + "discountPurchaseAt": "2024-03-06T10:50:41.145Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:22:54.820Z", + "createdAt": "2024-03-06T10:50:41.322Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Torque", - "itemId": "72d494dc1fdb4711902fb280787a6159", + "title": "PlayStation Tailor pack 02 suit 01", + "itemId": "8ac2b1535038464682cbd18bc4babc77", "baseAppId": "", - "sku": "pd3_mod_barrelext_torque", + "sku": "pd3_playstation_cosmetic_tailorpack_02_suit_01", "namespace": "pd3", - "name": "MOD BarrelExt Torque", + "name": "PlayStation Tailor pack 02 suit 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:15:25.619Z" + "purchaseAt": "2024-03-06T13:47:06.473Z", + "discountPurchaseAt": "2024-03-06T13:47:06.473Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:15:23.487Z", + "createdAt": "2024-03-06T13:47:06.753Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Torque High", - "itemId": "5881d7837cc140b8999fe19e97e034e7", + "title": "PlayStation Tailor pack 02 suit 02", + "itemId": "c8dcad3ce1244f03a9434d32de68b541", "baseAppId": "", - "sku": "pd3_mod_barrelext_torque_high", + "sku": "pd3_playstation_cosmetic_tailorpack_02_suit_02", "namespace": "pd3", - "name": "MOD BarrelExt Torque High", + "name": "PlayStation Tailor pack 02 suit 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:30:15.755Z" + "purchaseAt": "2024-03-06T13:48:01.419Z", + "discountPurchaseAt": "2024-03-06T13:48:01.419Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:30:15.598Z", + "createdAt": "2024-03-06T13:48:01.695Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD BarrelExt Torque Low", - "itemId": "c42d0da4cec94a9aa3b9f51e330eecf9", + "title": "PlayStation Tailor pack 02 suit 03", + "itemId": "bb77a697848a48d3a15978152bcf579a", "baseAppId": "", - "sku": "pd3_mod_barrelext_torque_low", + "sku": "pd3_playstation_cosmetic_tailorpack_02_suit_03", "namespace": "pd3", - "name": "MOD BarrelExt Torque Low", + "name": "PlayStation Tailor pack 02 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:25:46.443Z" + "purchaseAt": "2024-03-06T13:48:49.324Z", + "discountPurchaseAt": "2024-03-06T13:48:49.324Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:25:46.355Z", + "createdAt": "2024-03-06T13:48:49.608Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Bison Barrel CQC", - "itemId": "457e98815f7b46c0b9719ce2f1945b7a", + "title": "PlayStation Tailor pack 02 suit 04", + "itemId": "b515668da7aa4eb4998ec237dea4eb86", "baseAppId": "", - "sku": "pd3_mod_bison_barrel_cqc", + "sku": "pd3_playstation_cosmetic_tailorpack_02_suit_04", "namespace": "pd3", - "name": "MOD Bison Barrel CQC", + "name": "PlayStation Tailor pack 02 suit 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:20:32.583Z" + "purchaseAt": "2024-03-06T13:49:31.147Z", + "discountPurchaseAt": "2024-03-06T13:49:31.147Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "88e8728f2a814997ba5a4ce7521bde4f", + "6656a9e1c3f5454589dd67dadfeabcb0" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:20:32.318Z", + "createdAt": "2024-03-06T13:49:31.432Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Bison Barrel Ranged", - "itemId": "821272eec52f47ed9024b519b54895c5", + "title": "PlayStation Weapon Charm DLC1", + "itemId": "de618e94a2dc499d99c3eb4967061c50", "baseAppId": "", - "sku": "pd3_mod_bison_barrel_ranged", + "sku": "pd3_playstation_cosmetic_weapon_charm_dlc1", "namespace": "pd3", - "name": "MOD Bison Barrel Ranged", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "name": "PlayStation Weapon Charm DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:19:14.397Z" + "purchaseAt": "2023-11-10T14:20:10.051Z", + "discountPurchaseAt": "2023-11-10T14:20:10.051Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "926f52f52f0c4103aab2086175b947fa", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:19:14.131Z", + "createdAt": "2023-11-10T14:20:05.079Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Bison Grip Biofit", - "itemId": "1d61b80f065e47f2a54c2fef8a33c65d", + "title": "PlayStation Weapon Charm DLC2 ", + "itemId": "15ba36ac7d2c4654a5d0a1a2a6556ec4", "baseAppId": "", - "sku": "pd3_mod_bison_grip_biofit", + "sku": "pd3_playstation_cosmetic_weapon_charm_dlc2", "namespace": "pd3", - "name": "MOD Bison Grip Biofit", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "PlayStation Weapon Charm DLC2 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:04:51.225Z" + "purchaseAt": "2024-02-14T16:46:15.33Z", + "discountPurchaseAt": "2024-02-14T16:46:15.33Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "47ed89c6d7fa496095c0adc4f3a9394c", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:04:53.098Z", + "createdAt": "2024-02-14T16:46:16.531Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Bison Grip Hardwood", - "itemId": "df0b7f2859b64bbf9b8f3a1f9a56aa08", + "title": "PlayStation Weapon Sticker DLC1", + "itemId": "ab1770e446d3426a98cb20c7f62eb713", "baseAppId": "", - "sku": "pd3_mod_bison_grip_hardwood", + "sku": "pd3_playstation_cosmetic_weapon_sticker_dlc1", "namespace": "pd3", - "name": "MOD Bison Grip Hardwood", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "PlayStation Weapon Sticker DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:02:47.776Z" + "purchaseAt": "2023-11-10T14:34:26.16Z", + "discountPurchaseAt": "2023-11-10T14:34:26.16Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "926f52f52f0c4103aab2086175b947fa", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Inexhaustible" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:02:49.658Z", + "createdAt": "2023-11-10T14:34:21.144Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Bison Grip Tac", - "itemId": "f63e7afc881440cc938295aec4d122fe", + "title": "PlayStation Weapon Sticker DLC2", + "itemId": "4ee918867efa4e20a23cf7d25cc63ea1", "baseAppId": "", - "sku": "pd3_mod_bison_grip_tac", + "sku": "pd3_playstation_cosmetic_weapon_sticker_dlc2", "namespace": "pd3", - "name": "MOD Bison Grip Tac", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "PlayStation Weapon Sticker DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:59:12.274Z" + "purchaseAt": "2024-02-14T16:59:48.788Z", + "discountPurchaseAt": "2024-02-14T16:59:48.788Z" } ], "itemQty": {}, + "boundItemIds": [ + "77329c646c3348db8f33c9ba24e3d23c", + "47ed89c6d7fa496095c0adc4f3a9394c", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Inexhaustible" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:59:14.160Z", + "createdAt": "2024-02-14T16:59:49.994Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD CAR4 Barrel CQC", - "itemId": "1244cd8469f840c19472e1f3bc3bcaec", + "title": "Playstation Character Star", + "itemId": "ff0874dc156a42969abac6abbb7bc6f6", "baseAppId": "", - "sku": "pd3_mod_car4_barrel_cqc", + "sku": "pd3_playstation_character_star", "namespace": "pd3", - "name": "MOD CAR4 Barrel CQC", + "name": "Playstation Character Star", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 999, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:29:15.668Z" + "purchaseAt": "2024-08-28T13:47:22.171Z", + "discountPurchaseAt": "2024-08-28T13:47:22.171Z" } ], "itemQty": {}, + "boundItemIds": [ + "c96bc60d8474431cb935729af1c6f9d9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, - "displayOrder": 1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:29:15.446Z", + "createdAt": "2024-08-28T13:47:20.749Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD CAR4 Barrel Ranged", - "itemId": "8b126649eb4147bdbded6dc90919a580", + "title": "Playstation DLC03 Tailor pack", + "itemId": "73bd715721e84323bb38180dd2cd018e", "baseAppId": "", - "sku": "pd3_mod_car4_barrel_ranged", + "sku": "pd3_playstation_dlc03_tailor_pack", "namespace": "pd3", - "name": "MOD CAR4 Barrel Ranged", + "name": "Playstation DLC03 Tailor pack", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:33:46.192Z" + "purchaseAt": "2024-07-09T09:54:07.009Z", + "discountPurchaseAt": "2024-07-09T09:54:07.009Z" } ], - "itemQty": {}, + "itemIds": [ + "6c3caa76b2eb437f90818fb360655fe8", + "f7f5ab8f8be646f99d681171cbb683b9", + "11c7181c58ef42aab4ff991c708326d4", + "af2a696a6f5242129b8f2c2749857b44", + "7a6d4c981b3346a282ddc108d891e98e", + "526a772afa434d2aa5e7a1937d1edb93", + "1094a6d9440a47ba91048dd0b284a441", + "fa8e2d1f6e994c7392d6938704afd8ed", + "b0fbf8be15634202ba9566259a431f15", + "abbc0106f1334088b3fcae680f3d51f4", + "60dc857faa4b42ddaa595e72ae4c4e05", + "5923eaceadcf4f2c91b89543d2bf4fce" + ], + "itemQty": { + "f7f5ab8f8be646f99d681171cbb683b9": 1, + "abbc0106f1334088b3fcae680f3d51f4": 1, + "60dc857faa4b42ddaa595e72ae4c4e05": 1, + "5923eaceadcf4f2c91b89543d2bf4fce": 1, + "b0fbf8be15634202ba9566259a431f15": 1, + "af2a696a6f5242129b8f2c2749857b44": 1, + "fa8e2d1f6e994c7392d6938704afd8ed": 1, + "526a772afa434d2aa5e7a1937d1edb93": 1, + "6c3caa76b2eb437f90818fb360655fe8": 1, + "1094a6d9440a47ba91048dd0b284a441": 1, + "11c7181c58ef42aab4ff991c708326d4": 1, + "7a6d4c981b3346a282ddc108d891e98e": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, - "displayOrder": 1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:33:45.961Z", + "createdAt": "2024-07-09T09:54:06.076Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD CAR4 Mag Compact", - "itemId": "56d854ef16b24894bf898924850d5e36", + "title": "Playstation DLC03 Weapon Charm 01", + "itemId": "f40aab1df6c847308fb4ecc87a776da8", "baseAppId": "", - "sku": "pd3_mod_car4_mag_compact", + "sku": "pd3_playstation_cosmetics_weapon_Charm_dlc03_01", "namespace": "pd3", - "name": "MOD CAR4 Mag Compact", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Playstation DLC03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:56:16.210Z" + "purchaseAt": "2024-07-11T12:42:08.132Z" } ], "itemQty": {}, + "boundItemIds": [ + "49981ef260c34b028104e721284053d4", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "inexhaustible", + "Playstation" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:56:15.728Z", + "createdAt": "2024-07-11T12:42:08.164Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD CAR4 Mag Extended", - "itemId": "6fd919c2a03a43a78500ea82fd4358d5", + "title": "Playstation DLC03 Weapon Sticker 01", + "itemId": "782349c44a5644b5a57cf08177d270d8", "baseAppId": "", - "sku": "pd3_mod_car4_mag_extended", + "sku": "pd3_playstation_cosmetics_weapon_sticker_dlc03_01", "namespace": "pd3", - "name": "MOD CAR4 Mag Extended", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Playstation DLC03 Weapon Sticker 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:54:26.262Z" + "purchaseAt": "2024-07-09T08:11:28.007Z", + "discountPurchaseAt": "2024-07-09T08:11:28.007Z" } ], "itemQty": {}, + "boundItemIds": [ + "49981ef260c34b028104e721284053d4", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "inexhaustible" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:54:25.784Z", + "createdAt": "2024-07-09T08:11:27.359Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD CAR4 Mag Quick", - "itemId": "5551f478b5ec494380c1f544e7cd49ab", + "title": "Playstation DLC04 Weapon Charm 01", + "itemId": "a47b25b06de348f0a3fb1123519177ba", "baseAppId": "", - "sku": "pd3_mod_car4_mag_quick", + "sku": "pd3_playstation_cosmetics_charm_dlc04_01", "namespace": "pd3", - "name": "MOD CAR4 Mag Quick", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Playstation DLC04 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:47:44.705Z" + "purchaseAt": "2024-07-25T16:08:47.34Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "5098b2b4214b4306967e7777953f99d6", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "inexhaustible", + "Playstation" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:47:44.233Z", + "createdAt": "2024-07-25T16:08:47.387Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Barrel CQC", - "itemId": "a46d88ccc3df45698d2c8c3244085dc5", + "title": "Playstation DLC04 Weapon Sticker 01", + "itemId": "b2561d7e91764b7890f73ab80401d7a0", "baseAppId": "", - "sku": "pd3_mod_castigo44_barrel_cqc", + "sku": "pd3_playstation_cosmetics_sticker_dlc04_01", "namespace": "pd3", - "name": "MOD Castigo44 Barrel CQC", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "name": "Playstation DLC04 Weapon Sticker 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:15:50.710Z" + "purchaseAt": "2024-07-25T16:15:37.549Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "5098b2b4214b4306967e7777953f99d6", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "inexhaustible", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:15:50.445Z", + "createdAt": "2024-07-25T16:15:37.578Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Barrel Ranged", - "itemId": "d1a3e567e3db466698a382c1fa495147", + "title": "Playstation DLC04 Tailor pack", + "itemId": "9bfcd0f8c7c24a8db7bceed7a72741ca", "baseAppId": "", - "sku": "pd3_mod_castigo44_barrel_ranged", + "sku": "pd3_playstation_dlc04_tailor_pack", "namespace": "pd3", - "name": "MOD Castigo44 Barrel Ranged", + "name": "Playstation DLC04 Tailor pack", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:14:18.089Z" + "purchaseAt": "2024-08-07T19:29:32.092Z", + "discountPurchaseAt": "2024-08-07T19:29:32.092Z" } ], - "itemQty": {}, + "itemIds": [ + "72af164970c142edb91347c19199e935", + "0f7952bba68c480a8b3da23495a21eb7", + "985ded9d8e0c48d1b61aed8b5d6a174d", + "222325428d0d406ab75b5305f44ab383", + "3df4a85caab94c5c91587a2daf8ab1ac", + "8ae5d14d5531456f96696d411ffbc7f8", + "6bd78c7458904b40870fbe84ed2d8d56", + "52308e00d99144399c8b954a536877a3", + "6dc93776796e47d9b6629edd4ceb4547", + "103492996b76496ca430227ef0de5353", + "3226208e5d36413fab24d2b1ecf44eee", + "e104ab42d42845bda2a40edcafa127b3" + ], + "itemQty": { + "0f7952bba68c480a8b3da23495a21eb7": 1, + "222325428d0d406ab75b5305f44ab383": 1, + "3df4a85caab94c5c91587a2daf8ab1ac": 1, + "985ded9d8e0c48d1b61aed8b5d6a174d": 1, + "52308e00d99144399c8b954a536877a3": 1, + "e104ab42d42845bda2a40edcafa127b3": 1, + "8ae5d14d5531456f96696d411ffbc7f8": 1, + "6dc93776796e47d9b6629edd4ceb4547": 1, + "72af164970c142edb91347c19199e935": 1, + "6bd78c7458904b40870fbe84ed2d8d56": 1, + "103492996b76496ca430227ef0de5353": 1, + "3226208e5d36413fab24d2b1ecf44eee": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:14:17.826Z", + "createdAt": "2024-08-07T19:29:32.147Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Barrel Tac", - "itemId": "bc60cdc13d7746e0adb079818d42c695", + "title": "Playstation DLCPP0002 mould Pig 01", + "itemId": "ca34f0ade920423582530ed0aff778cc", "baseAppId": "", - "sku": "pd3_mod_castigo44_barrel_tac", + "sku": "pd3_playstation_mould_Pig_01", "namespace": "pd3", - "name": "MOD Castigo44 Barrel Tac", + "name": "Playstation DLCPP0002 mould Pig 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:17:21.622Z" + "purchaseAt": "2024-05-15T08:50:23.325Z", + "discountPurchaseAt": "2024-05-15T08:50:23.325Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:17:21.360Z", + "createdAt": "2024-05-15T08:50:19.664Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Grip Biofit", - "itemId": "3975268d9add4ba19e489a703c40c584", + "title": "Playstation Player Pack 03 Mask Mould 01", + "itemId": "b8afe9b02a4442138f9962cd4bf9d5dc", "baseAppId": "", - "sku": "pd3_mod_castigo44_grip_biofit", + "sku": "pd3_playstation_cosmetics_mould_pp03_01", "namespace": "pd3", - "name": "MOD Castigo44 Grip Biofit", + "name": "Playstation Player Pack 03 Mask Mould 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:51:49.115Z" + "purchaseAt": "2024-08-27T11:35:38.468Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "STARCategory", + "PlayStation", + "CharacterVendor", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:51:51.024Z", + "createdAt": "2024-08-27T11:35:39.615Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Grip Hardwood", - "itemId": "738f330b6eac49d1891746564e0aed3f", + "title": "Playstation Player Pack 03 Mask Mould 01 - Vendor Item", + "itemId": "ec3575f7ed4b4fb185b810c3df18f48f", "baseAppId": "", - "sku": "pd3_mod_castigo44_grip_hardwood", + "sku": "pd3_playstation_cosmetics_mould_pp03_01_vendor", "namespace": "pd3", - "name": "MOD Castigo44 Grip Hardwood", + "name": "Playstation Player Pack 03 Mask Mould 01 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:56:10.487Z" + "purchaseAt": "2024-08-27T11:45:06.17Z", + "discountPurchaseAt": "2024-08-27T11:45:06.17Z" } ], "itemQty": {}, + "boundItemIds": [ + "c96bc60d8474431cb935729af1c6f9d9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:56:12.381Z", + "createdAt": "2024-08-27T11:45:07.314Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Castigo44 Grip Tac", - "itemId": "8040900ee6f942fa8278434ffb369b00", + "title": "Playstation Player Pack 03 Weapon Charm 01", + "itemId": "6f434e9f16164f0eac8d308a70c3face", "baseAppId": "", - "sku": "pd3_mod_castigo44_grip_tac", + "sku": "pd3_playstation_cosmetics_charm_pp03_01", "namespace": "pd3", - "name": "MOD Castigo44 Grip Tac", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Playstation Player Pack 03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:54:02.285Z" + "purchaseAt": "2024-08-28T09:18:56.133Z" } ], "itemQty": {}, + "boundItemIds": [ + "c96bc60d8474431cb935729af1c6f9d9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "inexhaustible" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:54:04.184Z", + "createdAt": "2024-08-28T09:18:55.469Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Commando Mag Compact", - "itemId": "c4773b8fb93644f0966eae0907655a01", + "title": "Playstation Star Character Bundle", + "itemId": "c96bc60d8474431cb935729af1c6f9d9", "baseAppId": "", - "sku": "pd3_mod_commando_mag_compact", + "sku": "pd3_playstation_character_bundle_star", "namespace": "pd3", - "name": "MOD Commando Mag Compact", + "name": "Playstation Star Character Bundle", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100000, + "price": 993, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 993, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:01:51.211Z" + "purchaseAt": "2024-08-26T14:10:15.376Z", + "discountPurchaseAt": "2024-08-26T14:10:15.376Z" } ], - "itemQty": {}, + "itemIds": [ + "ff0874dc156a42969abac6abbb7bc6f6", + "4f560f6665264684be1c9cf1df13b72e", + "ec3575f7ed4b4fb185b810c3df18f48f", + "6f434e9f16164f0eac8d308a70c3face" + ], + "itemQty": { + "ec3575f7ed4b4fb185b810c3df18f48f": 1, + "6f434e9f16164f0eac8d308a70c3face": 1, + "4f560f6665264684be1c9cf1df13b72e": 1, + "ff0874dc156a42969abac6abbb7bc6f6": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, - "displayOrder": 1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:01:50.724Z", + "createdAt": "2024-08-26T14:10:14.375Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Commando Mag Extended", - "itemId": "3ba3246607b546f48b2a94de51b8144d", + "title": "Playstation Star Preset Vendor Item", + "itemId": "4f560f6665264684be1c9cf1df13b72e", "baseAppId": "", - "sku": "pd3_mod_commando_mag_extended", + "sku": "pd3_playstation_wpn_preset_star_vendor", "namespace": "pd3", - "name": "MOD Commando Mag Extended", + "name": "Playstation Star Preset Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:57:59.507Z" + "purchaseAt": "2024-08-27T11:33:47.405Z", + "discountPurchaseAt": "2024-08-27T11:33:47.405Z" } ], "itemQty": {}, + "boundItemIds": [ + "c96bc60d8474431cb935729af1c6f9d9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation" ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, - "displayOrder": 1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:57:59.024Z", + "createdAt": "2024-08-27T11:33:47.378Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Commando Mag Quick", - "itemId": "2004490973424f5fa8a38cd577ea204c", + "title": "Playstation Star Weapon Preset", + "itemId": "e88b8bb421784591998020672e53f26e", "baseAppId": "", - "sku": "pd3_mod_commando_mag_quick", + "sku": "pd3_playstation_wpn_preset_star", "namespace": "pd3", - "name": "MOD Commando Mag Quick", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Playstation Star Weapon Preset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 50, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:00:09.437Z" + "purchaseAt": "2024-08-28T09:31:14.157Z", + "discountPurchaseAt": "2024-08-28T09:31:14.157Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "STARCategory", + "CombatEquipmentVendor", + "PlayStation", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:00:08.954Z", + "createdAt": "2024-08-28T09:31:13.461Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Compact7 Mag Compact", - "itemId": "bdbd6f7e9f6d486ea56b077707900b2b", + "title": "Playstation Tailor Pack 03 Gloves 01", + "itemId": "7a6d4c981b3346a282ddc108d891e98e", "baseAppId": "", - "sku": "pd3_mod_compact7_mag_compact", + "sku": "pd3_playstation_cosmetics_gloves_dlc03_01", "namespace": "pd3", - "name": "MOD Compact7 Mag Compact", + "name": "Playstation Tailor Pack 03 Gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:38:34.908Z" + "purchaseAt": "2024-07-09T07:36:27.813Z", + "discountPurchaseAt": "2024-07-09T07:36:27.813Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:38:34.449Z", + "createdAt": "2024-07-09T07:36:27.274Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Compact7 Mag Extended", - "itemId": "6c2c8ad4bae149dbba527fadf061be04", + "title": "Playstation Tailor Pack 03 Gloves 02", + "itemId": "526a772afa434d2aa5e7a1937d1edb93", "baseAppId": "", - "sku": "pd3_mod_compact7_mag_extended", + "sku": "pd3_playstation_cosmetics_gloves_dlc03_02", "namespace": "pd3", - "name": "MOD Compact7 Mag Extended", + "name": "Playstation Tailor Pack 03 Gloves 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:35:20.650Z" + "purchaseAt": "2024-07-09T07:37:19.223Z", + "discountPurchaseAt": "2024-07-09T07:37:19.223Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:35:20.189Z", + "createdAt": "2024-07-09T07:37:18.683Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Compact7 Mag Quick", - "itemId": "f27f3fef44e445a9aa9579e53073922e", + "title": "Playstation Tailor Pack 03 Gloves 03", + "itemId": "1094a6d9440a47ba91048dd0b284a441", "baseAppId": "", - "sku": "pd3_mod_compact7_mag_quick", + "sku": "pd3_playstation_cosmetics_gloves_dlc03_03", "namespace": "pd3", - "name": "MOD Compact7 Mag Quick", + "name": "Playstation Tailor Pack 03 Gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:36:54.902Z" + "purchaseAt": "2024-07-09T07:38:11.163Z", + "discountPurchaseAt": "2024-07-09T07:38:11.163Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:36:54.439Z", + "createdAt": "2024-07-09T07:38:10.616Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FIK22 Barrel CQC ", - "itemId": "dbe78126247440e1bacee7f60b90b7c7", + "title": "Playstation Tailor Pack 03 Gloves 04", + "itemId": "fa8e2d1f6e994c7392d6938704afd8ed", "baseAppId": "", - "sku": "pd3_mod_fik22_barrel_cqc", + "sku": "pd3_playstation_cosmetics_gloves_dlc03_04", "namespace": "pd3", - "name": "MOD FIK22 Barrel CQC ", + "name": "Playstation Tailor Pack 03 Gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:46:43.084Z" + "purchaseAt": "2024-07-09T07:39:04.618Z", + "discountPurchaseAt": "2024-07-09T07:39:04.618Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:46:44.247Z", + "createdAt": "2024-07-09T07:39:04.069Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FIK22 Barrel Ranged ", - "itemId": "8e7fda47db5048549e785c5ad7e6ecc9", + "title": "Playstation Tailor Pack 03 Mask 01", + "itemId": "6c3caa76b2eb437f90818fb360655fe8", "baseAppId": "", - "sku": "pd3_mod_fik22_barrel_ranged", + "sku": "pd3_playstation_cosmetics_mask_dlc03_01", "namespace": "pd3", - "name": "MOD FIK22 Barrel Ranged ", + "name": "Playstation Tailor Pack 03 Mask 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:45:30.885Z" + "purchaseAt": "2024-07-05T12:55:40.131Z", + "discountPurchaseAt": "2024-07-05T12:55:40.131Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:45:32.045Z", + "createdAt": "2024-07-05T12:55:39.533Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FIK22 Mag Compact ", - "itemId": "086fd69c620f47e28ce0ca58cb1047f5", + "title": "Playstation Tailor Pack 03 Mask 02", + "itemId": "f7f5ab8f8be646f99d681171cbb683b9", "baseAppId": "", - "sku": "pd3_mod_fik22_mag_compact", + "sku": "pd3_playstation_cosmetics_mask_dlc03_02", "namespace": "pd3", - "name": "MOD FIK22 Mag Compact ", + "name": "Playstation Tailor Pack 03 Mask 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:49:33.337Z" + "purchaseAt": "2024-07-05T12:56:16.254Z", + "discountPurchaseAt": "2024-07-05T12:56:16.254Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:49:34.511Z", + "createdAt": "2024-07-05T12:56:15.674Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FIK22 Mag Extended ", - "itemId": "8c721a6ff0534476ad888f8cd51c6c5e", + "title": "Playstation Tailor Pack 03 Mask 03", + "itemId": "11c7181c58ef42aab4ff991c708326d4", "baseAppId": "", - "sku": "pd3_mod_fik22_mag_extended", + "sku": "pd3_playstation_cosmetics_mask_dlc03_03", "namespace": "pd3", - "name": "MOD FIK22 Mag Extended ", + "name": "Playstation Tailor Pack 03 Mask 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:47:51.034Z" + "purchaseAt": "2024-07-05T12:57:59.057Z", + "discountPurchaseAt": "2024-07-05T12:57:59.057Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:47:52.198Z", + "createdAt": "2024-07-05T12:57:58.461Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FIK22 Mag Quick ", - "itemId": "48995a315d7748debc5247d086782a67", + "title": "Playstation Tailor Pack 03 Mask 04", + "itemId": "af2a696a6f5242129b8f2c2749857b44", "baseAppId": "", - "sku": "pd3_mod_fik22_mag_quick", + "sku": "pd3_playstation_cosmetics_mask_dlc03_04", "namespace": "pd3", - "name": "MOD FIK22 Mag Quick ", + "name": "Playstation Tailor Pack 03 Mask 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:50:46.560Z" + "purchaseAt": "2024-07-05T12:58:48.513Z", + "discountPurchaseAt": "2024-07-05T12:58:48.513Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:50:47.736Z", + "createdAt": "2024-07-05T12:58:47.899Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FSA12 Barrel CQC ", - "itemId": "a0aef83e62fc4924b0ef45c1231193a6", + "title": "Playstation Tailor Pack 03 Suit 01", + "itemId": "b0fbf8be15634202ba9566259a431f15", "baseAppId": "", - "sku": "pd3_mod_fsa12_barrel_cqc", + "sku": "pd3_playstation_cosmetics_suit_dlc03_01", "namespace": "pd3", - "name": "MOD FSA12 Barrel CQC ", + "name": "Playstation Tailor Pack 03 Suit 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:33:34.740Z" + "purchaseAt": "2024-07-09T07:58:27.533Z", + "discountPurchaseAt": "2024-07-09T07:58:27.533Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:33:35.868Z", + "createdAt": "2024-07-09T07:58:26.942Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FSA12 Barrel Ranged ", - "itemId": "9c4f0897e89344dba7046aacd05dd5fb", + "title": "Playstation Tailor Pack 03 Suit 02", + "itemId": "abbc0106f1334088b3fcae680f3d51f4", "baseAppId": "", - "sku": "pd3_mod_fsa12_barrel_ranged", + "sku": "pd3_playstation_cosmetics_suit_dlc03_02", "namespace": "pd3", - "name": "MOD FSA12 Barrel Ranged ", + "name": "Playstation Tailor Pack 03 Suit 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:35:07.589Z" + "purchaseAt": "2024-07-09T07:59:12.253Z", + "discountPurchaseAt": "2024-07-09T07:59:12.253Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:35:08.738Z", + "createdAt": "2024-07-09T07:59:11.668Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FSA12 Mag Compact ", - "itemId": "0e04713e183b48d6bcc99db840b7ae34", + "title": "Playstation Tailor Pack 03 Suit 03", + "itemId": "60dc857faa4b42ddaa595e72ae4c4e05", "baseAppId": "", - "sku": "pd3_mod_fsa12_mag_compact", + "sku": "pd3_playstation_cosmetics_suit_dlc03_03", "namespace": "pd3", - "name": "MOD FSA12 Mag Compact ", + "name": "Playstation Tailor Pack 03 Suit 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:39:39.421Z" + "purchaseAt": "2024-07-09T08:00:15.102Z", + "discountPurchaseAt": "2024-07-09T08:00:15.102Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:39:40.588Z", + "createdAt": "2024-07-09T08:00:14.498Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FSA12 Mag Extended ", - "itemId": "3af25c1438af48cb82c402f09e3df4e1", + "title": "Playstation Tailor Pack 03 Suit 04", + "itemId": "5923eaceadcf4f2c91b89543d2bf4fce", "baseAppId": "", - "sku": "pd3_mod_fsa12_mag_extended", + "sku": "pd3_playstation_cosmetics_suit_dlc03_04", "namespace": "pd3", - "name": "MOD FSA12 Mag Extended ", + "name": "Playstation Tailor Pack 03 Suit 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:38:00.592Z" + "purchaseAt": "2024-07-09T08:00:56.568Z", + "discountPurchaseAt": "2024-07-09T08:00:56.568Z" } ], "itemQty": {}, + "boundItemIds": [ + "73bd715721e84323bb38180dd2cd018e", + "37fc20ad8805435f86e90ae5f292502d", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:38:01.753Z", + "createdAt": "2024-07-09T08:00:55.948Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD FSA12 Mag Quick ", - "itemId": "bbd81ba64f9b4f889d9fcd16912acd38", + "title": "Playstation Tailor Pack 04 Gloves 01", + "itemId": "6dc93776796e47d9b6629edd4ceb4547", "baseAppId": "", - "sku": "pd3_mod_fsa12_mag_quick", + "sku": "pd3_playstation_cosmetics_gloves_dlc04_01", "namespace": "pd3", - "name": "MOD FSA12 Mag Quick ", + "name": "Playstation Tailor Pack 04 Gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:40:35.628Z" + "purchaseAt": "2024-07-25T15:45:22.947Z", + "discountPurchaseAt": "2024-07-25T15:45:22.947Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:40:36.789Z", + "createdAt": "2024-07-25T15:45:22.98Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Biofit", - "itemId": "d6e3a0939b0649c49225f2032b1833cf", + "title": "Playstation Tailor Pack 04 Gloves 02", + "itemId": "103492996b76496ca430227ef0de5353", "baseAppId": "", - "sku": "pd3_mod_grip_biofit", + "sku": "pd3_playstation_cosmetics_gloves_dlc04_02", "namespace": "pd3", - "name": "MOD Grip Biofit", + "name": "Playstation Tailor Pack 04 Gloves 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:38:23.190Z" + "purchaseAt": "2024-07-25T15:50:59.257Z", + "discountPurchaseAt": "2024-07-25T15:50:59.257Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:38:25.452Z", + "createdAt": "2024-07-25T15:50:59.295Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Biofit High", - "itemId": "e22111215d6c4388bae5892dc8cc7fb0", + "title": "Playstation Tailor Pack 04 Gloves 03", + "itemId": "3226208e5d36413fab24d2b1ecf44eee", "baseAppId": "", - "sku": "pd3_mod_grip_biofit_high", + "sku": "pd3_playstation_cosmetics_gloves_dlc04_03", "namespace": "pd3", - "name": "MOD Grip Biofit High", + "name": "Playstation Tailor Pack 04 Gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:48:36.750Z" + "purchaseAt": "2024-07-25T15:57:26.221Z", + "discountPurchaseAt": "2024-07-25T15:57:26.221Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:48:36.583Z", + "createdAt": "2024-07-25T15:57:26.26Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Biofit Low", - "itemId": "6390a3ce3755466ba94b035ea7032170", + "title": "Playstation Tailor Pack 04 Gloves 04", + "itemId": "e104ab42d42845bda2a40edcafa127b3", "baseAppId": "", - "sku": "pd3_mod_grip_biofit_low", + "sku": "pd3_playstation_cosmetics_gloves_dlc04_04", "namespace": "pd3", - "name": "MOD Grip Biofit Low", + "name": "Playstation Tailor Pack 04 Gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:57:57.808Z" + "purchaseAt": "2024-07-25T16:01:54.33Z", + "discountPurchaseAt": "2024-07-25T16:01:54.33Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:57:57.709Z", + "createdAt": "2024-07-25T16:01:54.366Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Perforated", - "itemId": "b4e8b78464214cf5a2a50d65b2cc2ae8", + "title": "Playstation Tailor Pack 04 Mask 01", + "itemId": "3df4a85caab94c5c91587a2daf8ab1ac", "baseAppId": "", - "sku": "pd3_mod_grip_perforated", + "sku": "pd3_playstation_cosmetics_mask_dlc04_01", "namespace": "pd3", - "name": "MOD Grip Perforated", + "name": "Playstation Tailor Pack 04 Mask 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:40:58.829Z" + "purchaseAt": "2024-07-25T13:54:25.818Z", + "discountPurchaseAt": "2024-07-25T13:54:25.818Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:41:01.097Z", + "createdAt": "2024-07-25T13:54:25.884Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Perforated High", - "itemId": "7771ec8015d94301b1e2c049ff6d5586", + "title": "Playstation Tailor Pack 04 Mask 02", + "itemId": "8ae5d14d5531456f96696d411ffbc7f8", "baseAppId": "", - "sku": "pd3_mod_grip_perforated_high", + "sku": "pd3_playstation_cosmetics_mask_dlc04_02", "namespace": "pd3", - "name": "MOD Grip Perforated High", + "name": "Playstation Tailor Pack 04 Mask 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:50:30.007Z" + "purchaseAt": "2024-07-25T13:59:15.252Z", + "discountPurchaseAt": "2024-07-25T13:59:15.252Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:50:29.836Z", + "createdAt": "2024-07-25T13:59:15.304Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Perforated Low", - "itemId": "b54757580dbe406d99eeaa4281957efe", + "title": "Playstation Tailor Pack 04 Mask 03", + "itemId": "6bd78c7458904b40870fbe84ed2d8d56", "baseAppId": "", - "sku": "pd3_mod_grip_perforated_low", + "sku": "pd3_playstation_cosmetics_mask_dlc04_03", "namespace": "pd3", - "name": "MOD Grip Perforated Low", + "name": "Playstation Tailor Pack 04 Mask 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:59:40.885Z" + "purchaseAt": "2024-07-25T14:04:11.718Z", + "discountPurchaseAt": "2024-07-25T14:04:11.718Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:59:40.760Z", + "createdAt": "2024-07-25T14:04:11.771Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Tac", - "itemId": "945a3ffbe2394cdc976765d1a108a990", + "title": "Playstation Tailor Pack 04 Mask 04", + "itemId": "52308e00d99144399c8b954a536877a3", "baseAppId": "", - "sku": "pd3_mod_grip_tac", + "sku": "pd3_playstation_cosmetics_mask_dlc04_04", "namespace": "pd3", - "name": "MOD Grip Tac", + "name": "Playstation Tailor Pack 04 Mask 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:39:46.960Z" + "purchaseAt": "2024-07-25T15:38:24.229Z", + "discountPurchaseAt": "2024-07-25T15:38:24.229Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:39:49.219Z", + "createdAt": "2024-07-25T15:38:24.265Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Tac High", - "itemId": "888e634e85d549658af1171988ad4b2d", + "title": "Playstation Tailor Pack 04 Mask 01", + "itemId": "72af164970c142edb91347c19199e935", "baseAppId": "", - "sku": "pd3_mod_grip_tac_high", + "sku": "pd3_playstation_cosmetics_suit_dlc04_01", "namespace": "pd3", - "name": "MOD Grip Tac High", + "name": "Playstation Tailor Pack 04 Suit 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:49:43.405Z" + "purchaseAt": "2024-07-25T13:03:51.12Z", + "discountPurchaseAt": "2024-07-25T13:03:51.12Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:49:43.241Z", + "createdAt": "2024-07-25T13:03:51.189Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Grip Tac Low", - "itemId": "fad3334008bb4fc4aceea6e709404079", + "title": "Playstation Tailor Pack 04 Suit 02", + "itemId": "0f7952bba68c480a8b3da23495a21eb7", "baseAppId": "", - "sku": "pd3_mod_grip_tac_low", + "sku": "pd3_playstation_cosmetics_suit_dlc04_02", "namespace": "pd3", - "name": "MOD Grip Tac Low", + "name": "Playstation Tailor Pack 04 Suit 02", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:59:03.633Z" + "purchaseAt": "2024-07-25T13:30:56.828Z", + "discountPurchaseAt": "2024-07-25T13:30:56.828Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:59:03.512Z", + "createdAt": "2024-07-25T13:30:56.887Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Barrel Rail", - "itemId": "202233ed595d4b6cb6cfe6e851645150", + "title": "Playstation Tailor Pack 04 Suit 03", + "itemId": "985ded9d8e0c48d1b61aed8b5d6a174d", "baseAppId": "", - "sku": "pd3_mod_ku59_barrel_rail", + "sku": "pd3_playstation_cosmetics_suit_dlc04_03", "namespace": "pd3", - "name": "MOD KU59 Barrel Rail", + "name": "Playstation Tailor Pack 04 Suit 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:42:57.319Z" + "purchaseAt": "2024-07-25T13:36:25.299Z", + "discountPurchaseAt": "2024-07-25T13:36:25.299Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:42:57.080Z", + "createdAt": "2024-07-25T13:36:25.351Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Barrel TradGrip", - "itemId": "577aaaf2ad8c47cca94c279f0c01d8cb", + "title": "Playstation Tailor Pack 04 Suit 04", + "itemId": "222325428d0d406ab75b5305f44ab383", "baseAppId": "", - "sku": "pd3_mod_ku59_barrel_tradgrip", + "sku": "pd3_playstation_cosmetics_suit_dlc04_04", "namespace": "pd3", - "name": "MOD KU59 Barrel TradGrip", + "name": "Playstation Tailor Pack 04 Suit 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:45:27.456Z" + "purchaseAt": "2024-07-25T13:42:25.116Z", + "discountPurchaseAt": "2024-07-25T13:42:25.116Z" } ], "itemQty": {}, + "boundItemIds": [ + "818ed3848f7b4ff9a58816e8417f4916", + "9bfcd0f8c7c24a8db7bceed7a72741ca", + "88e8728f2a814997ba5a4ce7521bde4f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "Playstation" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:45:27.216Z", + "createdAt": "2024-07-25T13:42:25.169Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Grip Biofit", - "itemId": "31acebf19e7a414a8e3652be1b4f7c09", + "title": "Poison Penthouse Preplanning asset", + "itemId": "b815a9b61ba944dda953eb85fd8d6bbf", "baseAppId": "", - "sku": "pd3_mod_ku59_grip_biofit", + "sku": "pd3_preplanning_penthouse_3", "namespace": "pd3", - "name": "MOD KU59 Grip Biofit", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Poison Penthouse Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:10:46.460Z", - "discountPurchaseAt": "2022-11-17T12:10:46.460Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:10:48.324Z", + "createdAt": "2022-10-19T13:24:37.835Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Grip Perforated", - "itemId": "691082cc8b3c4f39be3ec0d594adb27b", + "title": "Pre-Bundled Mask - Nebula", + "itemId": "e6b9bcc883124f5a86611cc7617da8f8", "baseAppId": "", - "sku": "pd3_mod_ku59_grip_perforated", + "sku": "pd3_cosmetic_mask_prebundled_nebula", "namespace": "pd3", - "name": "MOD KU59 Grip Perforated", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Pre-Bundled Mask - Nebula", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:14:25.727Z" + "purchaseAt": "2023-03-17T15:28:15.941Z", + "discountPurchaseAt": "2023-03-17T15:28:15.941Z" } ], "itemQty": {}, - "tags": [ - "WeaponPart" - ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:14:27.596Z", + "createdAt": "2023-03-17T15:28:15.841Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Grip Tac", - "itemId": "183a3bea76c34d1f8218287ef0decb89", + "title": "Pre-Bundled Mask 1", + "itemId": "eee85e17be7a4dedaa4f56d9efed522c", "baseAppId": "", - "sku": "pd3_mod_ku59_grip_tac", + "sku": "pd3_cosmetic_mask_prebundled1", "namespace": "pd3", - "name": "MOD KU59 Grip Tac", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Pre-Bundled Mask 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 200, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 200, "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:12:32.912Z" + "purchaseAt": "2023-02-07T13:36:50.276Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel131", + "RarityUncommon", + "CharacterVendor" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:12:34.767Z", + "createdAt": "2023-02-07T13:36:50.22Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Mag Compact", - "itemId": "038673a915354691ada83fa7a92d4c6a", + "title": "Pre-Bundled Mask 10", + "itemId": "dbacd9a07741407d8fd0a6ddd11a8b95", "baseAppId": "", - "sku": "pd3_mod_ku59_mag_compact", + "sku": "pd3_cosmetic_mask_prebundled10", "namespace": "pd3", - "name": "MOD KU59 Mag Compact", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Pre-Bundled Mask 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:33:36.709Z" + "purchaseAt": "2023-05-29T08:44:32.331Z", + "discountPurchaseAt": "2023-05-29T08:44:32.331Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel149" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:33:36.249Z", + "createdAt": "2023-05-29T08:44:32.251Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Mag Extended", - "itemId": "e36bb928eefe43628257d6baedc5c9bf", + "title": "Pre-Bundled Mask 11", + "itemId": "6b467263c4564c7db50d544d03b98b4f", "baseAppId": "", - "sku": "pd3_mod_ku59_mag_extended", + "sku": "pd3_cosmetic_mask_prebundled11", "namespace": "pd3", - "name": "MOD KU59 Mag Extended", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Pre-Bundled Mask 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:31:51.129Z" + "purchaseAt": "2023-05-29T08:46:15.936Z", + "discountPurchaseAt": "2023-05-29T08:46:15.936Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel150", + "RarityEpic", + "CharacterVendor" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:31:50.672Z", + "createdAt": "2023-05-29T08:46:15.873Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD KU59 Mag Quick", - "itemId": "1bd766bc1248417e947dfcc852ac6457", + "title": "Pre-Bundled Mask 2", + "itemId": "8da60ffc7d6a4bc5b0d680c7d7970f73", "baseAppId": "", - "sku": "pd3_mod_ku59_mag_quick", + "sku": "pd3_cosmetic_mask_prebundled2", "namespace": "pd3", - "name": "MOD KU59 Mag Quick", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Pre-Bundled Mask 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 100, "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:26:35.561Z" + "purchaseAt": "2023-02-07T13:38:58.195Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InfamyLevel106" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:26:35.114Z", + "createdAt": "2023-02-07T13:38:58.133Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Mosconi12C Barrel CQC", - "itemId": "08ab9b885fca4acda0c1eac81cfea531", + "title": "Pre-Bundled Mask 3", + "itemId": "20ce3ec76aa9457c9d49b621d737e923", "baseAppId": "", - "sku": "pd3_mod_mosconi12c_barrel_cqc", + "sku": "pd3_cosmetic_mask_prebundled3", "namespace": "pd3", - "name": "MOD Mosconi12C Barrel CQC", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "name": "Pre-Bundled Mask 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:58:06.310Z" + "purchaseAt": "2023-02-07T13:40:23.305Z" } ], "itemQty": {}, "tags": [ - "WeaponPart", - "InitialItem" + "RarityRare", + "CharacterVendor", + "InfamyLevel111" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:58:06.061Z", + "createdAt": "2023-02-07T13:40:23.23Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Mosconi12C Barrel Ranged", - "itemId": "4731fa450c574a9cb5e4caf21297e9c6", + "title": "Pre-Bundled Mask 4", + "itemId": "fca054c521a3465098f12bcc40c584bc", "baseAppId": "", - "sku": "pd3_mod_mosconi12c_barrel_ranged", + "sku": "pd3_cosmetic_mask_prebundled4", "namespace": "pd3", - "name": "MOD Mosconi12C Barrel Ranged", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "name": "Pre-Bundled Mask 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 100, "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:59:36.210Z" + "purchaseAt": "2023-02-07T13:41:49.009Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityRare", + "CharacterVendor", + "InfamyLevel116" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:59:35.957Z", + "createdAt": "2023-02-07T13:41:48.927Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Mosconi12C Stock CQC", - "itemId": "fee628c71279410d8e301ff2b1c35a8c", + "title": "Pre-Bundled Mask 5", + "itemId": "dcab10a605da4460a773ebd5ea09ab1b", "baseAppId": "", - "sku": "pd3_mod_mosconi12c_stock_cqc", + "sku": "pd3_cosmetic_mask_prebundled5", "namespace": "pd3", - "name": "MOD Mosconi12C Stock CQC", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Pre-Bundled Mask 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:19:02.983Z" + "purchaseAt": "2023-02-07T13:43:00.88Z", + "discountPurchaseAt": "2023-02-07T13:43:00.88Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel121" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:19:04.670Z", + "createdAt": "2023-02-07T13:43:00.802Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Mosconi12C Stock Fortified", - "itemId": "9e55aa72c6414e0caf5865e834d3f1b2", + "title": "Pre-Bundled Mask 6", + "itemId": "6caacde9d4b2473b9cfba98a615013f4", "baseAppId": "", - "sku": "pd3_mod_mosconi12c_stock_fortified", + "sku": "pd3_cosmetic_mask_prebundled6", "namespace": "pd3", - "name": "MOD Mosconi12C Stock Fortified", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Pre-Bundled Mask 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:20:56.943Z" + "purchaseAt": "2023-02-07T13:43:57.366Z", + "discountPurchaseAt": "2023-02-07T13:43:57.367Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel101" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:20:58.622Z", + "createdAt": "2023-02-07T13:43:57.289Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Mosconi12C Stock Padded", - "itemId": "04ecae2516484a2793a6a81c3080e6ee", + "title": "Pre-Bundled Mask 7", + "itemId": "c0abb7e5f35f4e5fa15a8c2751f664a4", "baseAppId": "", - "sku": "pd3_mod_mosconi12c_stock_padded", + "sku": "pd3_cosmetic_mask_prebundled7", "namespace": "pd3", - "name": "MOD Mosconi12C Stock Padded", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Pre-Bundled Mask 7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:20:05.762Z" + "purchaseAt": "2023-05-29T08:34:17.381Z", + "discountPurchaseAt": "2023-05-29T08:34:17.381Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel126" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:20:07.447Z", + "createdAt": "2023-05-29T08:34:17.333Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD NWB9 Mag Compact", - "itemId": "95ed2fc9e6344b38896965c06ac2397b", + "title": "Pre-Bundled Mask 8", + "itemId": "a52c075118ac4401b8f989122e683334", "baseAppId": "", - "sku": "pd3_mod_nwb9_mag_compact", + "sku": "pd3_cosmetic_mask_prebundled8", "namespace": "pd3", - "name": "MOD NWB9 Mag Compact", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Pre-Bundled Mask 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:46:03.775Z", - "discountPurchaseAt": "2022-11-17T12:46:03.775Z" + "purchaseAt": "2023-05-29T08:36:07.95Z", + "discountPurchaseAt": "2023-05-29T08:36:07.95Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel137" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:46:03.303Z", + "createdAt": "2023-05-29T08:36:07.879Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD NWB9 Mag Extended", - "itemId": "131eb28f2a6147b69e069e34caf06b2c", + "title": "Pre-Bundled Mask 9", + "itemId": "acdf79f413284eb5ad6168c1291a9794", "baseAppId": "", - "sku": "pd3_mod_nwb9_mag_extended", + "sku": "pd3_cosmetic_mask_prebundled9", "namespace": "pd3", - "name": "MOD NWB9 Mag Extended", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Pre-Bundled Mask 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskPreconfig", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:44:31.639Z" + "purchaseAt": "2023-05-29T08:43:14.138Z", + "discountPurchaseAt": "2023-05-29T08:43:14.138Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "CharacterVendor", + "InfamyLevel143" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:44:31.169Z", + "createdAt": "2023-05-29T08:43:14.073Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD NWB9 Mag Quick", - "itemId": "65d3a5c0af4c4a87ad34b2cd78bdca4e", + "title": "Premium Epic Mask 7", + "itemId": "ceb3f7910b254e21a29dc85f19fe3716", "baseAppId": "", - "sku": "pd3_mod_nwb9_mag_quick", + "sku": "pd3_epic_cosmetic_mask_premium7", "namespace": "pd3", - "name": "MOD NWB9 Mag Quick", + "name": "Premium Epic Mask 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:41:03.405Z" + "purchaseAt": "2023-09-03T11:47:15.874Z", + "discountPurchaseAt": "2023-09-03T11:47:15.874Z" } ], "itemQty": {}, + "boundItemIds": [ + "957560277d0f484390817596cb6f6792" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:41:02.956Z", + "createdAt": "2023-09-05T18:33:57.684Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD PC9 Mag Compact", - "itemId": "85e32b8d523c4e8aa2d4964930516a2f", + "title": "Premium Mask - Collector's Edition", + "itemId": "94d9475ef8e34819938f78161b041db6", "baseAppId": "", - "sku": "pd3_mod_pc9_mag_compact", + "sku": "pd3_cosmetic_mask_premium_collectoredition", "namespace": "pd3", - "name": "MOD PC9 Mag Compact", + "name": "Premium Mask - Collector's Edition", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", + "images": [], "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:06:43.482Z" + "purchaseAt": "2023-03-17T15:31:21.813Z", + "discountPurchaseAt": "2023-03-17T15:31:21.813Z" } ], "itemQty": {}, + "boundItemIds": [ + "cf30d4935678462fa197ad55bf5045cd" + ], "tags": [ - "WeaponPart" + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "displayOrder": 1, + "ext": {}, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:06:43.000Z", + "createdAt": "2023-03-17T15:31:21.721Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD PC9 Mag Extended", - "itemId": "32dac3230aa3468784bf9943b116f5b2", + "title": "Premium Mask - Collector's Edition Epic", + "itemId": "3f9b21916fa74f2099abdf03c09715bc", "baseAppId": "", - "sku": "pd3_mod_pc9_mag_extended", + "sku": "pd3_epic_cosmetic_mask_premium_collectoredition", "namespace": "pd3", - "name": "MOD PC9 Mag Extended", + "name": "Premium Mask - Collector's Edition Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:03:38.337Z" + "purchaseAt": "2023-09-06T13:42:54.042Z", + "discountPurchaseAt": "2023-09-06T13:42:54.042Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:03:37.848Z", + "createdAt": "2023-09-06T13:42:53.187Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD PC9 Mag Quick", - "itemId": "b23a93f1fb784b1ea1451118e51cc494", + "title": "Premium Mask - Collector's Edition PlayStation", + "itemId": "6f756438841e49bca982e456afda3460", "baseAppId": "", - "sku": "pd3_mod_pc9_mag_quick", + "sku": "pd3_playstation_cosmetic_mask_premium_collectoredition", "namespace": "pd3", - "name": "MOD PC9 Mag Quick", + "name": "Premium Mask - Collector's Edition PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:05:17.299Z" + "purchaseAt": "2023-09-06T13:42:02.927Z", + "discountPurchaseAt": "2023-09-06T13:42:02.927Z" } ], "itemQty": {}, + "boundItemIds": [ + "ae3b3f0551a0487595e3b702d1107960" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:05:16.829Z", + "createdAt": "2023-09-06T13:42:02.077Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Barrel CQC", - "itemId": "0ba573010f2841d9a996683495ed0ebb", + "title": "Premium Mask - Collector's Edition Steam", + "itemId": "a4bceb2be47a4608a8fee6a167e7653f", "baseAppId": "", - "sku": "pd3_mod_r880_barrel_cqc", + "sku": "pd3_steam_cosmetic_mask_premium_collectoredition", "namespace": "pd3", - "name": "MOD R880 Barrel CQC", + "name": "Premium Mask - Collector's Edition Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:49:03.540Z" + "purchaseAt": "2023-09-06T13:40:00.996Z", + "discountPurchaseAt": "2023-09-06T13:40:00.996Z" } ], "itemQty": {}, + "boundItemIds": [ + "d02054037d174688ab9b27514e6e3548" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:49:03.293Z", + "createdAt": "2023-09-06T13:40:00.15Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Barrel Comp", - "itemId": "23e0357915d44e3c8a8533cb6d2b3810", + "title": "Premium Mask - Collector's Edition XBox", + "itemId": "4a46260108cb45d787e2bc6fefce743b", "baseAppId": "", - "sku": "pd3_mod_r880_barrel_comp", + "sku": "pd3_xbox_cosmetic_mask_premium_collectoredition", "namespace": "pd3", - "name": "MOD R880 Barrel Comp", + "name": "Premium Mask - Collector's Edition XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:52:40.795Z" + "purchaseAt": "2023-09-06T13:41:13.958Z", + "discountPurchaseAt": "2023-09-06T13:41:13.958Z" } ], "itemQty": {}, + "boundItemIds": [ + "a5c8d73ba9a4450a820673b31de0ffae" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:52:40.549Z", + "createdAt": "2023-09-06T13:41:13.106Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Barrel Ranged", - "itemId": "d8bf2739f85947e384e03b66206dc0b7", + "title": "Premium Mask - Preorder", + "itemId": "e8a13085ff9543cd9976c6e275197cbd", "baseAppId": "", - "sku": "pd3_mod_r880_barrel_ranged", + "sku": "pd3_cosmetic_mask_premium_preorder", "namespace": "pd3", - "name": "MOD R880 Barrel Ranged", + "name": "Premium Mask - Preorder", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:51:17.092Z" + "purchaseAt": "2023-03-17T15:34:00.971Z", + "discountPurchaseAt": "2023-03-17T15:34:00.971Z" } ], "itemQty": {}, + "boundItemIds": [ + "ce54b97b24184553ae56f1ffc3d54363" + ], "tags": [ - "WeaponPart" + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:51:16.844Z", + "createdAt": "2023-03-17T15:34:00.891Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Foregrip Biofit", - "itemId": "af2311468e9e4eda8653ae926713123e", + "title": "Premium Mask - Preorder Epic", + "itemId": "317e6b8ca180445bab3b6e95e81f75c6", "baseAppId": "", - "sku": "pd3_mod_r880_foregrip_biofit", + "sku": "pd3_epic_cosmetic_mask_premium_preorder", "namespace": "pd3", - "name": "MOD R880 Foregrip Biofit", + "name": "Premium Mask - Preorder Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Foregrip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:21:55.410Z" + "purchaseAt": "2023-09-06T13:03:00.253Z", + "discountPurchaseAt": "2023-09-06T13:03:00.253Z" } ], "itemQty": {}, + "boundItemIds": [ + "6cce475cf54b4d0090df7e6df40170aa" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:21:55.144Z", + "createdAt": "2023-09-06T13:02:59.514Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Foregrip Tactical", - "itemId": "1d950bf7fc5d47c5875a107f9afe61a3", + "title": "Premium Mask - Preorder PlayStation", + "itemId": "66714e9cf5bc4130bd1e23a4b012073d", "baseAppId": "", - "sku": "pd3_mod_r880_foregrip_tactical", + "sku": "pd3_playstation_cosmetic_mask_premium_preorder", "namespace": "pd3", - "name": "MOD R880 Foregrip Tactical", + "name": "Premium Mask - Preorder PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Foregrip", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:24:53.766Z" + "purchaseAt": "2023-09-06T13:02:06.762Z", + "discountPurchaseAt": "2023-09-06T13:02:06.762Z" } ], "itemQty": {}, + "boundItemIds": [ + "ec4e47fbeb9243a0b965f447ec6e10d5" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:24:53.494Z", + "createdAt": "2023-09-06T13:02:06.052Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Stock CQC", - "itemId": "f4af3abf5e454a5da466cff524594731", + "title": "Premium Mask - Preorder Steam", + "itemId": "075eebd2242b4684b447cf3678a914a9", "baseAppId": "", - "sku": "pd3_mod_r880_stock_cqc", + "sku": "pd3_steam_cosmetic_mask_premium_preorder", "namespace": "pd3", - "name": "MOD R880 Stock CQC", + "name": "Premium Mask - Preorder Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:14:02.919Z", - "discountPurchaseAt": "2022-11-17T13:14:02.919Z" + "purchaseAt": "2023-09-06T13:00:07.816Z", + "discountPurchaseAt": "2023-09-06T13:00:07.816Z" } ], "itemQty": {}, + "boundItemIds": [ + "e29db70296e14583a91a9126d363d780" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 0, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:14:04.622Z", + "createdAt": "2023-09-06T13:00:07.087Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Stock Fortified", - "itemId": "738cc288c5834c0fb9071d5795028f9b", + "title": "Premium Mask - Preorder XBox", + "itemId": "c8cb556b24834c7da9dd6247aa43fecb", "baseAppId": "", - "sku": "pd3_mod_r880_stock_fortified", + "sku": "pd3_xbox_cosmetic_mask_premium_preorder", "namespace": "pd3", - "name": "MOD R880 Stock Fortified", + "name": "Premium Mask - Preorder XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:15:18.763Z" + "purchaseAt": "2023-09-07T16:36:46.883Z", + "discountPurchaseAt": "2023-09-07T16:36:46.883Z" } ], "itemQty": {}, + "boundItemIds": [ + "6f46ee17db244f36bc6cc977609d8274" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:15:20.461Z", + "createdAt": "2023-09-07T16:36:45.618Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R880 Stock Padded", - "itemId": "fad166c667994e839bde6ef49e0bc9c8", + "title": "Premium Mask - Silver Edition", + "itemId": "668da63985ca46d381195bdb827ba1aa", "baseAppId": "", - "sku": "pd3_mod_r880_stock_padded", + "sku": "pd3_cosmetic_mask_premium_silveredition", "namespace": "pd3", - "name": "MOD R880 Stock Padded", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Premium Mask - Silver Edition", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:12:58.403Z" + "purchaseAt": "2023-05-31T11:35:42.046Z", + "discountPurchaseAt": "2023-05-31T11:35:42.046Z" } ], "itemQty": {}, + "boundItemIds": [ + "37b4dc234ae4491e8b22230a743b31b6", + "abe79bb12dc34deb948a1c04b6637821" + ], "tags": [ - "WeaponPart" + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:13:00.106Z", + "createdAt": "2023-05-31T11:35:41.548Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R900S Barrel CQC", - "itemId": "923044a89fa94c089eac3798d5508de8", + "title": "Premium Mask - Silver Edition Epic", + "itemId": "33463ee41d3c4805b475d6ea841c094a", "baseAppId": "", - "sku": "pd3_mod_r900s_barrel_cqc", + "sku": "pd3_epic_cosmetic_mask_premium_silveredition", "namespace": "pd3", - "name": "MOD R900S Barrel CQC", + "name": "Premium Mask - Silver Edition Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:10:36.941Z" + "purchaseAt": "2023-09-06T13:25:25.236Z", + "discountPurchaseAt": "2023-09-06T13:25:25.236Z" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:10:36.683Z", + "createdAt": "2023-09-06T13:25:24.476Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R900S Barrel Ranged", - "itemId": "fe71976f34494d5f8e1e4cdabc1526fb", + "title": "Premium Mask - Silver Edition PlayStation", + "itemId": "cb21551e8a4d4380b18ff2a13ade292c", "baseAppId": "", - "sku": "pd3_mod_r900s_barrel_ranged", + "sku": "pd3_playstation_cosmetic_mask_premium_silveredition", "namespace": "pd3", - "name": "MOD R900S Barrel Ranged", + "name": "Premium Mask - Silver Edition PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:12:09.813Z" + "purchaseAt": "2023-09-06T13:24:28.508Z", + "discountPurchaseAt": "2023-09-06T13:24:28.508Z" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:12:09.554Z", + "createdAt": "2023-09-06T13:24:27.744Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R900S Mag Extended", - "itemId": "8a1bdac3496240d0a667cf81712d48eb", + "title": "Premium Mask - Silver Edition Steam", + "itemId": "652b7f3783f04f2f8ce8593f718eb7ce", "baseAppId": "", - "sku": "pd3_mod_r900s_mag_extended", + "sku": "pd3_steam_cosmetic_mask_premium_silveredition", "namespace": "pd3", - "name": "MOD R900S Mag Extended", + "name": "Premium Mask - Silver Edition Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:12:26.657Z" + "purchaseAt": "2023-09-06T13:22:43.627Z", + "discountPurchaseAt": "2023-09-06T13:22:43.627Z" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:12:26.159Z", + "createdAt": "2023-09-06T13:22:42.876Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R900S Stock Hardwood", - "itemId": "aa855287a9ea43d7a38d43134fcda2b3", + "title": "Premium Mask - Silver Edition XBox", + "itemId": "da3312f650154587bb5aa8a69a14d02e", "baseAppId": "", - "sku": "pd3_mod_r900s_stock_hardwood", + "sku": "pd3_xbox_cosmetic_mask_premium_silveredition", "namespace": "pd3", - "name": "MOD R900S Stock Hardwood", + "name": "Premium Mask - Silver Edition XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:23:40.478Z" + "purchaseAt": "2023-09-06T13:23:33.173Z", + "discountPurchaseAt": "2023-09-06T13:23:33.173Z" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:23:42.153Z", + "createdAt": "2023-09-06T13:23:32.408Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD R900S Stock Lightweight", - "itemId": "77f76d4cd24a4ecfb6f4605fae9707da", + "title": "Premium Mask 6", + "itemId": "a63f82fbd96f488a970d5ab3b7b33356", "baseAppId": "", - "sku": "pd3_mod_r900s_stock_lightweight", + "sku": "pd3_cosmetic_mask_premium6", "namespace": "pd3", - "name": "MOD R900S Stock Lightweight", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Premium Mask 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 400, "discountPercentage": 0, - "discountAmount": 0, - "discountedPrice": 10000, - "currencyCode": "CASH", + "discountAmount": 300, + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:24:43.621Z", - "discountPurchaseAt": "2022-11-17T13:24:43.621Z" + "purchaseAt": "2023-02-07T12:38:24.981Z", + "discountPurchaseAt": "2023-02-07T12:38:24.981Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "InfamyLevel1" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:24:45.290Z", + "createdAt": "2023-02-07T12:38:24.93Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 BarrelExt None", - "itemId": "f554e3e84adf4730a9d9fefcfc32dfab", + "title": "Premium Mask 7", + "itemId": "8c874bff3f474a1faaffb5ef8db9a69d", "baseAppId": "", - "sku": "pd3_mod_s40_barrelext_none", + "sku": "pd3_cosmetic_mask_premium7", "namespace": "pd3", - "name": "MOD S40 BarrelExt None", + "name": "Premium Mask 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-24T09:21:57.155Z", - "discountPurchaseAt": "2023-05-24T09:21:57.155Z" + "purchaseAt": "2023-02-07T12:39:19.237Z", + "discountPurchaseAt": "2023-02-07T12:39:19.237Z" } ], "itemQty": {}, + "boundItemIds": [ + "5f0e2f433fe44a6ca51445bbd4d670f7" + ], "tags": [ - "WeaponPart" + "Premium", + "RarityLegendary" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-24T09:21:57.145Z", + "createdAt": "2023-02-07T12:39:19.2Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 Grip Embossed", - "itemId": "8a5e321490734b25b1a5f9593e54d17f", + "title": "Premium Mask 8", + "itemId": "3b53e8385afd42e8a7c3cce640da51bb", "baseAppId": "", - "sku": "pd3_mod_s40_grip_embossed", + "sku": "pd3_cosmetic_mask_premium8", "namespace": "pd3", - "name": "MOD S40 Grip Embossed", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Premium Mask 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 400, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 400, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:31:53.265Z" + "purchaseAt": "2023-02-07T12:40:04.284Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "MaskOfTheWeekCategory", + "CharacterVendor", + "Premium", + "RarityLegendary", + "InfamyLevel1" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:31:55.385Z", + "createdAt": "2023-02-07T12:40:04.227Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 Grip Hardwood", - "itemId": "e88d8b17a3df4a8992543c5e9ad3d9de", + "title": "Premium Mask 9", + "itemId": "737a2739479c49f184b5a1c6c1c6f4c1", "baseAppId": "", - "sku": "pd3_mod_s40_grip_hardwood", + "sku": "pd3_cosmetic_mask_premium9", "namespace": "pd3", - "name": "MOD S40 Grip Hardwood", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Premium Mask 9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, - "currencyCode": "CASH", + "discountedPrice": 500, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:28:17.864Z", - "discountPurchaseAt": "2022-11-17T10:28:17.864Z" + "purchaseAt": "2023-02-07T12:41:48.427Z", + "discountPurchaseAt": "2023-02-07T12:41:48.427Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityEpic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:28:20.360Z", + "createdAt": "2023-02-07T12:41:48.386Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 Grip Tac", - "itemId": "91f375f1dd134360bf69fa69694e55fc", + "title": "Premium Mask Alienware", + "itemId": "8daf779041254f25982fe7435b47e581", "baseAppId": "", - "sku": "pd3_mod_s40_grip_tac", + "sku": "pd3_cosmetic_dlc_01_premiummask_01", "namespace": "pd3", - "name": "MOD S40 Grip Tac", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Premium Mask Alienware", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:30:07.219Z" + "purchaseAt": "2023-11-13T21:46:39.249Z", + "discountPurchaseAt": "2023-11-13T21:46:39.249Z" } ], "itemQty": {}, - "tags": [ - "WeaponPart" - ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:30:09.348Z", + "createdAt": "2023-11-13T21:46:36.646Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 Mag Extended", - "itemId": "987523aaa67d40d29d72889d537c740b", + "title": "Premium PlayStation Mask 7", + "itemId": "ef8117da082c4c7691b27ed9ebb1a223", "baseAppId": "", - "sku": "pd3_mod_s40_mag_extended", + "sku": "pd3_playstation_cosmetic_mask_premium7", "namespace": "pd3", - "name": "MOD S40 Mag Extended", + "name": "Premium PlayStation Mask 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:22:11.782Z" + "purchaseAt": "2023-10-24T11:52:53.32Z", + "discountPurchaseAt": "2023-10-24T11:52:53.32Z" } ], "itemQty": {}, + "boundItemIds": [ + "3c49d557e1b0440fa75e11bcede06d94" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:22:11.279Z", + "createdAt": "2023-10-24T11:52:52.548Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S40 Mag Quick", - "itemId": "6054cbf2abf340878b3432251cd5e517", + "title": "Premium Steam Mask 7", + "itemId": "6221840f6dc94ac18ca54e4a2962a4b3", "baseAppId": "", - "sku": "pd3_mod_s40_mag_quick", + "sku": "pd3_steam_cosmetic_mask_premium7", "namespace": "pd3", - "name": "MOD S40 Mag Quick", + "name": "Premium Steam Mask 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:23:44.664Z" + "purchaseAt": "2023-09-03T11:42:33.2Z", + "discountPurchaseAt": "2023-09-03T11:42:33.2Z" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:23:44.156Z", + "createdAt": "2023-09-05T18:29:15.592Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S403 Grip Friction", - "itemId": "43a93c295bca4a808bff8f3fe0fdf860", + "title": "Premium Suit - Preorder", + "itemId": "175b6b75241e42e4b023c4d4b1950e99", "baseAppId": "", - "sku": "pd3_mod_s403_grip_friction", + "sku": "pd3_cosmetic_suit_premiumsuit_preorder", "namespace": "pd3", - "name": "MOD S403 Grip Friction", + "name": "Premium Suit - Preorder", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:14:12.542Z", - "discountPurchaseAt": "2022-11-17T10:14:12.542Z" + "purchaseAt": "2023-03-17T15:37:17.674Z", + "discountPurchaseAt": "2023-03-17T15:37:17.674Z" } ], "itemQty": {}, + "boundItemIds": [ + "ce54b97b24184553ae56f1ffc3d54363" + ], "tags": [ - "WeaponPart" + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:14:14.717Z", + "createdAt": "2023-03-17T15:37:17.59Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S403 Grip Grained", - "itemId": "10d190443d55410897b53aca4b03f19f", + "title": "Premium Suit - Preorder - Steam", + "itemId": "dea43e9c1ef842c781cce84de3792004", "baseAppId": "", - "sku": "pd3_mod_s403_grip_grained", + "sku": "pd3_steam_cosmetic_suit_premiumsuit_preorder", "namespace": "pd3", - "name": "MOD S403 Grip Grained", + "name": "Premium Suit - Preorder - Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:20:26.353Z" + "purchaseAt": "2023-09-06T12:55:34.624Z", + "discountPurchaseAt": "2023-09-06T12:55:34.624Z" } ], "itemQty": {}, + "boundItemIds": [ + "e29db70296e14583a91a9126d363d780" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 0, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:20:28.508Z", + "createdAt": "2023-09-06T12:55:33.944Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S403 Grip Ribbed", - "itemId": "90a3b77758ff459892bf7f2b2d201340", + "title": "Premium Suit - Preorder Epic", + "itemId": "e13829fbefee483593cae042dd9dc456", "baseAppId": "", - "sku": "pd3_mod_s403_grip_ribbed", + "sku": "pd3_epic_cosmetic_suit_premiumsuit_preorder", "namespace": "pd3", - "name": "MOD S403 Grip Ribbed", + "name": "Premium Suit - Preorder Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:17:39.430Z" + "purchaseAt": "2023-09-06T12:58:52.131Z", + "discountPurchaseAt": "2023-09-06T12:58:52.131Z" } ], "itemQty": {}, + "boundItemIds": [ + "6cce475cf54b4d0090df7e6df40170aa" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:17:41.590Z", + "createdAt": "2023-09-06T12:58:51.457Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S403 Mag Extended", - "itemId": "9cd0b55ae18944718b3bd91a55d5bc33", + "title": "Premium Suit - Preorder PlayStation", + "itemId": "8816cc16a74740f3aff7819ee37e1751", "baseAppId": "", - "sku": "pd3_mod_s403_mag_extended", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit_preorder", "namespace": "pd3", - "name": "MOD S403 Mag Extended", + "name": "Premium Suit - Preorder PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:19:15.851Z" + "purchaseAt": "2023-09-06T12:58:01.478Z", + "discountPurchaseAt": "2023-09-06T12:58:01.478Z" } ], "itemQty": {}, + "boundItemIds": [ + "ec4e47fbeb9243a0b965f447ec6e10d5" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:19:15.349Z", + "createdAt": "2023-09-06T12:58:00.774Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD S403 Mag Quick", - "itemId": "d4b7e543dd66411eb7467a7dcd0abac9", + "title": "Premium Suit - Preorder XBox", + "itemId": "b968640f272e4858aac2a2363445fa94", "baseAppId": "", - "sku": "pd3_mod_s403_mag_quick", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit_preorder", "namespace": "pd3", - "name": "MOD S403 Mag Quick", + "name": "Premium Suit - Preorder XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:20:46.026Z" + "purchaseAt": "2023-09-06T12:56:42.41Z", + "discountPurchaseAt": "2023-09-06T12:56:42.41Z" } ], "itemQty": {}, + "boundItemIds": [ + "6f46ee17db244f36bc6cc977609d8274" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:20:45.523Z", + "createdAt": "2023-09-06T12:56:41.702Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD SPM11 Grip Checkered", - "itemId": "71136965394340c5805d3df89b1603dd", + "title": "Premium Suit 1 Epic", + "itemId": "f5f27d528eb14a559c3d1798ba7fc357", "baseAppId": "", - "sku": "pd3_mod_spm11_grip_checkered", + "sku": "pd3_epic_cosmetic_suit_premiumsuit1", "namespace": "pd3", - "name": "MOD SPM11 Grip Checkered", + "name": "Premium Suit 1 Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:44:29.931Z" + "purchaseAt": "2024-06-10T09:29:17.77Z", + "discountPurchaseAt": "2024-06-10T09:29:17.77Z" } ], "itemQty": {}, + "boundItemIds": [ + "94f8c32e97e64d32b71800bb33701e76" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:44:31.861Z", + "createdAt": "2024-06-10T09:29:17.642Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD SPM11 Grip Embossed", - "itemId": "4512104c55ef41069e642a6f0ce41a69", + "title": "Premium Suit 1 PlayStation", + "itemId": "3a7d54f5991a449ca4043316a8d309ba", "baseAppId": "", - "sku": "pd3_mod_spm11_grip_embossed", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit1", "namespace": "pd3", - "name": "MOD SPM11 Grip Embossed", + "name": "Premium Suit 1 PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:48:03.709Z" + "purchaseAt": "2024-06-10T09:27:44.812Z", + "discountPurchaseAt": "2024-06-10T09:27:44.812Z" } ], "itemQty": {}, + "boundItemIds": [ + "9d61f4b53c784983b6890f051eade065" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:48:05.637Z", + "createdAt": "2024-06-10T09:27:44.693Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD SPM11 Grip Tac", - "itemId": "a3d65ce56172464caf9b415aae168f43", + "title": "Premium Suit 1 Steam", + "itemId": "b094b5c69b45493d96f0ae24ffe8a680", "baseAppId": "", - "sku": "pd3_mod_spm11_grip_tac", + "sku": "pd3_steam_cosmetic_suit_premiumsuit1", "namespace": "pd3", - "name": "MOD SPM11 Grip Tac", + "name": "Premium Suit 1 Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T11:45:55.351Z", - "discountPurchaseAt": "2022-11-17T11:45:55.351Z" + "purchaseAt": "2024-06-10T09:28:33.583Z", + "discountPurchaseAt": "2024-06-10T09:28:33.583Z" } ], "itemQty": {}, + "boundItemIds": [ + "eedabc2792254e6ba20bb898727aa091" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T11:45:57.271Z", + "createdAt": "2024-06-10T09:28:33.457Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD SPM11 Mag Extended", - "itemId": "24d082ae4bdb4faaa75d36ad83b7f6e1", + "title": "Premium Suit 1 XBox", + "itemId": "5c5f854d90ce4b3f863bfacfd6f377c9", "baseAppId": "", - "sku": "pd3_mod_spm11_mag_extended", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit1", "namespace": "pd3", - "name": "MOD SPM11 Mag Extended", + "name": "Premium Suit 1 XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:25:24.547Z" + "purchaseAt": "2024-06-10T09:26:50.665Z", + "discountPurchaseAt": "2024-06-10T09:26:50.665Z" } ], "itemQty": {}, + "boundItemIds": [ + "74f3d0d0708344e199217cdf53fdc5ec" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:25:24.036Z", + "createdAt": "2024-06-10T09:26:50.572Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD SPM11 Mag Quick", - "itemId": "2a270ba6bd81430da064885c7b83a198", + "title": "Premium Suit 2 Epic", + "itemId": "3580ad073a8543618649cff9879c1523", "baseAppId": "", - "sku": "pd3_mod_spm11_mag_quick", + "sku": "pd3_epic_cosmetic_suit_premiumsuit2", "namespace": "pd3", - "name": "MOD SPM11 Mag Quick", + "name": "Premium Suit 2 Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:26:50.478Z" + "purchaseAt": "2024-06-10T09:32:05.759Z", + "discountPurchaseAt": "2024-06-10T09:32:05.759Z" } ], "itemQty": {}, + "boundItemIds": [ + "94f8c32e97e64d32b71800bb33701e76" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:26:49.968Z", + "createdAt": "2024-06-10T09:32:05.62Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Box", - "itemId": "0d2947f95b7d4e5991aefbf14051c905", + "title": "Premium Suit 2 PlayStation", + "itemId": "119b1119c7c94f038fbc8cfe44ae48a1", "baseAppId": "", - "sku": "pd3_mod_sight_box", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit2", "namespace": "pd3", - "name": "MOD Sight Box", + "name": "Premium Suit 2 PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:00:55.566Z" + "purchaseAt": "2024-06-10T09:30:43.1Z", + "discountPurchaseAt": "2024-06-10T09:30:43.1Z" } ], "itemQty": {}, + "boundItemIds": [ + "9d61f4b53c784983b6890f051eade065" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:00:50.671Z", + "createdAt": "2024-06-10T09:30:42.966Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Box High", - "itemId": "a7ef35fe9b5b405996d1544856e8bed9", + "title": "Premium Suit 2 Steam", + "itemId": "527d86c04d1d4bc6b0b74ecf51634419", "baseAppId": "", - "sku": "pd3_mod_sight_box_high", + "sku": "pd3_steam_cosmetic_suit_premiumsuit2", "namespace": "pd3", - "name": "MOD Sight Box High", + "name": "Premium Suit 2 Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:40:27.898Z" + "purchaseAt": "2024-06-10T09:31:18.791Z", + "discountPurchaseAt": "2024-06-10T09:31:18.791Z" } ], "itemQty": {}, + "boundItemIds": [ + "eedabc2792254e6ba20bb898727aa091" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:40:27.737Z", + "createdAt": "2024-06-10T09:31:18.655Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Box Low", - "itemId": "ad879f1420f345d08257a3c041cb49d4", + "title": "Premium Suit 2 XBox", + "itemId": "dd23570f18944d2b95304ad6dd2bbeab", "baseAppId": "", - "sku": "pd3_mod_sight_box_low", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit2", "namespace": "pd3", - "name": "MOD Sight Box Low", + "name": "Premium Suit 2 XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:43:05.203Z" + "purchaseAt": "2024-06-10T09:29:58.136Z", + "discountPurchaseAt": "2024-06-10T09:29:58.136Z" } ], "itemQty": {}, + "boundItemIds": [ + "74f3d0d0708344e199217cdf53fdc5ec" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:43:05.096Z", + "createdAt": "2024-06-10T09:29:58.003Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight ClassicRDS", - "itemId": "5e51babbb8ce49ad81bfff907c110f55", + "title": "Premium Suit 3 Epic", + "itemId": "0827cdc5c4024fcaa0bed41086b03b35", "baseAppId": "", - "sku": "pd3_mod_sight_classicrds", + "sku": "pd3_epic_cosmetic_suit_premiumsuit3", "namespace": "pd3", - "name": "MOD Sight ClassicRDS", + "name": "Premium Suit 3 Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:03:29.394Z" + "purchaseAt": "2024-06-10T09:45:06.763Z", + "discountPurchaseAt": "2024-06-10T09:45:06.763Z" } ], "itemQty": {}, + "boundItemIds": [ + "2c13ac19cf2c4288a2f3add6933f0482" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:03:24.493Z", + "createdAt": "2024-06-10T09:45:06.586Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight ClassicRDS High", - "itemId": "c33eff3c90994bdd8e86599f6fbf6307", + "title": "Premium Suit 3 PlayStation", + "itemId": "bb74f8ffdfde4c0fbd90ede7ab1af56b", "baseAppId": "", - "sku": "pd3_mod_sight_classicrds_high", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit3", "namespace": "pd3", - "name": "MOD Sight ClassicRDS High", + "name": "Premium Suit 3 PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:40:58.495Z" + "purchaseAt": "2024-06-10T09:43:23.849Z", + "discountPurchaseAt": "2024-06-10T09:43:23.849Z" } ], "itemQty": {}, + "boundItemIds": [ + "96d5342e48bd4b86b8f901d4ef08ebb1" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:40:58.331Z", + "createdAt": "2024-06-10T09:43:23.675Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight ClassicRDS Low", - "itemId": "b025e241c9d34074aae0d32c5594aba3", + "title": "Premium Suit 3 Steam", + "itemId": "f5da11e73a134035bf42572ab6419e82", "baseAppId": "", - "sku": "pd3_mod_sight_classicrds_low", + "sku": "pd3_steam_cosmetic_suit_premiumsuit3", "namespace": "pd3", - "name": "MOD Sight ClassicRDS Low", + "name": "Premium Suit 3 Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:43:40.059Z" + "purchaseAt": "2024-06-10T09:44:09.213Z", + "discountPurchaseAt": "2024-06-10T09:44:09.213Z" } ], "itemQty": {}, + "boundItemIds": [ + "b34a1d608aec4cfd82850ba09f57278f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:43:39.951Z", + "createdAt": "2024-06-10T09:44:09.035Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Compact", - "itemId": "3ff0044abaa74bd0b4bf3362fbce6960", + "title": "Premium Suit 3 XBox", + "itemId": "68d1a12712964919b786bf5cee81a449", "baseAppId": "", - "sku": "pd3_mod_sight_compact", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit3", "namespace": "pd3", - "name": "MOD Sight Compact", + "name": "Premium Suit 3 XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:07:10.091Z" + "purchaseAt": "2024-06-10T09:42:01.44Z", + "discountPurchaseAt": "2024-06-10T09:42:01.44Z" } ], "itemQty": {}, + "boundItemIds": [ + "32a04d6b2fa247b5b15e36bc6a44c919" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:07:05.188Z", + "createdAt": "2024-06-10T09:42:01.272Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Compact High", - "itemId": "59ab9232b5f6415b8f4b8e622d79946a", + "title": "Premium Suit 4", + "itemId": "1f2b0b9d08264d1a8106e77c175a0fff", "baseAppId": "", - "sku": "pd3_mod_sight_compact_high", + "sku": "pd3_cosmetic_suit_premiumsuit4", "namespace": "pd3", - "name": "MOD Sight Compact High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "Premium Suit 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:41:26.732Z" + "purchaseAt": "2023-02-07T16:54:35.515Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "Premium", + "RarityLegendary" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:41:26.564Z", + "createdAt": "2023-02-07T16:54:35.44Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Compact Low", - "itemId": "f28ecb199c674143bb1bc43d007d5a27", + "title": "Premium Suit 5 Epic", + "itemId": "76f01b0620174185bb344cb6f2e6bc91", "baseAppId": "", - "sku": "pd3_mod_sight_compact_low", + "sku": "pd3_epic_cosmetic_suit_premiumsuit5", "namespace": "pd3", - "name": "MOD Sight Compact Low", + "name": "Premium Suit 5 Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:44:18.088Z" + "purchaseAt": "2024-06-10T09:37:29.873Z", + "discountPurchaseAt": "2024-06-10T09:37:29.873Z" } ], "itemQty": {}, + "boundItemIds": [ + "eb41a84fe1154a76a219d86f09b3fd12" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:44:17.976Z", + "createdAt": "2024-06-10T09:37:29.715Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Fluted", - "itemId": "c0d5da93707e4dc284be0db3141fa27a", + "title": "Premium Suit 5 PlayStation", + "itemId": "7b848344ac5b4a2f87416052420b9de4", "baseAppId": "", - "sku": "pd3_mod_sight_fluted", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit5", "namespace": "pd3", - "name": "MOD Sight Fluted", + "name": "Premium Suit 5 PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:31:58.565Z" + "purchaseAt": "2024-06-10T09:35:45.847Z", + "discountPurchaseAt": "2024-06-10T09:35:45.847Z" } ], "itemQty": {}, + "boundItemIds": [ + "3b590438276d44d9b0401cba3f928a7f" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:31:53.584Z", + "createdAt": "2024-06-10T09:35:45.694Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Fluted High", - "itemId": "052f8c79d8ff4435bbb86254d835be94", + "title": "Premium Suit 5 Steam", + "itemId": "f54f210fc10e4600b6b4979d160a4c22", "baseAppId": "", - "sku": "pd3_mod_sight_fluted_high", + "sku": "pd3_steam_cosmetic_suit_premiumsuit5", "namespace": "pd3", - "name": "MOD Sight Fluted High", + "name": "Premium Suit 5 Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:45:16.308Z" + "purchaseAt": "2024-06-10T09:36:41.26Z", + "discountPurchaseAt": "2024-06-10T09:36:41.26Z" } ], "itemQty": {}, + "boundItemIds": [ + "c879e1ab01cc4dcf86d034af51d1f7bb" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 0, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:45:16.160Z", + "createdAt": "2024-06-10T09:36:41.107Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Fluted Low", - "itemId": "6c0a81b8856d4b17b80f6fe983fba760", + "title": "Premium Suit 5 XBox", + "itemId": "42f08dd98eed479393a06ff366f659a6", "baseAppId": "", - "sku": "pd3_mod_sight_fluted_low", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit5", "namespace": "pd3", - "name": "MOD Sight Fluted Low", + "name": "Premium Suit 5 XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:49:51.763Z" + "purchaseAt": "2024-06-10T09:35:01.313Z", + "discountPurchaseAt": "2024-06-10T09:35:01.313Z" } ], "itemQty": {}, + "boundItemIds": [ + "c23c46f2de894c458dd2f25dd82f75b9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:49:51.672Z", + "createdAt": "2024-06-10T09:35:01.162Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight LED", - "itemId": "cf7a61c9256347de8125c111b83b9b3b", + "title": "Premium Suit 6 Epic", + "itemId": "973e21ba30ef4e428cfc06d48bc0b46b", "baseAppId": "", - "sku": "pd3_mod_sight_led", + "sku": "pd3_epic_cosmetic_suit_premiumsuit6", "namespace": "pd3", - "name": "MOD Sight LED", + "name": "Premium Suit 6 Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:28:47.217Z" + "purchaseAt": "2024-06-10T09:41:25.569Z", + "discountPurchaseAt": "2024-06-10T09:41:25.569Z" } ], "itemQty": {}, + "boundItemIds": [ + "94f8c32e97e64d32b71800bb33701e76" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:28:42.237Z", + "createdAt": "2024-06-10T09:41:25.403Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight LED High", - "itemId": "73a63d59fac548d09fdd0e7abaae9cf2", + "title": "Premium Suit 6 PlayStation", + "itemId": "2817b1bbd3064979acbeae71aac69da0", "baseAppId": "", - "sku": "pd3_mod_sight_led_high", + "sku": "pd3_playstation_cosmetic_suit_premiumsuit6", "namespace": "pd3", - "name": "MOD Sight LED High", + "name": "Premium Suit 6 PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:44:05.613Z" + "purchaseAt": "2024-06-10T09:39:04.23Z", + "discountPurchaseAt": "2024-06-10T09:39:04.23Z" } ], "itemQty": {}, + "boundItemIds": [ + "9d61f4b53c784983b6890f051eade065" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:44:05.444Z", + "createdAt": "2024-06-10T09:39:04.066Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight LED Low", - "itemId": "3534f7e1c2964ccfb4a89d3acfaa6595", + "title": "Premium Suit 6 Steam", + "itemId": "6d6586d7d50641dc9d0e6c5d5b8cb127", "baseAppId": "", - "sku": "pd3_mod_sight_led_low", + "sku": "pd3_steam_cosmetic_suit_premiumsuit6", "namespace": "pd3", - "name": "MOD Sight LED Low", + "name": "Premium Suit 6 Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:47:45.274Z" + "purchaseAt": "2024-06-10T09:40:21.781Z", + "discountPurchaseAt": "2024-06-10T09:40:21.781Z" } ], "itemQty": {}, + "boundItemIds": [ + "eedabc2792254e6ba20bb898727aa091" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:47:45.171Z", + "createdAt": "2024-06-10T09:40:21.62Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Lined", - "itemId": "bf001b8185de45a0aa7728493c4cfb32", + "title": "Premium Suit 6 XBox", + "itemId": "a6ce4b851ec643de8ecbb66aa3cfdf97", "baseAppId": "", - "sku": "pd3_mod_sight_lined", + "sku": "pd3_xbox_cosmetic_suit_premiumsuit6", "namespace": "pd3", - "name": "MOD Sight Lined", + "name": "Premium Suit 6 XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:56:53.757Z" + "purchaseAt": "2024-06-10T09:38:26.041Z", + "discountPurchaseAt": "2024-06-10T09:38:26.041Z" } ], "itemQty": {}, + "boundItemIds": [ + "74f3d0d0708344e199217cdf53fdc5ec" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:56:48.868Z", + "createdAt": "2024-06-10T09:38:25.882Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Lined High", - "itemId": "77a1f4201658410c84f8f261e87c34ef", + "title": "Premium XBox Mask 7", + "itemId": "0ec654017e2c4b32868bf05f40578872", "baseAppId": "", - "sku": "pd3_mod_sight_lined_high", + "sku": "pd3_xbox_cosmetic_mask_premium7", "namespace": "pd3", - "name": "MOD Sight Lined High", + "name": "Premium XBox Mask 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CRED", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:39:55.323Z" + "purchaseAt": "2023-09-03T11:44:47.636Z", + "discountPurchaseAt": "2023-09-03T11:44:47.636Z" } ], "itemQty": {}, + "boundItemIds": [ + "0863f6d764a249649ef49545e3b9e4bb" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:39:55.157Z", + "createdAt": "2023-09-05T18:31:19.718Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Lined Low", - "itemId": "27adf6d7a7534cc9bbc267622f6c3c6e", + "title": "Preset - PD2 Promo", + "itemId": "22353e0584ef4a2596e4630759a29bf7", "baseAppId": "", - "sku": "pd3_mod_sight_lined_low", + "sku": "pd3_wpn_preset_promo1", "namespace": "pd3", - "name": "MOD Sight Lined Low", + "name": "Preset - PD2 Promo", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", + "images": [ + { + "as": "Old Faithful", + "caption": "Icon_Preset_Weapon_Old_Faithful (1).png", + "height": 400, + "width": 400, + "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/6cb05a564037454ab9c08942abd1e959.png", + "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/b77328c01fe848808edd80e086e72a0e.png" + } + ], "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:42:16.830Z" + "purchaseAt": "2023-01-17T15:29:30.399Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:42:16.720Z", + "createdAt": "2023-01-17T15:29:30.203Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Primed", - "itemId": "f2a3e10a3fb24dcba8f617401e86bce9", + "title": "Preset Epic - PD2 Promo", + "itemId": "583b56c0fa5d46e2bf70eb11c530e793", "baseAppId": "", - "sku": "pd3_mod_sight_primed", + "sku": "pd3_epic_wpn_preset_promo1", "namespace": "pd3", - "name": "MOD Sight Primed", + "name": "Preset Epic - PD2 Promo", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:33:33.709Z" + "purchaseAt": "2023-09-06T07:08:03.957Z", + "discountPurchaseAt": "2023-09-06T07:08:03.957Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:33:28.726Z", + "createdAt": "2023-09-06T07:08:00.033Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Primed High", - "itemId": "399853e97a6c4906892822f370d5809a", + "title": "Preset PlayStation - PD2 Promo", + "itemId": "493a6cedfdc845e69580d4b9171c7762", "baseAppId": "", - "sku": "pd3_mod_sight_primed_high", + "sku": "pd3_playstation_wpn_preset_promo1", "namespace": "pd3", - "name": "MOD Sight Primed High", + "name": "Preset PlayStation - PD2 Promo", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:45:50.411Z" + "purchaseAt": "2023-09-06T07:07:05.193Z", + "discountPurchaseAt": "2023-09-06T07:07:05.193Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:45:50.256Z", + "createdAt": "2023-09-06T07:07:01.296Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Primed Low", - "itemId": "0e8db2d89c944e989ecab104529382ee", + "title": "Preset XBox - PD2 Promo", + "itemId": "c1c4677343e4440cae3f8d5fb8578528", "baseAppId": "", - "sku": "pd3_mod_sight_primed_low", + "sku": "pd3_xbox_wpn_preset_promo1", "namespace": "pd3", - "name": "MOD Sight Primed Low", + "name": "Preset XBox - PD2 Promo", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:50:25.015Z" + "purchaseAt": "2023-09-06T06:53:11.526Z", + "discountPurchaseAt": "2023-09-06T06:53:11.526Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PlatformOnly", + "Premium", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:50:24.898Z", + "createdAt": "2023-09-06T06:53:07.654Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Projection", - "itemId": "ab63137ca6f746248514e87cfc6b238e", + "title": "Primary Weapon Slot - Initial", + "itemId": "f9a13e6c2a0f4e6d9251347bc63634c7", "baseAppId": "", - "sku": "pd3_mod_sight_projection", + "sku": "pd3_slot_primary_initial", "namespace": "pd3", - "name": "MOD Sight Projection", + "name": "Primary Weapon Inventory Slot", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -15067,905 +40516,998 @@ "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:09:09.814Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "WeaponPart" + "boundItemIds": [ + "f3e42193cfb74a7b8afaaf57a578369f", + "5098b2b4214b4306967e7777953f99d6", + "eb41a84fe1154a76a219d86f09b3fd12", + "2c13ac19cf2c4288a2f3add6933f0482", + "1925e9106026489ea86a223e5f5c3cb2", + "eedabc2792254e6ba20bb898727aa091", + "4bd7858dedf74532abc83f987470e4ab", + "b34a1d608aec4cfd82850ba09f57278f", + "88e8728f2a814997ba5a4ce7521bde4f", + "c879e1ab01cc4dcf86d034af51d1f7bb", + "d5661cf5254742c592716765ededa87a", + "e57f46b630984a34a68405225db0e490", + "b4876983c73544a19ad2e481f7eb8b76", + "a5be4db055714c7ab722cf09f6f05c34", + "16eb187877eb4b7da217b0d5698a8aa9", + "37fc20ad8805435f86e90ae5f292502d", + "f31457f805b946e49c5ec6f87f688620", + "0bc8fb3cb4e7451a839f6cc5597db9e3", + "9d61f4b53c784983b6890f051eade065", + "82e5cb4b9aa44e82ae5bb6b9875f0338", + "f63276f952494e2cb512eccef21a2778", + "1cdb0fddde344c0ea9ae09ee408e66d7", + "94f8c32e97e64d32b71800bb33701e76", + "44d935b4c568443a8bf7783f15f38711", + "48e8fc422be24c1a83901db780fe4975", + "0689084274d64988b5b996b0ac501afb", + "e2af9884246b442d9a363259322b0598", + "90f80be8a8c84af9a11826eed79d6cdf", + "47ed89c6d7fa496095c0adc4f3a9394c", + "32a04d6b2fa247b5b15e36bc6a44c919", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "74f3d0d0708344e199217cdf53fdc5ec", + "34a0e12b450e4450bf0a54de1768efcb", + "cbf38295d2f14bada785ddfa905f2850", + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "775cbf5cec0b4190961bc70422aedd75", + "818ed3848f7b4ff9a58816e8417f4916", + "49981ef260c34b028104e721284053d4", + "7615a6e20b364dfa9b912ebc164880a5", + "028dfa799af94f1bb98ea17645064b11", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "3b590438276d44d9b0401cba3f928a7f", + "96d5342e48bd4b86b8f901d4ef08ebb1", + "77329c646c3348db8f33c9ba24e3d23c", + "926f52f52f0c4103aab2086175b947fa", + "bf7d8931e33f4411bba1dfbf03ce4561", + "c23c46f2de894c458dd2f25dd82f75b9", + "f4b6caf6b4bb440c9c8abe896750bf94", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "ReportsTelemetry", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:09:04.908Z", + "createdAt": "2021-10-01T13:52:34.536Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Projection High", - "itemId": "cdf590c1c0a9424db13267bea2bb64e7", + "title": "Primary Weapon Inventory Slot: Price Progression 0", + "itemId": "ebecec576147407fba1ca1df8362b6f9", "baseAppId": "", - "sku": "pd3_mod_sight_projection_high", + "sku": "pd3_slot_primary0", "namespace": "pd3", - "name": "MOD Sight Projection High", + "name": "Primary Weapon Inventory Slot: Price Progression 0", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:41:57.242Z" + "purchaseAt": "2023-01-02T12:37:22.842Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression0", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:41:57.089Z", + "createdAt": "2023-01-02T12:37:22.691Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Projection Low", - "itemId": "17dfda2e5cb6428090eec1ab7e578a46", + "title": "Primary Weapon Inventory Slot: Price Progression 1", + "itemId": "013c2de7a2c948c2aa332f385ab42574", "baseAppId": "", - "sku": "pd3_mod_sight_projection_low", + "sku": "pd3_slot_primary1", "namespace": "pd3", - "name": "MOD Sight Projection Low", + "name": "Primary Weapon Inventory Slot: Price Progression 1", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:44:58.037Z" + "purchaseAt": "2023-01-02T12:55:03.04Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression1", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:44:57.927Z", + "createdAt": "2023-01-02T12:55:02.871Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Sheath", - "itemId": "badc254025e74277b80f934b774ef6c0", + "title": "Primary Weapon Inventory Slot: Price Progression 10", + "itemId": "e739a48113a4472c85b24fd3831bd608", "baseAppId": "", - "sku": "pd3_mod_sight_sheath", + "sku": "pd3_slot_primary10", "namespace": "pd3", - "name": "MOD Sight Sheath", + "name": "Primary Weapon Inventory Slot: Price Progression 10", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:15:07.880Z" + "purchaseAt": "2023-01-02T13:19:32.838Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PriceProgression10", + "CombatEquipmentVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:15:02.973Z", + "createdAt": "2023-01-02T13:19:32.616Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Sheath High", - "itemId": "b8924f9a29494c20b949554d8cfb5ef3", + "title": "Primary Weapon Inventory Slot: Price Progression 2", + "itemId": "1d2bced5ad1342ffbb62c7fae55deaec", "baseAppId": "", - "sku": "pd3_mod_sight_sheath_high", + "sku": "pd3_slot_primary2", "namespace": "pd3", - "name": "MOD Sight Sheath High", + "name": "Primary Weapon Inventory Slot: Price Progression 2", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:43:02.491Z" + "purchaseAt": "2023-01-02T13:02:20.28Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression2", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:43:02.326Z", + "createdAt": "2023-01-02T13:02:20.08Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Sheath Low", - "itemId": "4597877296594c149de4c47e9311dde4", + "title": "Primary Weapon Inventory Slot: Price Progression 3", + "itemId": "340d5894c6154924996fcf37924f64b2", "baseAppId": "", - "sku": "pd3_mod_sight_sheath_low", + "sku": "pd3_slot_primary3", "namespace": "pd3", - "name": "MOD Sight Sheath Low", + "name": "Primary Weapon Inventory Slot: Price Progression 3", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:46:23.970Z" + "purchaseAt": "2023-01-02T13:04:01.431Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression3", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:46:23.864Z", + "createdAt": "2023-01-02T13:04:01.261Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Slate", - "itemId": "56eefa68d141439d81ab045d33950a8d", + "title": "Primary Weapon Inventory Slot: Price Progression 4", + "itemId": "c70086391f36430787185081d95d093d", "baseAppId": "", - "sku": "pd3_mod_sight_slate", + "sku": "pd3_slot_primary4", "namespace": "pd3", - "name": "MOD Sight Slate", + "name": "Primary Weapon Inventory Slot: Price Progression 4", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:27:06.691Z" + "purchaseAt": "2023-01-02T13:05:23.919Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression4", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:27:01.722Z", + "createdAt": "2023-01-02T13:05:23.709Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Slate High", - "itemId": "0ff45793d8a94ad2bfe0c5821f9979e7", + "title": "Primary Weapon Inventory Slot: Price Progression 5", + "itemId": "81676bf089924771895867b64203d362", "baseAppId": "", - "sku": "pd3_mod_sight_slate_high", + "sku": "pd3_slot_primary5", "namespace": "pd3", - "name": "MOD Sight Slate High", + "name": "Primary Weapon Inventory Slot: Price Progression 5", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 250000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:43:30.023Z" + "purchaseAt": "2023-01-02T13:06:45.319Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression5", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:43:29.857Z", + "createdAt": "2023-01-02T13:06:45.104Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Slate Low", - "itemId": "06c1c6a68d054134b601309a3d04c2d8", + "title": "Primary Weapon Inventory Slot: Price Progression 6", + "itemId": "eb4f6bf2fd4f48858b6fae3750d54484", "baseAppId": "", - "sku": "pd3_mod_sight_slate_low", + "sku": "pd3_slot_primary6", "namespace": "pd3", - "name": "MOD Sight Slate Low", + "name": "Primary Weapon Inventory Slot: Price Progression 6", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:47:05.655Z" + "purchaseAt": "2023-01-02T13:08:20.374Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression6", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:47:05.553Z", + "createdAt": "2023-01-02T13:08:20.164Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tactical", - "itemId": "9bfefaca0c1743ef89a78a7ac88d348f", + "title": "Primary Weapon Inventory Slot: Price Progression 7", + "itemId": "67d258622b54420caa82a52e2648eb7e", "baseAppId": "", - "sku": "pd3_mod_sight_tactical", + "sku": "pd3_slot_primary7", "namespace": "pd3", - "name": "MOD Sight Tactical", + "name": "Primary Weapon Inventory Slot: Price Progression 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T15:11:59.274Z" + "purchaseAt": "2023-01-02T13:12:33.046Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression7", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T15:11:54.365Z", + "createdAt": "2023-01-02T13:12:32.833Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tactical High", - "itemId": "14eca2b3ab394385a73f88e40d886b6e", + "title": "Primary Weapon Inventory Slot: Price Progression 8", + "itemId": "de00c1f200444a8ab478532576d282d2", "baseAppId": "", - "sku": "pd3_mod_sight_tactical_high", + "sku": "pd3_slot_primary8", "namespace": "pd3", - "name": "MOD Sight Tactical High", + "name": "Primary Weapon Inventory Slot: Price Progression 8", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 500000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:42:26.120Z" + "purchaseAt": "2023-01-02T13:14:55.942Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression8", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:42:25.958Z", + "createdAt": "2023-01-02T13:14:55.751Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tactical Low", - "itemId": "036a4b59de8d4bd3bac143c3a4b99591", + "title": "Primary Weapon Inventory Slot: Price Progression 9", + "itemId": "a1d81e0423f54d298c8d61019daa095b", "baseAppId": "", - "sku": "pd3_mod_sight_tactical_low", + "sku": "pd3_slot_primary9", "namespace": "pd3", - "name": "MOD Sight Tactical Low", + "name": "Primary Weapon Inventory Slot: Price Progression 9", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:45:29.740Z" + "purchaseAt": "2023-01-02T13:18:14.254Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression9", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:45:29.643Z", + "createdAt": "2023-01-02T13:18:14.042Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tagged", - "itemId": "0331a8e132ac49bc8b7d6cacaf3372bd", + "title": "RC Signal Armored Transport Preplanning asset", + "itemId": "86104f11f3534828b6112f28717c5308", "baseAppId": "", - "sku": "pd3_mod_sight_tagged", + "sku": "pd3_preplanning_armoredtransport_2", "namespace": "pd3", - "name": "MOD Sight Tagged", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "RC Signal Armored Transport Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T16:30:06.580Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T16:30:01.599Z", + "createdAt": "2022-10-19T13:19:54.852Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tagged High", - "itemId": "75e6ac8134664592ab8f7214dd777f30", + "title": "Revolver Bison", + "itemId": "2d9994e5e158443cba18595f556a80e6", "baseAppId": "", - "sku": "pd3_mod_sight_tagged_high", + "sku": "pd3_wpn_revolver_bison", "namespace": "pd3", - "name": "MOD Sight Tagged High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "Revolver Bison", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 250000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:44:37.149Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "InfamyLevel70" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:44:36.981Z", + "createdAt": "2022-10-26T07:53:48.463Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Tagged Low", - "itemId": "a9668a76b0e04c95b4b6941296faf101", + "title": "Revolver SW29", + "itemId": "64126b1908e34b3ba57c6aea20c9757b", "baseAppId": "", - "sku": "pd3_mod_sight_tagged_low", + "sku": "pd3_wpn_revolver_castigo44", "namespace": "pd3", - "name": "MOD Sight Tagged Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "Revolver Castigo44", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 75000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 75000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:48:42.608Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [], "tags": [ - "WeaponPart" + "InfamyLevel10", + "CombatEquipmentVendor" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:48:42.527Z", + "createdAt": "2021-11-01T08:52:08.284Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Viewpoint", - "itemId": "958d0f384eb8464fa62f09e68628d18a", + "title": "SMG UziPro", + "itemId": "d91471f5b1e8491f97c1490c11d5ca0a", "baseAppId": "", - "sku": "pd3_mod_sight_viewpoint", + "sku": "pd3_wpn_smg_commando", "namespace": "pd3", - "name": "MOD Sight Viewpoint", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "SMG Commando", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-16T14:47:45.890Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "InfamyLevel29" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-16T14:47:41.010Z", + "createdAt": "2022-05-17T11:55:07.313Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Viewpoint High", - "itemId": "81010f8c3cff4d5cbcaf9401ba21168f", + "title": "SMG MP7", + "itemId": "565c16024092468d93118d3426e8692f", "baseAppId": "", - "sku": "pd3_mod_sight_viewpoint_high", + "sku": "pd3_wpn_smg_compact7", "namespace": "pd3", - "name": "MOD Sight Viewpoint High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "SMG Compact7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 500000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:39:15.813Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel65", + "CombatEquipmentVendor" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:39:15.649Z", + "createdAt": "2021-11-01T08:50:20.706Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Sight Viewpoint Low", - "itemId": "6915792558cd4483859570225d26f90e", + "title": "SMG PC9", + "itemId": "43899d4fcd7849c2960d34e8f723f8e9", "baseAppId": "", - "sku": "pd3_mod_sight_viewpoint_low", + "sku": "pd3_wpn_smg_pc9", "namespace": "pd3", - "name": "MOD Sight Viewpoint Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "SMG PC9", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T13:41:44.739Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "InfamyLevel18" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T13:41:44.633Z", + "createdAt": "2022-10-12T11:22:52.952Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock HQ", - "itemId": "43fe9837925d40e5a46c418892dfd074", + "title": "Secondary Weapon Slot - Initial", + "itemId": "84d0c77410184162a1b300dcca87c600", "baseAppId": "", - "sku": "pd3_mod_stock_hq", + "sku": "pd3_slot_secondary_initial", "namespace": "pd3", - "name": "MOD Stock HQ", + "name": "Secondary Weapon Inventory Slot", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:08:56.841Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, + "boundItemIds": [ + "0689084274d64988b5b996b0ac501afb", + "e2af9884246b442d9a363259322b0598", + "f3e42193cfb74a7b8afaaf57a578369f", + "5098b2b4214b4306967e7777953f99d6", + "90f80be8a8c84af9a11826eed79d6cdf", + "47ed89c6d7fa496095c0adc4f3a9394c", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "1925e9106026489ea86a223e5f5c3cb2", + "34a0e12b450e4450bf0a54de1768efcb", + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "775cbf5cec0b4190961bc70422aedd75", + "88e8728f2a814997ba5a4ce7521bde4f", + "b4876983c73544a19ad2e481f7eb8b76", + "818ed3848f7b4ff9a58816e8417f4916", + "a5be4db055714c7ab722cf09f6f05c34", + "49981ef260c34b028104e721284053d4", + "16eb187877eb4b7da217b0d5698a8aa9", + "028dfa799af94f1bb98ea17645064b11", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "37fc20ad8805435f86e90ae5f292502d", + "0bc8fb3cb4e7451a839f6cc5597db9e3", + "82e5cb4b9aa44e82ae5bb6b9875f0338", + "f63276f952494e2cb512eccef21a2778", + "77329c646c3348db8f33c9ba24e3d23c", + "bf7d8931e33f4411bba1dfbf03ce4561", + "f4b6caf6b4bb440c9c8abe896750bf94", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" + ], "tags": [ - "WeaponPart" + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:08:58.552Z", + "createdAt": "2021-10-05T12:03:28.067Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock HQ High", - "itemId": "c8cd8d10412044a3b17e90f7ca0f6a40", + "title": "Secondary Weapon Inventory Slot: Price Progression 0", + "itemId": "32c494eab8ba4a60bed65189775950c9", "baseAppId": "", - "sku": "pd3_mod_stock_hq_high", + "sku": "pd3_slot_secondary0", "namespace": "pd3", - "name": "MOD Stock HQ High", + "name": "Secondary Weapon Inventory Slot: Price Progression 0", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 50000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:53:30.558Z" + "purchaseAt": "2023-01-02T13:22:42.285Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression0", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:53:30.383Z", + "createdAt": "2023-01-02T13:22:42.057Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock HQ Low", - "itemId": "575467d606c749d8b7b85b44d213d6c6", + "title": "Secondary Weapon Inventory Slot: Price Progression 1", + "itemId": "76a20159f5624049b21edd7da51dc508", "baseAppId": "", - "sku": "pd3_mod_stock_hq_low", + "sku": "pd3_slot_secondary1", "namespace": "pd3", - "name": "MOD Stock HQ Low", + "name": "Secondary Weapon Inventory Slot: Price Progression 1", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:03:52.219Z" + "purchaseAt": "2023-01-02T13:23:53.886Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression1", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:03:52.086Z", + "createdAt": "2023-01-02T13:23:53.678Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock LightFrame", - "itemId": "96ed122861784960bf7cbe37cc0f7510", + "title": "Secondary Weapon Inventory Slot: Price Progression 10", + "itemId": "1c7ff668bf2446cdbc53971ba6249f14", "baseAppId": "", - "sku": "pd3_mod_stock_lightframe", + "sku": "pd3_slot_secondary10", "namespace": "pd3", - "name": "MOD Stock LightFrame", + "name": "Secondary Weapon Inventory Slot: Price Progression 10", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 5, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:07:34.585Z" + "purchaseAt": "2023-01-02T13:40:17.82Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PriceProgression10", + "CombatEquipmentVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:07:36.299Z", + "createdAt": "2023-01-02T13:40:17.581Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock LightFrame High", - "itemId": "fdd476a8518f44a69839d4982116ff86", + "title": "Secondary Weapon Inventory Slot: Price Progression 2", + "itemId": "83f4064041784307a9b6f9cd0a2dfba4", "baseAppId": "", - "sku": "pd3_mod_stock_lightframe_high", + "sku": "pd3_slot_secondary2", "namespace": "pd3", - "name": "MOD Stock LightFrame High", + "name": "Secondary Weapon Inventory Slot: Price Progression 2", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 50000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:52:56.461Z" + "purchaseAt": "2023-01-02T13:27:51.629Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression2", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:52:56.284Z", + "createdAt": "2023-01-02T13:27:51.405Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock LightFrame Low", - "itemId": "02023c9bd54c4483ac645fb348b4615b", + "title": "Secondary Weapon Inventory Slot: Price Progression 3", + "itemId": "2fc5ff0134a34cb1b5b9de7f6393d2be", "baseAppId": "", - "sku": "pd3_mod_stock_lightframe_low", + "sku": "pd3_slot_secondary3", "namespace": "pd3", - "name": "MOD Stock LightFrame Low", + "name": "Secondary Weapon Inventory Slot: Price Progression 3", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:03:25.239Z" + "purchaseAt": "2023-01-02T13:28:57.749Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression3", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:03:25.104Z", + "createdAt": "2023-01-02T13:28:57.513Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock PaddedTube", - "itemId": "ccf3ff9a2f4f41918ebf594882d2660d", + "title": "Secondary Weapon Inventory Slot: Price Progression 4", + "itemId": "276de5b215ba4e8c8bb478d830e3e4de", "baseAppId": "", - "sku": "pd3_mod_stock_paddedtube", + "sku": "pd3_slot_secondary4", "namespace": "pd3", - "name": "MOD Stock PaddedTube", + "name": "Secondary Weapon Inventory Slot: Price Progression 4", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -15979,1497 +41521,1611 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:09:14.959Z" + "purchaseAt": "2023-01-02T13:32:55.213Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression4", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:09:16.694Z", + "createdAt": "2023-01-02T13:32:54.981Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock PaddedTube High", - "itemId": "be4beca5feba4aa2a444b5fc12b4cde4", + "title": "Secondary Weapon Inventory Slot: Price Progression 5", + "itemId": "79b0ca9c0fa24fd6a059e46318deda0d", "baseAppId": "", - "sku": "pd3_mod_stock_paddedtube_high", + "sku": "pd3_slot_secondary5", "namespace": "pd3", - "name": "MOD Stock PaddedTube High", + "name": "Secondary Weapon Inventory Slot: Price Progression 5", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:55:04.576Z" + "purchaseAt": "2023-01-02T13:34:22.397Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression5", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:55:04.399Z", + "createdAt": "2023-01-02T13:34:22.156Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock PaddedTube Low", - "itemId": "7a0f126c2c9340bbb5c838b18f6b70f5", + "title": "Secondary Weapon Inventory Slot: Price Progression 6", + "itemId": "7337afd9ac8345fd917f94685ac3f96a", "baseAppId": "", - "sku": "pd3_mod_stock_paddedtube_low", + "sku": "pd3_slot_secondary6", "namespace": "pd3", - "name": "MOD Stock PaddedTube Low", + "name": "Secondary Weapon Inventory Slot: Price Progression 6", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:04:19.053Z" + "purchaseAt": "2023-01-02T13:35:44.46Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression6", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:04:18.924Z", + "createdAt": "2023-01-02T13:35:44.218Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock TQ", - "itemId": "94bb48141c384f88ba9e49c256da8817", + "title": "Secondary Weapon Inventory Slot: Price Progression 7", + "itemId": "3fc2fb0e3563455aa2369593909269e1", "baseAppId": "", - "sku": "pd3_mod_stock_tq", + "sku": "pd3_slot_secondary7", "namespace": "pd3", - "name": "MOD Stock TQ", + "name": "Secondary Weapon Inventory Slot: Price Progression 7", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:06:49.238Z" + "purchaseAt": "2023-01-02T13:36:44.437Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression7", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:06:50.964Z", + "createdAt": "2023-01-02T13:36:44.197Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock TQ High", - "itemId": "5573b347e545424ab89685f34152dc2d", + "title": "Secondary Weapon Inventory Slot: Price Progression 8", + "itemId": "4825d6a6b29c4b0cbafaa7229edecbf9", "baseAppId": "", - "sku": "pd3_mod_stock_tq_high", + "sku": "pd3_slot_secondary8", "namespace": "pd3", - "name": "MOD Stock TQ High", + "name": "Secondary Weapon Inventory Slot: Price Progression 8", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 250000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:52:29.485Z" + "purchaseAt": "2023-01-02T13:38:13.86Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression8", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:52:29.316Z", + "createdAt": "2023-01-02T13:38:13.617Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stock TQ Low", - "itemId": "d648dd6c8d3b414697f456f49ba72da0", + "title": "Secondary Weapon Inventory Slot: Price Progression 9", + "itemId": "2fef9a919c2a4bffa14c87142bb997d5", "baseAppId": "", - "sku": "pd3_mod_stock_tq_low", + "sku": "pd3_slot_secondary9", "namespace": "pd3", - "name": "MOD Stock TQ Low", + "name": "Secondary Weapon Inventory Slot: Price Progression 9", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:02:52.598Z" + "purchaseAt": "2023-01-02T13:39:17.292Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "PriceProgression9", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:02:52.481Z", + "createdAt": "2023-01-02T13:39:17.05Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Styk7 Grip Friction", - "itemId": "cc5c186f85f142a693ed9b818db8a532", + "title": "Secure Point Branch Bank Preplanning asset", + "itemId": "7ffcce86f7bb4dd78e9fcd6755fc9a43", "baseAppId": "", - "sku": "pd3_mod_styk7_grip_friction", + "sku": "pd3_preplanning_branchbank_2", "namespace": "pd3", - "name": "MOD Stryk7 Grip Friction", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Secure Point Branch Bank Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:02:50.887Z", - "discountPurchaseAt": "2022-11-17T10:02:50.887Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:02:53.083Z", + "createdAt": "2022-10-19T13:16:48.791Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Styk7 Grip Grained", - "itemId": "e334045d62df41e09bdb75fdd5377069", + "title": "Sentry Gun", + "itemId": "2b576f24e06949148ded46749e50377f", "baseAppId": "", - "sku": "pd3_mod_styk7_grip_grained", + "sku": "pd3_placeable_sentry", "namespace": "pd3", - "name": "MOD Stryk7 Grip Grained", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Sentry Gun", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Placeable", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:08:23.866Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, - "tags": [ - "WeaponPart" - ], - "features": [], + "tags": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:08:26.054Z", + "createdAt": "2022-11-02T16:57:28.495Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Styk7 Grip Ribbed", - "itemId": "e539ddbdbf2a4d818123e03ad8a88e73", + "title": "Shock Grenade", + "itemId": "99050b7b8ef14affabfce4cf2084597f", "baseAppId": "", - "sku": "pd3_mod_styk7_grip_ribbed", + "sku": "pd3_throwable_shockgrenade", "namespace": "pd3", - "name": "MOD Stryk7 Grip Ribbed", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Grip", + "name": "Shock Grenade", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Throwables", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T10:05:53.874Z" + "purchaseAt": "2024-03-20T13:22:45.074Z" } ], "itemQty": {}, - "tags": [ - "WeaponPart" - ], + "tags": [], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T10:05:56.065Z", + "createdAt": "2024-03-20T13:22:45.606Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stryk7 Mag Extended", - "itemId": "93936d9f8fe94dd29ea8f997a33a45e1", + "title": "Shotgun Mosconi12C", + "itemId": "20ad75ceb451400dbde1e203dfb5e50a", "baseAppId": "", - "sku": "pd3_mod_stryk7_mag_extended", + "sku": "pd3_wpn_shotgun_mosconi12c", "namespace": "pd3", - "name": "MOD Stryk7 Mag Extended", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Shotgun Mosconi12C", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:14:22.491Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel43", + "CombatEquipmentVendor" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:14:21.993Z", + "createdAt": "2022-10-21T12:57:14.079Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD Stryk7 Mag Quick", - "itemId": "73fc7f50a0844f16a23da40d67c8857a", + "title": "Shotgun R870", + "itemId": "23cdde1e5cb540a6af317678a824ed49", "baseAppId": "", - "sku": "pd3_mod_stryk7_mag_quick", + "sku": "pd3_wpn_shotgun_r880", "namespace": "pd3", - "name": "MOD Stryk7 Mag Quick", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Shotgun R880", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:15:51.880Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "InfamyLevel2" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:15:51.380Z", + "createdAt": "2021-08-12T09:22:12.23Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VF7S Barrel CQC", - "itemId": "0ea8e4ef9f2b4e6ba9baf936d2a0e58a", + "title": "Silver Edition Compensation Bundle Epic", + "itemId": "eb41a84fe1154a76a219d86f09b3fd12", "baseAppId": "", - "sku": "pd3_mod_vf7s_barrel_cqc", + "sku": "pd3_epic_silver_edition_compensation_bundle", "namespace": "pd3", - "name": "MOD VF7S Barrel CQC", + "name": "Silver Edition Compensation Bundle Epic", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:37:58.414Z" + "purchaseAt": "2024-06-10T11:25:25.794Z", + "discountPurchaseAt": "2024-06-10T11:25:25.794Z" } ], - "itemQty": {}, + "itemIds": [ + "76f01b0620174185bb344cb6f2e6bc91", + "27eed0c33df24f338f415fb44ff6bc11", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "27eed0c33df24f338f415fb44ff6bc11": 1, + "76f01b0620174185bb344cb6f2e6bc91": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "Epic", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:37:58.178Z", + "createdAt": "2024-06-10T11:25:25.334Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VF7S Barrel Ranged", - "itemId": "474317cfffb444a2a5c0627ca0e5dc4a", + "title": "Silver Edition Compensation Bundle PlayStation", + "itemId": "3b590438276d44d9b0401cba3f928a7f", "baseAppId": "", - "sku": "pd3_mod_vf7s_barrel_ranged", + "sku": "pd3_playstation_silver_edition_compensation_bundle", "namespace": "pd3", - "name": "MOD VF7S Barrel Ranged", + "name": "Silver Edition Compensation Bundle PlayStation", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Barrel", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T08:40:08.218Z" + "purchaseAt": "2024-06-10T11:22:17.239Z", + "discountPurchaseAt": "2024-06-10T11:22:17.239Z" } ], - "itemQty": {}, + "itemIds": [ + "7b848344ac5b4a2f87416052420b9de4", + "891f9dc7d1f64029b6e6cf01bcf171b5", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "891f9dc7d1f64029b6e6cf01bcf171b5": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "7b848344ac5b4a2f87416052420b9de4": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "PlayStation", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": -1, - "maxCount": -1, - "displayOrder": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T08:40:07.981Z", + "createdAt": "2024-06-10T11:22:16.789Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VF7S Mag Compact", - "itemId": "a9ba349a85804aad98e0015994595822", + "title": "Silver Edition Compensation Bundle Steam", + "itemId": "c879e1ab01cc4dcf86d034af51d1f7bb", "baseAppId": "", - "sku": "pd3_mod_vf7s_mag_compact", + "sku": "pd3_steam_silver_edition_compensation_bundle", "namespace": "pd3", - "name": "MOD VF7S Mag Compact", + "name": "Silver Edition Compensation Bundle Steam", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:30:10.086Z", - "discountPurchaseAt": "2022-11-17T13:30:10.086Z" + "purchaseAt": "2024-06-10T11:23:53.942Z", + "discountPurchaseAt": "2024-06-10T11:23:53.942Z" } ], - "itemQty": {}, + "itemIds": [ + "f54f210fc10e4600b6b4979d160a4c22", + "743513636be44e2cbd8fbc4cf3b99d60", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "743513636be44e2cbd8fbc4cf3b99d60": 1, + "f54f210fc10e4600b6b4979d160a4c22": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:30:09.571Z", + "createdAt": "2024-06-10T11:23:53.485Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VF7S Mag Extended", - "itemId": "7e6db7d4ce0e48f6b347b7a3d77efdfb", + "title": "Silver Edition Compensation Bundle XBox", + "itemId": "c23c46f2de894c458dd2f25dd82f75b9", "baseAppId": "", - "sku": "pd3_mod_vf7s_mag_extended", + "sku": "pd3_xbox_silver_edition_compensation_bundle", "namespace": "pd3", - "name": "MOD VF7S Mag Extended", + "name": "Silver Edition Compensation Bundle XBox", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 50, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T13:28:32.966Z" + "purchaseAt": "2024-06-10T11:20:07.627Z", + "discountPurchaseAt": "2024-06-10T11:20:07.627Z" } ], - "itemQty": {}, + "itemIds": [ + "42f08dd98eed479393a06ff366f659a6", + "a932099785b343b09e63958d11e81a92", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "a932099785b343b09e63958d11e81a92": 1, + "42f08dd98eed479393a06ff366f659a6": 1 + }, "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T13:28:32.454Z", + "createdAt": "2024-06-10T11:20:07.199Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VF7S Mag Quick", - "itemId": "c3c8a34652694ca8b48917a2b65a9add", + "title": "Smoke Grenade", + "itemId": "145c6ffde3eb454ca33a370d12caf4bc", "baseAppId": "", - "sku": "pd3_mod_vf7s_mag_quick", + "sku": "pd3_throwable_smokegrenade", "namespace": "pd3", - "name": "MOD VF7S Mag Quick", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Smoke Grenade", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Throwables", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T12:24:28.995Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T12:24:28.541Z", + "createdAt": "2022-11-02T10:28:39.166Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip AngledGhost", - "itemId": "ea432f121af14b54820a8bb1e4dbe632", + "title": "Sniper Tower Armored Transport Preplanning asset", + "itemId": "f55bbfc9483948d69be74a55b5cd5038", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_angledghost", + "sku": "pd3_preplanning_armoredtransport_3", "namespace": "pd3", - "name": "MOD VerticalGrip AngledGhost", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Sniper Tower Armored Transport Preplanning asset", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:38:25.057Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:38:24.764Z", + "createdAt": "2022-10-19T13:20:39.309Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip AngledGhost High", - "itemId": "2989b9c54a5b49bbb0a2e8963e569879", + "title": "Spray Paint Can Colour 1", + "itemId": "91ce43fa30334a8cb1623d4897b63eaa", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_angledghost_high", + "sku": "pd3_cosmetic_spraycan_paint1", "namespace": "pd3", - "name": "MOD VerticalGrip AngledGhost High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 500, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:56:40.668Z" + "purchaseAt": "2022-11-24T13:52:37.909Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityCommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:56:40.493Z", + "createdAt": "2022-11-24T13:52:37.554Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip AngledGhost Low", - "itemId": "16f77d114bf446a4a1ac2fc988318c0a", + "title": "Spray Paint Can Colour 10", + "itemId": "80e93be89b7049eba34d0da984ec1acc", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_angledghost_low", + "sku": "pd3_cosmetic_spraycan_paint10", "namespace": "pd3", - "name": "MOD VerticalGrip AngledGhost Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:05:36.364Z" + "purchaseAt": "2022-11-24T14:05:18.673Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:05:36.230Z", + "createdAt": "2022-11-24T14:05:18.285Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Cylinder", - "itemId": "d044c47d8f9e4f95b1630265a1029e26", + "title": "Spray Paint Can Colour 11", + "itemId": "63db938759ce4c1396e664dae13f8032", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_cylinder", + "sku": "pd3_cosmetic_spraycan_paint11", "namespace": "pd3", - "name": "MOD VerticalGrip Cylinder", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:36:02.537Z" + "purchaseAt": "2022-11-24T14:06:34.296Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:36:02.266Z", + "createdAt": "2022-11-24T14:06:33.909Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Cylinder High", - "itemId": "f0b395021c51426babba0b4958ab8a24", + "title": "Spray Paint Can Colour 12", + "itemId": "2ffc486c333348c298085b22c4712e5d", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_cylinder_high", + "sku": "pd3_cosmetic_spraycan_paint12", "namespace": "pd3", - "name": "MOD VerticalGrip Cylinder High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:55:54.414Z" + "purchaseAt": "2022-11-24T14:07:24.5Z" } ], "itemQty": {}, + "boundItemIds": [ + "e005bc343c254adb9855ef1b7effc751" + ], "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:55:54.246Z", + "createdAt": "2022-11-24T14:07:24.111Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Cylinder Low", - "itemId": "610b3033bc9a4ecb85888c9cde423677", + "title": "Spray Paint Can Colour 13", + "itemId": "8aebdb49670e4d04a74a920a1595bb17", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_cylinder_low", + "sku": "pd3_cosmetic_spraycan_paint13", "namespace": "pd3", - "name": "MOD VerticalGrip Cylinder Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:05:08.517Z" + "purchaseAt": "2022-11-24T14:08:16.185Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:05:08.386Z", + "createdAt": "2022-11-24T14:08:15.796Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip QuickHold", - "itemId": "7d74840ae065498c93bb7d61c9e712c1", + "title": "Spray Paint Can Colour 14", + "itemId": "741a297a299545ca94c17d0c68e2606b", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_quickhold", + "sku": "pd3_cosmetic_spraycan_paint14", "namespace": "pd3", - "name": "MOD VerticalGrip QuickHold", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 14", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:41:15.897Z" + "purchaseAt": "2022-11-24T14:09:03.2Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:41:15.601Z", + "createdAt": "2022-11-24T14:09:02.81Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip QuickHold High", - "itemId": "3af22326335842a4893a33d99f2b2f9a", + "title": "Spray Paint Can Colour 15", + "itemId": "d402548deca1416788aee29639142797", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_quickhold_high", + "sku": "pd3_cosmetic_spraycan_paint15", "namespace": "pd3", - "name": "MOD VerticalGrip QuickHold High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/BarrelExt", + "name": "Spray Paint Can 15", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 1000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:58:33.659Z" + "purchaseAt": "2022-11-24T14:09:59.224Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:58:33.480Z", + "createdAt": "2022-11-24T14:09:58.832Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip QuickHold Low", - "itemId": "7427321a1ac94f1db7dc4db367290cd4", + "title": "Spray Paint Can Texture 16", + "itemId": "6efb8e0f73424a32981987d484f43a3b", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_quickhold_low", - "namespace": "pd3", - "name": "MOD VerticalGrip QuickHold Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "sku": "pd3_cosmetic_spraycan_paint16", + "namespace": "pd3", + "name": "Spray Paint Can 16", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:06:34.456Z" + "purchaseAt": "2022-11-24T14:16:43.921Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel8", + "RarityRare", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:06:34.322Z", + "createdAt": "2022-11-24T14:16:43.522Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Stub", - "itemId": "fa0333c3bdfa41cba3aaa7eee8b2274e", + "title": "Spray Paint Can Texture 17", + "itemId": "b8fbcc17818042039a8b853788d160ba", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_stub", + "sku": "pd3_cosmetic_spraycan_paint17", "namespace": "pd3", - "name": "MOD VerticalGrip Stub", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 17", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-17T09:39:41.709Z" + "purchaseAt": "2022-11-24T14:18:09.601Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityRare", + "CharacterVendor", + "InfamyLevel145" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-17T09:39:41.422Z", + "createdAt": "2022-11-24T14:18:09.199Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Stub High", - "itemId": "4740ab64645a49ba97d3fe7bd6868917", + "title": "Spray Paint Can Texture 18", + "itemId": "0c2765265355431b9d6d832260a12fd3", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_stub_high", + "sku": "pd3_cosmetic_spraycan_paint18", "namespace": "pd3", - "name": "MOD VerticalGrip Stub High", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 18", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, - "currencyCode": "GOLD", + "discountedPrice": 3000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:57:54.367Z" + "purchaseAt": "2022-11-24T14:19:25.417Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityRare", + "CharacterVendor", + "InfamyLevel16" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:57:54.195Z", + "createdAt": "2022-11-24T14:19:25.017Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD VerticalGrip Stub Low", - "itemId": "fd0af7db61054a5db6b50a056de8793f", + "title": "Spray Paint Can Texture 19", + "itemId": "4337abc8898d466491b068ad0899535d", "baseAppId": "", - "sku": "pd3_mod_verticalgrip_stub_low", + "sku": "pd3_cosmetic_spraycan_paint19", "namespace": "pd3", - "name": "MOD VerticalGrip Stub Low", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Spray Paint Can 19", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-25T14:06:06.229Z" + "purchaseAt": "2022-11-24T14:20:11.321Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityRare", + "CharacterVendor", + "InfamyLevel17" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-25T14:06:06.101Z", + "createdAt": "2022-11-24T14:20:10.918Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD WAR45 Mag Compact ", - "itemId": "234601dd009f49b494d25070bcbed2e9", + "title": "Spray Paint Can Colour 2", + "itemId": "2776bcd2157342d08511b2755c46f8d4", "baseAppId": "", - "sku": "pd3_mod_war45_mag_compact", + "sku": "pd3_cosmetic_spraycan_paint2", "namespace": "pd3", - "name": "MOD WAR45 Mag Compact ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Spray Paint Can 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:23:26.179Z" + "purchaseAt": "2022-11-24T13:55:49.288Z" } ], "itemQty": {}, + "boundItemIds": [ + "e005bc343c254adb9855ef1b7effc751" + ], "tags": [ - "WeaponPart" + "RarityCommon", + "CharacterVendor", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:23:27.333Z", + "createdAt": "2022-11-24T13:55:48.936Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD WAR45 Mag Extended ", - "itemId": "51f31c3e71514d5b8fdc68de268ec38e", + "title": "Spray Paint Can Texture 20", + "itemId": "18ec586c4e4f4dc782351788951d0e6e", "baseAppId": "", - "sku": "pd3_mod_war45_mag_extended", + "sku": "pd3_cosmetic_spraycan_paint20", "namespace": "pd3", - "name": "MOD WAR45 Mag Extended ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Spray Paint Can 20", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:19:16.911Z" + "purchaseAt": "2022-11-24T14:21:07.097Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel20", + "RarityRare", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:19:18.034Z", + "createdAt": "2022-11-24T14:21:06.694Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "MOD WAR45 Mag Quick ", - "itemId": "f8a10c6ea6434b58a401f0ac37c2ad78", + "title": "Spray Paint Can Texture 21", + "itemId": "eeb588b2880443fa9abf0aaac2be3955", "baseAppId": "", - "sku": "pd3_mod_war45_mag_quick", + "sku": "pd3_cosmetic_spraycan_paint21", "namespace": "pd3", - "name": "MOD WAR45 Mag Quick ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Mag", + "name": "Spray Paint Can 21", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-08T17:22:02.415Z" + "purchaseAt": "2022-11-24T14:21:45.808Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "RarityRare", + "CharacterVendor", + "InfamyLevel22" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, - "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-08T17:22:03.590Z", + "createdAt": "2022-11-24T14:21:45.404Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Manager Cake Jewelry Store Preplanning asset", - "itemId": "a8a42735b6ed4bf48456de9f33ff6477", + "title": "Spray Paint Can Texture 22", + "itemId": "f63a4327c74646cb816b9ddcc100f527", "baseAppId": "", - "sku": "pd3_preplanning_jewelrystore_1", + "sku": "pd3_cosmetic_spraycan_paint22", "namespace": "pd3", - "name": "Manager Cake Jewelry Store Preplanning asset", + "name": "Spray Paint Can 22", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T14:22:17.56Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "RarityRare", + "CharacterVendor", + "InfamyLevel26" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:08:11.035Z", + "createdAt": "2022-11-24T14:22:17.154Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Marksman M14", - "itemId": "4f67bce6dfc0416e80b67a62dea12c79", + "title": "Spray Paint Can Texture 23", + "itemId": "80f157ac92744415bfcb7f1682164b01", "baseAppId": "", - "sku": "pd3_wpn_marksman_a114", + "sku": "pd3_cosmetic_spraycan_paint23", "namespace": "pd3", - "name": "Marksman A114", + "name": "Spray Paint Can 23", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T14:23:09.521Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel15" + "RarityRare", + "CharacterVendor", + "InfamyLevel28" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-05-17T08:17:42.863Z", + "createdAt": "2022-11-24T14:23:09.118Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Marksman R700", - "itemId": "bd59f1eb7e2e4ee398923418bfe26b0c", + "title": "Spray Paint Can Texture 24", + "itemId": "35fb4e9455be4194975480ec28fc093d", "baseAppId": "", - "sku": "pd3_wpn_marksman_r900s", + "sku": "pd3_cosmetic_spraycan_paint24", "namespace": "pd3", - "name": "Marksman R900S", + "name": "Spray Paint Can 24", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T14:23:44.064Z" } ], "itemQty": {}, - "boundItemIds": [], "tags": [ - "InfamyLevel53", - "CombatEquipmentVendor" + "InfamyLevel120", + "RarityEpic", + "CharacterVendor" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-10-29T12:15:33.519Z", + "createdAt": "2022-11-24T14:23:43.661Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot - Initial", - "itemId": "7edebccf1e2d48bfb94513a78c2f91a9", + "title": "Spray Paint Can Texture 25", + "itemId": "a2545ac17767476a83e08456aeaad27d", "baseAppId": "", - "sku": "pd3_slot_mask_initial", + "sku": "pd3_cosmetic_spraycan_paint25", "namespace": "pd3", - "name": "Mask Inventory Slot", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 25", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-24T14:24:39.992Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "InfamyLevel72", + "RarityEpic", + "CharacterVendor" + ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-06T13:09:57.643Z", + "createdAt": "2022-11-24T14:24:39.585Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 0", - "itemId": "87d0be7e55304e62b4993ea5de750671", + "title": "Spray Paint Can Texture 26", + "itemId": "0870d8b7bfeb45efa7cea9d1a331bd01", "baseAppId": "", - "sku": "pd3_slot_mask0", + "sku": "pd3_cosmetic_spraycan_paint26", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 0", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 26", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T09:46:15.321Z" + "purchaseAt": "2022-11-24T14:25:21.601Z" } ], "itemQty": {}, - "boundItemIds": [ - "e005bc343c254adb9855ef1b7effc751" - ], "tags": [ - "PriceProgression0", - "CharacterVendor", - "InitialItem" + "InfamyLevel74", + "RarityEpic", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T09:46:15.322Z", + "createdAt": "2022-11-24T14:25:21.193Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 1", - "itemId": "662b6f7b2dbb44d9bdf2531f5739a646", + "title": "Spray Paint Can Texture 27", + "itemId": "28e52ecf8c8a43ea99cbe972a58b567c", "baseAppId": "", - "sku": "pd3_slot_mask1", + "sku": "pd3_cosmetic_spraycan_paint27", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 1", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 27", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T09:52:39.740Z" + "purchaseAt": "2022-11-24T14:25:59.825Z" } ], "itemQty": {}, "tags": [ - "PriceProgression1", - "CharacterVendor", - "InitialItem" + "RarityEpic", + "InfamyLevel81", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T09:52:39.732Z", + "createdAt": "2022-11-24T14:25:59.417Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 10", - "itemId": "a44d9e25df594acdabfc7b204383c826", + "title": "Spray Paint Can Texture 28", + "itemId": "3453479f37a6485d8281d416facf2c32", "baseAppId": "", - "sku": "pd3_slot_mask10", + "sku": "pd3_cosmetic_spraycan_paint28", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 10", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 28", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5, - "currencyCode": "GOLD", + "discountedPrice": 5000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:17:52.958Z" + "purchaseAt": "2022-11-24T14:26:34.121Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", + "RarityEpic", "CharacterVendor", - "InitialItem" + "InfamyLevel148" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:17:52.932Z", + "createdAt": "2022-11-24T14:26:33.709Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 2", - "itemId": "0bff8655788c4f678327d5c9534cca7f", + "title": "Spray Paint Can Texture 29", + "itemId": "28e2256061a342edb877088b83c67e81", "baseAppId": "", - "sku": "pd3_slot_mask2", + "sku": "pd3_cosmetic_spraycan_paint29", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 2", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 29", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T09:55:21.787Z" + "purchaseAt": "2022-11-24T14:27:09.729Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "PriceProgression2", - "InitialItem" + "InfamyLevel87", + "RarityEpic", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T09:55:21.772Z", + "createdAt": "2022-11-24T14:27:09.32Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 3", - "itemId": "055f83d46d6e434395d673427bff87c6", + "title": "Spray Paint Can Colour 3", + "itemId": "70e2351e00654e0c93fdc179adcf4b4a", "baseAppId": "", - "sku": "pd3_slot_mask3", + "sku": "pd3_cosmetic_spraycan_paint3", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 3", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:00:23.249Z" + "purchaseAt": "2022-11-24T13:57:55.88Z" } ], "itemQty": {}, "tags": [ + "RarityCommon", "CharacterVendor", - "PriceProgression3", "InitialItem" ], "features": [], @@ -17477,566 +43133,576 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:00:23.233Z", + "createdAt": "2022-11-24T13:57:55.5Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 4", - "itemId": "a21a032b006443358fef71f58444a9c8", + "title": "Spray Paint Can Texture 30", + "itemId": "2c9d3945b0e346acab7447f1e67c0651", "baseAppId": "", - "sku": "pd3_slot_mask4", + "sku": "pd3_cosmetic_spraycan_paint30", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 4", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 30", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:02:39.719Z" + "purchaseAt": "2022-11-24T14:27:40.137Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "PriceProgression4", - "InitialItem" + "RarityEpic", + "InfamyLevel93", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:02:39.712Z", + "createdAt": "2022-11-24T14:27:39.73Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 5", - "itemId": "9945b01c6f5e4e24b0d1d149b02172ad", + "title": "Spray Paint Can Texture 31", + "itemId": "d3bef5e251c249b5bc15d749d14b8236", "baseAppId": "", - "sku": "pd3_slot_mask5", + "sku": "pd3_cosmetic_spraycan_paint31", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 5", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 31", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:04:19.478Z" + "purchaseAt": "2022-11-24T14:28:13.329Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "PriceProgression5", - "InitialItem" + "InfamyLevel95", + "RarityEpic", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:04:19.461Z", + "createdAt": "2022-11-24T14:28:12.918Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 6", - "itemId": "a12d4d2ca7de44b0a9e58a3116341d15", + "title": "Spray Paint Can Texture 34", + "itemId": "917be799b0b6405cacda674f60d43e93", "baseAppId": "", - "sku": "pd3_slot_mask6", + "sku": "pd3_cosmetic_spraycan_paint34", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 6", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 34", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:06:16.236Z" + "purchaseAt": "2022-11-24T14:29:54.692Z" } ], "itemQty": {}, "tags": [ + "RarityUncommon", "CharacterVendor", - "PriceProgression6", - "InitialItem" + "InfamyLevel12" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:06:16.213Z", + "createdAt": "2022-11-24T14:29:54.282Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 7", - "itemId": "d5de9415612b406584ece698b7ec366e", + "title": "Spray Paint Can 35", + "itemId": "cedaed7df31142e4b8cc7faac230130d", "baseAppId": "", - "sku": "pd3_slot_mask7", + "sku": "pd3_cosmetic_spraycan_paint35", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 7", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 35", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:09:42.018Z" + "purchaseAt": "2023-02-17T14:13:26.09Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "PriceProgression7", - "InitialItem" + "InfamyLevel30", + "RarityRare", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:09:41.993Z", + "createdAt": "2023-02-17T14:13:26.063Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 8", - "itemId": "f207245233494595abea3d85cf230797", + "title": "Spray Paint Can 36", + "itemId": "a9089f2fba5947639505d690ba792950", "baseAppId": "", - "sku": "pd3_slot_mask8", + "sku": "pd3_cosmetic_spraycan_paint36", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 8", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 36", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:12:01.129Z" + "purchaseAt": "2023-02-17T14:14:37.063Z" } ], "itemQty": {}, "tags": [ - "CharacterVendor", - "PriceProgression8", - "InitialItem" + "InfamyLevel32", + "RarityRare", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:12:01.101Z", + "createdAt": "2023-02-17T14:14:37.029Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Inventory Slot: Price Progression 9", - "itemId": "19d32639433c4f78bed9a9dfabc6f06a", + "title": "Spray Paint Can 37", + "itemId": "800ca0ecfcd243778c63d752cbb2e38d", "baseAppId": "", - "sku": "pd3_slot_mask9", + "sku": "pd3_cosmetic_spraycan_paint37", "namespace": "pd3", - "name": "Mask Inventory Slot: Price Progression 9", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Spray Paint Can 37", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T10:13:46.641Z" + "purchaseAt": "2023-02-17T14:15:22.975Z" } ], "itemQty": {}, "tags": [ + "RarityRare", "CharacterVendor", - "PriceProgression9", - "InitialItem" + "InfamyLevel37" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T10:13:46.616Z", + "createdAt": "2023-02-17T14:15:22.942Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 1", - "itemId": "9ca00d0869f54a31886c2bd909886a69", + "title": "Spray Paint Can 38", + "itemId": "7d8174e370d242a5a798b428eb918afd", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould1", + "sku": "pd3_cosmetic_spraycan_paint38", "namespace": "pd3", - "name": "Mask Mould 1", + "name": "Spray Paint Can 38", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:17:19.610Z" + "purchaseAt": "2023-02-17T14:16:10.358Z" } ], "itemQty": {}, - "boundItemIds": [ - "e005bc343c254adb9855ef1b7effc751" - ], "tags": [ - "RarityCommon", + "RarityRare", "CharacterVendor", - "InitialItem" + "InfamyLevel39" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:17:19.098Z", + "createdAt": "2023-02-17T14:16:10.343Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 10", - "itemId": "68b95f8ad09d4d9e8aab45e3886406d5", + "title": "Spray Paint Can 39", + "itemId": "42a67d95b9ac4c1e873a895882bd49ce", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould10", + "sku": "pd3_cosmetic_spraycan_paint39", "namespace": "pd3", - "name": "Mask Mould 10", + "name": "Spray Paint Can 39", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:23:04.994Z" + "purchaseAt": "2023-02-17T14:17:14.076Z" } ], "itemQty": {}, "tags": [ + "InfamyLevel42", "RarityRare", - "CharacterVendor", - "InfamyLevel23" + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:23:04.465Z", + "createdAt": "2023-02-17T14:17:14.044Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 11", - "itemId": "70af5635c22b421a998532a885ed74e9", + "title": "Spray Paint Can Colour 4", + "itemId": "c8163c30542c49189bad79fc93f6f224", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould11", + "sku": "pd3_cosmetic_spraycan_paint4", "namespace": "pd3", - "name": "Mask Mould 11", + "name": "Spray Paint Can 4", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:23:50.858Z" + "purchaseAt": "2022-11-24T13:59:00.44Z" } ], "itemQty": {}, + "boundItemIds": [ + "e005bc343c254adb9855ef1b7effc751" + ], "tags": [ - "RarityRare", + "RarityCommon", "CharacterVendor", - "InfamyLevel33" + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:23:50.333Z", + "createdAt": "2022-11-24T13:59:00.061Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 12", - "itemId": "022afff72be74ab4bafba847758ae95d", + "title": "Spray Paint Can 40", + "itemId": "7ac776e42032497283c9c11ef9c2c30a", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould12", + "sku": "pd3_cosmetic_spraycan_paint40", "namespace": "pd3", - "name": "Mask Mould 12", + "name": "Spray Paint Can 40", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:24:41.186Z" + "purchaseAt": "2023-02-17T14:18:31.52Z" } ], "itemQty": {}, "tags": [ "RarityRare", "CharacterVendor", - "InfamyLevel45" + "InfamyLevel47" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:24:40.659Z", + "createdAt": "2023-02-17T14:18:31.486Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 13", - "itemId": "a3b05fe0956a4f60a3b72ae5e09b98c3", + "title": "Spray Paint Can 41", + "itemId": "790a1218de3e40168f3a4e34f4cb7840", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould13", + "sku": "pd3_cosmetic_spraycan_paint41", "namespace": "pd3", - "name": "Mask Mould 13", + "name": "Spray Paint Can 41", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 350000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 350000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:25:16.658Z" + "purchaseAt": "2023-02-17T14:19:36.552Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel50", "RarityRare", - "CharacterVendor" + "CharacterVendor", + "InfamyLevel103" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:25:16.128Z", + "createdAt": "2023-02-17T14:19:36.521Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 14", - "itemId": "31f5ba76756d4e76b00b93f87c1f2c66", + "title": "Spray Paint Can 42", + "itemId": "008f87c7a9f84a8db8adfc26102f2691", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould14", + "sku": "pd3_cosmetic_spraycan_paint42", "namespace": "pd3", - "name": "Mask Mould 14", + "name": "Spray Paint Can 42", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:25:51.130Z" + "purchaseAt": "2023-02-17T14:20:33.942Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel57" + "InfamyLevel51", + "RarityRare", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:25:50.599Z", + "createdAt": "2023-02-17T14:20:33.915Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 15", - "itemId": "c5f1491ea8a141b39eb671b0101b3286", + "title": "Spray Paint Can 43", + "itemId": "88fc977914d64f7ba9643141ce5ecc15", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould15", + "sku": "pd3_cosmetic_spraycan_paint43", "namespace": "pd3", - "name": "Mask Mould 15", + "name": "Spray Paint Can 43", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:13:29.421Z", - "discountPurchaseAt": "2023-05-29T08:13:29.421Z" + "purchaseAt": "2023-02-17T14:21:20.318Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", + "RarityRare", "CharacterVendor", - "InfamyLevel68" + "InfamyLevel55" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:13:29.381Z", + "createdAt": "2023-02-17T14:21:20.282Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 16", - "itemId": "31161d5b97064770a13ab5f2e159e6f6", + "title": "Spray Paint Can 44", + "itemId": "422de84f7ba6422c9ffbbd687640ec5c", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould16", + "sku": "pd3_cosmetic_spraycan_paint44", "namespace": "pd3", - "name": "Mask Mould 16", + "name": "Spray Paint Can 44", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:16:23.034Z", - "discountPurchaseAt": "2023-05-29T08:16:23.034Z" + "purchaseAt": "2023-02-17T14:22:19.509Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel75", - "RarityEpic", + "InfamyLevel60", + "RarityRare", "CharacterVendor" ], "features": [], @@ -18044,41 +43710,40 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:16:23.047Z", + "createdAt": "2023-02-17T14:22:19.481Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 17", - "itemId": "07429f0326e940fca207b3307bd0b081", + "title": "Spray Paint Can 45", + "itemId": "5562534252dd4d3893d647f6a657c935", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould17", + "sku": "pd3_cosmetic_spraycan_paint45", "namespace": "pd3", - "name": "Mask Mould 17", + "name": "Spray Paint Can 45", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:19:09.715Z", - "discountPurchaseAt": "2023-05-29T08:19:09.715Z" + "purchaseAt": "2023-02-17T14:23:26.119Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel82", + "InfamyLevel61", + "RarityRare", "CharacterVendor" ], "features": [], @@ -18086,41 +43751,40 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:19:09.712Z", + "createdAt": "2023-02-17T14:23:26.085Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 18", - "itemId": "a3a403f9790c497d851564ae626bf9de", + "title": "Spray Paint Can 46", + "itemId": "ebe4ffafc6c04b3eb66f6a7dc03fce38", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould18", + "sku": "pd3_cosmetic_spraycan_paint46", "namespace": "pd3", - "name": "Mask Mould 18", + "name": "Spray Paint Can 46", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:23:35.784Z", - "discountPurchaseAt": "2023-05-29T08:23:35.784Z" + "purchaseAt": "2023-02-17T14:24:33.152Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel92", + "InfamyLevel64", + "RarityRare", "CharacterVendor" ], "features": [], @@ -18128,158 +43792,157 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:23:35.726Z", + "createdAt": "2023-02-17T14:24:33.119Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 19", - "itemId": "df4aaf915a8e45c3add01c805031d354", + "title": "Spray Paint Can 47", + "itemId": "c7e92c8672234f8586f6af0091575e30", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould19", + "sku": "pd3_cosmetic_spraycan_paint47", "namespace": "pd3", - "name": "Mask Mould 19", + "name": "Spray Paint Can 47", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:24:45.268Z", - "discountPurchaseAt": "2023-05-29T08:24:45.268Z" + "purchaseAt": "2023-02-17T14:25:52.975Z" } ], "itemQty": {}, "tags": [ + "InfamyLevel98", "RarityEpic", - "CharacterVendor", - "InfamyLevel99" + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:24:45.229Z", + "createdAt": "2023-02-17T14:25:52.951Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 2", - "itemId": "2dae2754ee64448dbb008a9b471fa2fe", + "title": "Spray Paint Can 48", + "itemId": "5a0063496e2f4911b1e26a971a6993bc", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould2", + "sku": "pd3_cosmetic_spraycan_paint48", "namespace": "pd3", - "name": "Mask Mould 2", + "name": "Spray Paint Can 48", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:18:10.114Z" + "purchaseAt": "2023-02-17T14:26:54.117Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", + "RarityEpic", "CharacterVendor", - "InitialItem" + "InfamyLevel143" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:18:09.592Z", + "createdAt": "2023-02-17T14:26:54.096Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 3", - "itemId": "2c8e1a2780724c0e90d44934a0d46752", + "title": "Spray Paint Can 49", + "itemId": "ef3c6216900a4e34bbd6ec2782ff34d6", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould3", + "sku": "pd3_cosmetic_spraycan_paint49", "namespace": "pd3", - "name": "Mask Mould 3", + "name": "Spray Paint Can 49", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:18:47.377Z" + "purchaseAt": "2023-02-17T14:28:00.459Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", + "RarityEpic", "CharacterVendor", - "InitialItem" + "InfamyLevel105" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:18:46.858Z", + "createdAt": "2023-02-17T14:28:00.447Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 4", - "itemId": "4a8597feeaf244be8f32511a5c6f9473", + "title": "Spray Paint Can Colour 5", + "itemId": "04efa6162aca4a35ade9c8bb5375579a", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould4", + "sku": "pd3_cosmetic_spraycan_paint5", "namespace": "pd3", - "name": "Mask Mould 4", + "name": "Spray Paint Can 5", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:19:16.939Z" + "purchaseAt": "2022-11-24T13:59:52Z" } ], "itemQty": {}, @@ -18293,520 +43956,553 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:19:16.432Z", + "createdAt": "2022-11-24T13:59:51.62Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 5", - "itemId": "a17d7e04a27d4df482a1a6d6e3d78724", + "title": "Spray Paint Can 50", + "itemId": "9dd5c32ff4fb4da0a8339af80c0d8ad7", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould5", + "sku": "pd3_cosmetic_spraycan_paint50", "namespace": "pd3", - "name": "Mask Mould 5", + "name": "Spray Paint Can 50", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:19:57.754Z" + "purchaseAt": "2023-02-17T14:28:56.266Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "RarityEpic", + "InfamyLevel109", + "CharacterVendor" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:19:57.232Z", + "createdAt": "2023-02-17T14:28:56.238Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 6", - "itemId": "2329d9ab5f0f4973b4a3224815889e9d", + "title": "Spray Paint Can 51", + "itemId": "0a7761fb4ec04920bffff93195c122a2", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould6", + "sku": "pd3_cosmetic_spraycan_paint51", "namespace": "pd3", - "name": "Mask Mould 6", + "name": "Spray Paint Can 51", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:20:40.418Z" + "purchaseAt": "2023-02-17T14:29:58.448Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", + "RarityEpic", "CharacterVendor", - "InfamyLevel5" + "InfamyLevel112" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:20:39.896Z", + "createdAt": "2023-02-17T14:29:58.418Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 7", - "itemId": "3272d6c0203d4a7ba3c88a47fa48bad9", + "title": "Spray Paint Can 52", + "itemId": "f7d2147ea6d445b8a3eb21323453a3da", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould7", + "sku": "pd3_cosmetic_spraycan_paint52", "namespace": "pd3", - "name": "Mask Mould 7", + "name": "Spray Paint Can 52", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:21:18.915Z" + "purchaseAt": "2023-02-17T14:31:05.279Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "InfamyLevel8", - "CharacterVendor" + "RarityEpic", + "CharacterVendor", + "InfamyLevel113" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:21:18.389Z", + "createdAt": "2023-02-17T14:31:05.268Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 8", - "itemId": "3a646df1cd1647a1a6b216658fae01be", + "title": "Spray Paint Can 53", + "itemId": "5c34b21724e141a4a0c6a626bc5d357e", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould8", + "sku": "pd3_cosmetic_spraycan_paint53", "namespace": "pd3", - "name": "Mask Mould 8", + "name": "Spray Paint Can 53", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:21:54.098Z" + "purchaseAt": "2023-02-17T14:32:22.278Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", + "RarityEpic", "CharacterVendor", - "InfamyLevel13" + "InfamyLevel115" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:21:53.570Z", + "createdAt": "2023-02-17T14:32:22.247Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould 9", - "itemId": "5348c2744eab4a5f870e52c079b2d1ab", + "title": "Spray Paint Can 54", + "itemId": "e35a676138584cc9a2edbefc8d4598e9", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould9", + "sku": "pd3_cosmetic_spraycan_paint54", "namespace": "pd3", - "name": "Mask Mould 9", + "name": "Spray Paint Can 54", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T16:22:33.714Z" + "purchaseAt": "2023-02-17T14:33:54.81Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "InfamyLevel19", - "CharacterVendor" + "RarityEpic", + "CharacterVendor", + "InfamyLevel121" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T16:22:33.194Z", + "createdAt": "2023-02-17T14:33:54.791Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 1", - "itemId": "8ee5ea28195b416abb49f31b94382f5f", - "sku": "pd3_cosmetic_mask_mould_remake_1", + "title": "Spray Paint Can 55", + "itemId": "f26db2ce40bc4bd38c2edcd1448d7ff2", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint55", "namespace": "pd3", - "name": "Mask Mould Remake 1", + "name": "Spray Paint Can 55", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-30T15:00:59.283Z", - "discountPurchaseAt": "2023-10-30T15:00:59.283Z" + "purchaseAt": "2023-02-17T14:35:09.705Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel122" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.432Z", + "createdAt": "2023-02-17T14:35:09.682Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 10", - "itemId": "b06e3ac0bc4d425dbb8f32d59f6d92a0", - "sku": "pd3_cosmetic_mask_mould_remake_10", + "title": "Spray Paint Can 56", + "itemId": "e13ae54cab014e3ca93a27610aa983ad", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint56", "namespace": "pd3", - "name": "Mask Mould Remake 10", + "name": "Spray Paint Can 56", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:14:11.217Z", - "discountPurchaseAt": "2023-10-31T15:14:11.217Z" + "purchaseAt": "2023-02-17T14:35:50.088Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel124" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.356Z", + "createdAt": "2023-02-17T14:35:50.063Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 11", - "itemId": "56703b0ad17c4b3b937a0f8a719ec78d", - "sku": "pd3_cosmetic_mask_mould_remake_11", + "title": "Spray Paint Can 57", + "itemId": "032c5a37ebcd4252803662c97105b509", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint57", "namespace": "pd3", - "name": "Mask Mould Remake 11", + "name": "Spray Paint Can 57", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:15:06.693Z", - "discountPurchaseAt": "2023-10-31T15:15:06.693Z" + "purchaseAt": "2023-02-17T14:36:37.598Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityEpic", + "CharacterVendor", + "InfamyLevel133" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.372Z", + "createdAt": "2023-02-17T14:36:37.583Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 2", - "itemId": "6666d42c3dd24edf8cc08affb36636c1", - "sku": "pd3_cosmetic_mask_mould_remake_2", + "title": "Spray Paint Can 58", + "itemId": "2f14f2ba237a4ffd9e37132f40bb1006", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint58", "namespace": "pd3", - "name": "Mask Mould Remake 2", + "name": "Spray Paint Can 58", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T08:48:36.468Z", - "discountPurchaseAt": "2023-10-31T08:48:36.468Z" + "purchaseAt": "2023-02-17T14:48:12.231Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "InfamyLevel141", + "RarityEpic", + "CharacterVendor" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.393Z", + "createdAt": "2023-02-17T14:48:12.216Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 3", - "itemId": "81b67d89240f48048c9b08dcc33f9c36", - "sku": "pd3_cosmetic_mask_mould_remake_3", + "title": "Spray Paint Can Colour 6", + "itemId": "064bb4d0713242aba6dba5666ba45747", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint6", "namespace": "pd3", - "name": "Mask Mould Remake 3", + "name": "Spray Paint Can 6", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:06:16.877Z", - "discountPurchaseAt": "2023-10-31T15:06:16.877Z" + "purchaseAt": "2022-11-24T14:00:57.553Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.380Z", + "createdAt": "2022-11-24T14:00:57.168Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 4", - "itemId": "9cee185cc53e441992aa590c682c6e1b", - "sku": "pd3_cosmetic_mask_mould_remake_4", + "title": "Spray Paint Can Colour 7", + "itemId": "df2f0a5f0bb141be95de1e6e959a4520", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint7", "namespace": "pd3", - "name": "Mask Mould Remake 4", + "name": "Spray Paint Can 7", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:07:18.921Z", - "discountPurchaseAt": "2023-10-31T15:07:18.921Z" + "purchaseAt": "2022-11-24T14:01:39.3Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.659Z", + "createdAt": "2022-11-24T14:01:38.934Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 5", - "itemId": "37887cbd98d44e23b9ba4f71e3596d75", - "sku": "pd3_cosmetic_mask_mould_remake_5", + "title": "Spray Paint Can Colour 8", + "itemId": "a52fbab8ac8b44f5bc935cf5082ac97c", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint8", "namespace": "pd3", - "name": "Mask Mould Remake 5", + "name": "Spray Paint Can 8", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:08:11.571Z", - "discountPurchaseAt": "2023-10-31T15:08:11.571Z" + "purchaseAt": "2022-11-24T14:02:21.272Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityCommon", + "CharacterVendor", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.659Z", + "createdAt": "2022-11-24T14:02:20.89Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 6", - "itemId": "6b5e62ea9201468c856975385cd5f34c", - "sku": "pd3_cosmetic_mask_mould_remake_6", + "title": "Spray Paint Can Colour 9", + "itemId": "90f2b5fd35d744aab1795dbdb8246cfd", + "baseAppId": "", + "sku": "pd3_cosmetic_spraycan_paint9", "namespace": "pd3", - "name": "Mask Mould Remake 6", + "name": "Spray Paint Can 9", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:11:18.201Z", - "discountPurchaseAt": "2023-10-31T15:11:18.201Z" + "purchaseAt": "2022-11-24T14:04:32.833Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "RarityUncommon", + "CharacterVendor", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.671Z", + "createdAt": "2022-11-24T14:04:32.448Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 7", - "itemId": "2fc6953d920a4718b76e9b3c0a3acf11", - "sku": "pd3_cosmetic_mask_mould_remake_7", + "title": "SprayCan_DigitalBills_01", + "itemId": "af05698e02344a239a7decf0c3789e88", + "baseAppId": "", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_01", "namespace": "pd3", - "name": "Mask Mould Remake 7", + "name": "SprayCan_DigitalBills_01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -18820,30 +44516,30 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:12:04.039Z", - "discountPurchaseAt": "2023-10-31T15:12:04.039Z" + "purchaseAt": "2024-05-03T05:34:10.071Z", + "discountPurchaseAt": "2024-05-03T05:34:10.071Z" } ], "itemQty": {}, - "tags": [], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.676Z", + "createdAt": "2024-05-03T05:34:10.97Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 8", - "itemId": "61bd236692cb42459bd31c651e3d8389", - "sku": "pd3_cosmetic_mask_mould_remake_8", + "title": "SprayCan_DigitalBills_02", + "itemId": "d1d79eabb55046f580519cb3b1c7fd77", + "baseAppId": "", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_02", "namespace": "pd3", - "name": "Mask Mould Remake 8", + "name": "SprayCan_DigitalBills_02", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -18857,30 +44553,30 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:12:56.825Z", - "discountPurchaseAt": "2023-10-31T15:12:56.825Z" + "purchaseAt": "2024-05-03T05:31:16.537Z", + "discountPurchaseAt": "2024-05-03T05:31:16.537Z" } ], "itemQty": {}, - "tags": [], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.718Z", + "createdAt": "2024-05-03T05:31:17.405Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Mould Remake 9", - "itemId": "14f0b55e00b040bc91a52c057e975599", - "sku": "pd3_cosmetic_mask_mould_remake_9", + "title": "SprayCan_DigitalBills_03", + "itemId": "ce935731f58946749982c4a2f3bd280c", + "baseAppId": "", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_03", "namespace": "pd3", - "name": "Mask Mould Remake 9", + "name": "SprayCan_DigitalBills_03", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -18894,1583 +44590,1444 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:13:40.968Z", - "discountPurchaseAt": "2023-10-31T15:13:40.968Z" + "purchaseAt": "2024-05-03T05:35:28.264Z", + "discountPurchaseAt": "2024-05-03T05:35:28.264Z" } ], "itemQty": {}, - "tags": [], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:54.966Z", + "createdAt": "2024-05-03T05:35:29.133Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern - Nebula", - "itemId": "056db958485a43f998c7d6330203240b", + "title": "SprayCan_DigitalBills_04", + "itemId": "f9ea36cef0734c348cc8eb24650f3343", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern_nebula", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_04", "namespace": "pd3", - "name": "Mask Pattern - Nebula", + "name": "SprayCan_DigitalBills_04", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:23:16.431Z", - "discountPurchaseAt": "2023-03-17T15:23:16.431Z" + "purchaseAt": "2024-05-03T05:36:30.167Z", + "discountPurchaseAt": "2024-05-03T05:36:30.167Z" } ], "itemQty": {}, "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:23:16.389Z", + "createdAt": "2024-05-03T05:36:31.054Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 1", - "itemId": "ede759055ae844f5a982050dde945d8c", + "title": "SprayCan_DigitalBills_05", + "itemId": "fc2fa6ff5432467fa3583dff2451a62e", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern1", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_05", "namespace": "pd3", - "name": "Mask Pattern 1", + "name": "SprayCan_DigitalBills_05", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:47:25.750Z" + "purchaseAt": "2024-05-03T05:37:28.192Z", + "discountPurchaseAt": "2024-05-03T05:37:28.192Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:47:25.169Z", + "createdAt": "2024-05-03T05:37:29.066Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 10", - "itemId": "a13af4f11286480e9334f16fdba1851c", + "title": "SprayCan_DigitalBills_06", + "itemId": "793d7b05d3b54793bd7a6d987011eb7b", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern10", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_06", "namespace": "pd3", - "name": "Mask Pattern 10", + "name": "SprayCan_DigitalBills_06", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 40000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 40000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:54:55.746Z" + "purchaseAt": "2024-05-03T05:38:44.905Z", + "discountPurchaseAt": "2024-05-03T05:38:44.905Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel96", - "RarityRare", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:54:55.158Z", + "createdAt": "2024-05-03T05:38:45.774Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 11", - "itemId": "1bc5cd579dd84947ab866c2987c68632", + "title": "SprayCan_DigitalBills_07", + "itemId": "f4057bb92cbb46c0b4e62e8eeda28752", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern11", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_07", "namespace": "pd3", - "name": "Mask Pattern 11", + "name": "SprayCan_DigitalBills_07", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 40000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 40000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:55:42.050Z" + "purchaseAt": "2024-05-03T05:39:41.994Z", + "discountPurchaseAt": "2024-05-03T05:39:41.994Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel108", - "RarityRare", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:55:41.460Z", + "createdAt": "2024-05-03T05:39:42.866Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 12", - "itemId": "4e7f003d36884c468c60a453d968c2ec", + "title": "SprayCan_DigitalBills_08", + "itemId": "5afe34abefbf413c8e8e682ee4ae7079", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern12", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_08", "namespace": "pd3", - "name": "Mask Pattern 12", + "name": "SprayCan_DigitalBills_08", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:57:24.001Z" + "purchaseAt": "2024-05-03T05:40:42.232Z", + "discountPurchaseAt": "2024-05-03T05:40:42.232Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel118", - "RarityEpic", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:57:23.411Z", + "createdAt": "2024-05-03T05:40:43.1Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 13", - "itemId": "7b2f99e149ed4593b4e1113151a6b04b", + "title": "SprayCan_DigitalBills_09", + "itemId": "39371e7c919f4ef4b2f4f765fe2b662c", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern13", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_09", "namespace": "pd3", - "name": "Mask Pattern 13", + "name": "SprayCan_DigitalBills_09", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:58:04.096Z" + "purchaseAt": "2024-05-03T05:42:36.596Z", + "discountPurchaseAt": "2024-05-03T05:42:36.596Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel129", - "RarityEpic", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:58:03.504Z", + "createdAt": "2024-05-03T05:42:37.465Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 14", - "itemId": "ddea80f08c624c559f0dca2e16e51bf8", + "title": "SprayCan_DigitalBills_01", + "itemId": "c6a9a3ab01bd4e3e951e841f4f001dd5", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern14", + "sku": "pd3_cosmetic_levelup_reward_spct_bills_10", "namespace": "pd3", - "name": "Mask Pattern 14", + "name": "SprayCan_DigitalBills_10", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:58:42.216Z" + "purchaseAt": "2024-05-03T05:29:47.884Z", + "discountPurchaseAt": "2024-05-03T05:29:47.885Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel140", - "RarityEpic", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:58:41.621Z", + "createdAt": "2024-05-03T05:29:48.789Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 2", - "itemId": "0f0504a1378c493bb18ea78c7260f008", + "title": "SprayCan_DigitalCamo_01", + "itemId": "c6331e17b78f46acb8408c4163d0f6b5", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern2", + "sku": "pd3_cosmetic_renown_spct_camo_01", "namespace": "pd3", - "name": "Mask Pattern 2", + "name": "SprayCan_DigitalCamo_01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:49:20.140Z" + "purchaseAt": "2024-01-10T14:46:40.888Z", + "discountPurchaseAt": "2024-01-10T14:46:40.888Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:49:19.557Z", + "createdAt": "2024-01-10T14:46:40.092Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 3", - "itemId": "45387e45c9094de8a256f0f0d7f8f716", + "title": "SprayCan_DigitalCamo_02", + "itemId": "2942f6a5b630486c90390536829fe0ae", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern3", + "sku": "pd3_cosmetic_renown_spct_camo_02", "namespace": "pd3", - "name": "Mask Pattern 3", + "name": "SprayCan_DigitalCamo_02", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:50:03.868Z" + "purchaseAt": "2024-01-10T14:48:15.398Z", + "discountPurchaseAt": "2024-01-10T14:48:15.398Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:50:03.280Z", + "createdAt": "2024-01-10T14:48:14.402Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 4", - "itemId": "2ad41c0f43be4fb3b20402f6189c9030", + "title": "SprayCan_DigitalCamo_03", + "itemId": "d297a43de4de49ef95826a9f5fec05f0", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern4", + "sku": "pd3_cosmetic_renown_spct_camo_03", "namespace": "pd3", - "name": "Mask Pattern 4", + "name": "SprayCan_DigitalCamo_03", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:50:59.219Z" + "purchaseAt": "2024-01-10T14:49:45.026Z", + "discountPurchaseAt": "2024-01-10T14:49:45.026Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:50:58.635Z", + "createdAt": "2024-01-10T14:49:44.027Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 5", - "itemId": "7f5fb8d48d204a6182bc62cb4f43e83a", + "title": "SprayCan_DigitalCamo_04", + "itemId": "f93ac2c5d4f848d28282ee5f27785924", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern5", + "sku": "pd3_cosmetic_renown_spct_camo_04", "namespace": "pd3", - "name": "Mask Pattern 5", + "name": "SprayCan_DigitalCamo_04", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 25000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 25000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:51:37.806Z" + "purchaseAt": "2024-01-10T14:50:34.081Z", + "discountPurchaseAt": "2024-01-10T14:50:34.081Z" } ], "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InfamyLevel11" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:51:37.218Z", + "createdAt": "2024-01-10T14:50:33.069Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 6", - "itemId": "3ee5761e930c4f40968ce5d2f2e60563", + "title": "SprayCan_DigitalCamo_05", + "itemId": "43747c3bfd2b44b18a0348d9a237c598", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern6", + "sku": "pd3_cosmetic_renown_spct_camo_05", "namespace": "pd3", - "name": "Mask Pattern 6", + "name": "SprayCan_DigitalCamo_05", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 25000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 25000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:52:12.731Z" + "purchaseAt": "2024-01-10T14:51:35.127Z", + "discountPurchaseAt": "2024-01-10T14:51:35.127Z" } ], "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InfamyLevel24" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:52:12.144Z", + "createdAt": "2024-01-10T14:51:34.119Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 7", - "itemId": "dbea9856629444d3b0051090fb1e681b", + "title": "SprayCan_DigitalCamo_06", + "itemId": "8984265643c64a86a1537760f9ad6cfc", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern7", + "sku": "pd3_cosmetic_renown_spct_camo_06", "namespace": "pd3", - "name": "Mask Pattern 7", + "name": "SprayCan_DigitalCamo_06", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 25000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 25000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:52:44.763Z" + "purchaseAt": "2024-01-10T14:52:20.233Z", + "discountPurchaseAt": "2024-01-10T14:52:20.233Z" } ], "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InfamyLevel44" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:52:44.187Z", + "createdAt": "2024-01-10T14:52:19.228Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 8", - "itemId": "a136a7ae2722471ca671793a3a12d55c", + "title": "SprayCan_DigitalCamo_07", + "itemId": "b83f8574bb694c9cbdd9a14291380a2a", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern8", + "sku": "pd3_cosmetic_renown_spct_camo_07", "namespace": "pd3", - "name": "Mask Pattern 8", + "name": "SprayCan_DigitalCamo_07", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 25000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 25000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:53:24.403Z" + "purchaseAt": "2024-01-10T14:53:58.321Z", + "discountPurchaseAt": "2024-01-10T14:53:58.321Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel63", - "RarityUncommon", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:53:23.817Z", + "createdAt": "2024-01-10T14:53:57.299Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Pattern 9", - "itemId": "93d9e2a2a9af4853b03f19e2cca080ba", + "title": "SprayCan_DigitalCamo_08", + "itemId": "f673af3f66a247128a2691bb0c627535", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pattern9", + "sku": "pd3_cosmetic_renown_spct_camo_08", "namespace": "pd3", - "name": "Mask Pattern 9", + "name": "SprayCan_DigitalCamo_08", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/MaskPattern", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 40000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 40000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T17:54:02.203Z" + "purchaseAt": "2024-01-10T14:54:43.641Z", + "discountPurchaseAt": "2024-01-10T14:54:43.641Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel83", - "RarityRare", - "CharacterVendor" - ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T17:54:01.614Z", + "createdAt": "2024-01-10T14:54:42.63Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Mask Preset Dallas", - "itemId": "c915b86dab154ea2a8bb98403ceb89e7", + "title": "SprayCan_DigitalCamo_09", + "itemId": "f559790b81ac47a5ac8873d3950fcaa1", "baseAppId": "", - "sku": "pd3_mask_preset_dallas", + "sku": "pd3_cosmetic_renown_spct_camo_09", "namespace": "pd3", - "name": "Mask Preset Dallas", - "entitlementType": "DURABLE", - "categoryPath": "/MaskPreset", + "name": "SprayCan_DigitalCamo_09", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15, - "currencyCode": "CRED", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-19T13:37:40.999Z", - "discountPurchaseAt": "2023-01-19T13:37:40.999Z" + "purchaseAt": "2024-01-10T14:55:28.411Z", + "discountPurchaseAt": "2024-01-10T14:55:28.411Z" } ], "itemQty": {}, - "tags": [], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-19T13:37:40.112Z", + "createdAt": "2024-01-10T14:55:27.381Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Medic Bag", - "itemId": "240c44b803d744f28e56a95a2a8c0a08", + "title": "SprayCan_DigitalCamo_10", + "itemId": "016c9db842934de8a81316d9e9d5351b", "baseAppId": "", - "sku": "pd3_placeable_medicbag", + "sku": "pd3_cosmetic_renown_spct_camo_10", "namespace": "pd3", - "name": "Medic Bag", + "name": "SprayCan_DigitalCamo_10", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/Placeable", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-01-10T14:56:10.816Z", + "discountPurchaseAt": "2024-01-10T14:56:10.816Z" } ], "itemQty": {}, - "tags": [], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-02-04T15:55:46.259Z", + "createdAt": "2024-01-10T14:56:09.79Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Health Bag preplanning asset", - "itemId": "340a890d972d47b5adfacdf5ef854f2c", + "title": "SprayCan_DigitalGraffiti_01", + "itemId": "c3ead400f6324018bf19e6f0fcd53dd3", "baseAppId": "", - "sku": "pd3_preplanning_uni_medicbag", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_01", "namespace": "pd3", - "name": "Medic Bag universal preplanning asset", + "name": "SprayCan_DigitalGraffiti_01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:22:32.406Z", + "discountPurchaseAt": "2024-05-02T15:22:32.406Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "CombatEquipmentVendor", - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-03T14:30:54.470Z", + "createdAt": "2024-05-02T15:22:32.793Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "More Explosives Cargo Dock Preplanning asset", - "itemId": "b91465e2dc624101a3d157305637bbda", + "title": "SprayCan_DigitalGraffiti_02", + "itemId": "def6f18b1c5544f9aa1b5d1cccd14f99", "baseAppId": "", - "sku": "pd3_preplanning_cargodock_3", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_02", "namespace": "pd3", - "name": "More Explosives Cargo Dock Preplanning asset", + "name": "SprayCan_DigitalGraffiti_02", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:27:38.312Z", + "discountPurchaseAt": "2024-05-02T15:27:38.312Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:27:44.397Z", + "createdAt": "2024-05-02T15:27:38.67Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "More Planks Armored Transport Preplanning asset", - "itemId": "0441acf170484c509bcb2c7869170403", + "title": "SprayCan_DigitalGraffiti_03", + "itemId": "e613dba82df2463e8f1ba006f6bbdf0a", "baseAppId": "", - "sku": "pd3_preplanning_armoredtransport_4", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_03", "namespace": "pd3", - "name": "More Planks Armored Transport Preplanning asset", + "name": "SprayCan_DigitalGraffiti_03", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:25:38.942Z", + "discountPurchaseAt": "2024-05-02T15:25:38.942Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:21:41.992Z", + "createdAt": "2024-05-02T15:25:39.295Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "More Thermite Branch Bank Preplanning asset", - "itemId": "ec4f15db42d54fdfa1a4716d3e880aaf", + "title": "SprayCan_DigitalGraffiti_04", + "itemId": "80f1df62080b4c188361c14e6980213f", "baseAppId": "", - "sku": "pd3_preplanning_branchbank_4", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_04", "namespace": "pd3", - "name": "More Thermite Branch Bank Preplanning asset", + "name": "SprayCan_DigitalGraffiti_04", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:28:55.729Z", + "discountPurchaseAt": "2024-05-02T15:28:55.729Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:18:16.144Z", + "createdAt": "2024-05-02T15:28:56.092Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Open Door Art Gallery Preplanning asset", - "itemId": "d1a8dbc374684db69970fb9655af3e98", + "title": "SprayCan_DigitalGraffiti_05", + "itemId": "5ef331d7d4d249d29254f3add8b8e2dc", "baseAppId": "", - "sku": "pd3_preplanning_artgallery_3", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_05", "namespace": "pd3", - "name": "Open Door Art Gallery Preplanning asset", + "name": "SprayCan_DigitalGraffiti_05", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/PreplanningAssets", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:29:54.257Z", + "discountPurchaseAt": "2024-05-02T15:29:54.257Z" } ], "itemQty": {}, - "tags": [ - "PreplanningAsset", - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:02:39.376Z", + "createdAt": "2024-05-02T15:29:54.621Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Overkill HET5", - "itemId": "478952d6ba3a4a10ac4cb85c453dc94a", + "title": "SprayCan_DigitalGraffiti_06", + "itemId": "af913ff2353e4b72b77cf37b755f4576", "baseAppId": "", - "sku": "pd3_wpn_overkill_het5", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_06", "namespace": "pd3", - "name": "Overkill HET5", + "name": "SprayCan_DigitalGraffiti_06", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Overkill", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:30:52.723Z", + "discountPurchaseAt": "2024-05-02T15:30:52.723Z" } ], "itemQty": {}, - "tags": [], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-04T08:55:52.234Z", + "createdAt": "2024-05-02T15:30:53.077Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Overkill M32A1 MGL", - "itemId": "a9a0f8e060cf4be79aba8ce9ca95ae4c", + "title": "SprayCan_DigitalGraffiti_07", + "itemId": "887fa639b6284cba90cfd879e94d6db3", "baseAppId": "", - "sku": "pd3_wpn_overkill_mamba", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_07", "namespace": "pd3", - "name": "Overkill M32A1 MGL", + "name": "SprayCan_DigitalGraffiti_07", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/Overkill", + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-05-02T15:31:39.266Z", + "discountPurchaseAt": "2024-05-02T15:31:39.266Z" } ], "itemQty": {}, - "tags": [ - "InitialItem" - ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-04-19T11:37:16.506Z", + "createdAt": "2024-05-02T15:31:39.62Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 1", - "itemId": "27475b7fe3684a2284dde6785dd448a3", + "title": "SprayCan_DigitalGraffiti_08", + "itemId": "35f893a4fa46485086e9a5982cbd5e35", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo1", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_08", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 1", + "name": "SprayCan_DigitalGraffiti_08", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", - "images": [ - { - "as": "Very Hard Skull", - "caption": "Icon_Charm_Skull_VeryHard (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/7b0806e22bb04ab8b1eb20676fe6665c.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/2d68c537c0bb4201a153d7c96497917f.png" - } - ], "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-05T18:43:41.367Z", - "discountPurchaseAt": "2023-09-05T18:43:41.367Z" + "purchaseAt": "2024-05-02T15:32:51.283Z", + "discountPurchaseAt": "2024-05-02T15:32:51.283Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:43:39.692Z", + "createdAt": "2024-05-02T15:32:51.639Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 2", - "itemId": "588ed18073384fa08ec67a67393274b2", + "title": "SprayCan_DigitalGraffiti_09", + "itemId": "b4ec16256fdc4a5a8a4ef4be2dd76c3c", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo2", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_09", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 2", + "name": "SprayCan_DigitalGraffiti_09", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:25:08.170Z", - "discountPurchaseAt": "2023-09-06T05:25:08.170Z" + "purchaseAt": "2024-05-02T15:33:42.772Z", + "discountPurchaseAt": "2024-05-02T15:33:42.772Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:25:04.603Z", + "createdAt": "2024-05-02T15:33:43.128Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 3", - "itemId": "add07f37d0a541d491d28bd29e5e7090", + "title": "SprayCan_DigitalGraffiti_10", + "itemId": "507124a3ee644b82b04b7a5b933ba93e", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo3", + "sku": "pd3_cosmetic_levelup_reward_spct_graffiti_10", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 3", + "name": "SprayCan_DigitalGraffiti_10", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:29:48.929Z", - "discountPurchaseAt": "2023-09-06T05:29:48.929Z" + "purchaseAt": "2024-05-02T15:34:42.115Z", + "discountPurchaseAt": "2024-05-02T15:34:42.115Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:29:45.332Z", + "createdAt": "2024-05-02T15:34:42.473Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 4", - "itemId": "0255706e51534e7e815fa42de81bdb06", + "title": "SprayCan_LevelUp_DigitalCamo_01", + "itemId": "f04ad75683f0425ba88dcd64e04f46f7", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo4", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_01", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 4", + "name": "SprayCan_LevelUp_DigitalCamo_01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:36:48.445Z", - "discountPurchaseAt": "2023-09-06T05:36:48.445Z" + "purchaseAt": "2024-05-03T05:49:42.309Z", + "discountPurchaseAt": "2024-05-03T05:49:42.309Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:36:44.844Z", + "createdAt": "2024-05-03T05:49:43.179Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 5", - "itemId": "4cfaad3c4c8549fcaa6044e58c28622e", + "title": "SprayCan_LevelUp_DigitalCamo_02", + "itemId": "24f6d7d0b8b74613a500c6520b226b09", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo5", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_02", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 5", + "name": "SprayCan_LevelUp_DigitalCamo_02", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:40:43.268Z", - "discountPurchaseAt": "2023-09-06T05:40:43.268Z" + "purchaseAt": "2024-05-03T05:50:53.551Z", + "discountPurchaseAt": "2024-05-03T05:50:53.551Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityEpic" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:40:39.621Z", + "createdAt": "2024-05-03T05:50:54.435Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Charm 6", - "itemId": "aecd11f54e1c41c8847e471ad20f61f4", + "title": "SprayCan_LevelUp_DigitalCamo_03", + "itemId": "6c1a6e6c47bf4415b480d62c00d82ae6", "baseAppId": "", - "sku": "pd3_epic_cosmetic_weapon_charm_pd2promo6", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_03", "namespace": "pd3", - "name": "PD2 Epic Promo Charm 6", + "name": "SprayCan_LevelUp_DigitalCamo_03", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:44:53.495Z", - "discountPurchaseAt": "2023-09-06T05:44:53.495Z" + "purchaseAt": "2024-05-03T05:51:46.919Z", + "discountPurchaseAt": "2024-05-03T05:51:46.919Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityEpic" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:44:49.819Z", + "createdAt": "2024-05-03T05:51:47.792Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Gloves", - "itemId": "f1739c37588849b28d98a7e57f643fa3", + "title": "SprayCan_LevelUp_DigitalCamo_04", + "itemId": "7f5c7d04b0ff420b9f901a9d3ca28c95", "baseAppId": "", - "sku": "pd3_epic_cosmetic_accessory_gloves_pd2promo", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_04", "namespace": "pd3", - "name": "PD2 Epic Promo Gloves", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "SprayCan_LevelUp_DigitalCamo_04", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:19:16.160Z", - "discountPurchaseAt": "2023-09-06T06:19:16.160Z" + "purchaseAt": "2024-05-03T05:53:22.687Z", + "discountPurchaseAt": "2024-05-03T05:53:22.687Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare", - "Premium" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:19:12.381Z", + "createdAt": "2024-05-03T05:53:23.563Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Mask", - "itemId": "206a86e1daed495dbcbc1932a3adccd6", + "title": "SprayCan_LevelUp_DigitalCamo_05", + "itemId": "75f8463a62774a35aebfa7a31bf0156f", "baseAppId": "", - "sku": "pd3_epic_cosmetic_mask_pd2promo", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_05", "namespace": "pd3", - "name": "PD2 Epic Promo Mask", - "entitlementType": "DURABLE", - "categoryPath": "/MaskMould", + "name": "SprayCan_LevelUp_DigitalCamo_05", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:44:51.124Z", - "discountPurchaseAt": "2023-09-06T06:44:51.124Z" + "purchaseAt": "2024-05-03T05:54:21.202Z", + "discountPurchaseAt": "2024-05-03T05:54:21.202Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityEpic", - "Premium" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:44:47.285Z", + "createdAt": "2024-05-03T05:54:22.089Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Epic Promo Suit", - "itemId": "10df6d973bbd4d6caf5e7a454157f4b0", + "title": "SprayCan_LevelUp_DigitalCamo_06", + "itemId": "5d1da8a4d6d0462ca6d283e0a4f59f2e", "baseAppId": "", - "sku": "pd3_epic_cosmetic_suit_pd2promo", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_06", "namespace": "pd3", - "name": "PD2 Epic Promo Suit", - "entitlementType": "DURABLE", - "categoryPath": "/Suit", + "name": "SprayCan_LevelUp_DigitalCamo_06", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:33:46.642Z", - "discountPurchaseAt": "2023-09-06T06:33:46.642Z" + "purchaseAt": "2024-05-03T05:55:09.808Z", + "discountPurchaseAt": "2024-05-03T05:55:09.808Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "Epic", - "RarityRare", - "Premium" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:33:42.858Z", + "createdAt": "2024-05-03T05:55:10.685Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 1", - "itemId": "b8c93f7de0c94d33a88d2c5184dab00c", + "title": "SprayCan_LevelUp_DigitalCamo_07", + "itemId": "adcab4ed4bec451b930a6862bd3e6016", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo1", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_07", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 1", + "name": "SprayCan_LevelUp_DigitalCamo_07", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", - "images": [ - { - "as": "Very Hard Skull", - "caption": "Icon_Charm_Skull_VeryHard.png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/465e1e72338f4f8781023b9b591575cc.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/29b8587f49464e52b6ee45e0d54cf034.png" - } - ], "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-05T18:42:38.602Z", - "discountPurchaseAt": "2023-09-05T18:42:38.602Z" + "purchaseAt": "2024-05-03T05:57:37.316Z", + "discountPurchaseAt": "2024-05-03T05:57:37.316Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "PlayStation", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:42:36.927Z", + "createdAt": "2024-05-03T05:57:38.216Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 2", - "itemId": "84037598ee714419a7664eb5211e5d26", + "title": "SprayCan_LevelUp_DigitalCamo_08", + "itemId": "f5ce922cb3854cca8b8ebbb2b1c6c749", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo2", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_08", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 2", + "name": "SprayCan_LevelUp_DigitalCamo_08", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:24:12.826Z", - "discountPurchaseAt": "2023-09-06T05:24:12.826Z" + "purchaseAt": "2024-05-03T05:58:37.209Z", + "discountPurchaseAt": "2024-05-03T05:58:37.209Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "PlayStation", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:24:09.282Z", + "createdAt": "2024-05-03T05:58:38.102Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 3", - "itemId": "98b49682be6f432cbea26d2d159e348a", + "title": "SprayCan_LevelUp_DigitalCamo_09", + "itemId": "b5c9014cb5d149d99c80c95d36d6a870", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo3", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_09", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 3", + "name": "SprayCan_LevelUp_DigitalCamo_09", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:28:53.940Z", - "discountPurchaseAt": "2023-09-06T05:28:53.940Z" + "purchaseAt": "2024-05-03T05:59:49.642Z", + "discountPurchaseAt": "2024-05-03T05:59:49.642Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "PlayStation", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:28:50.385Z", + "createdAt": "2024-05-03T05:59:50.527Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 4", - "itemId": "a5fe3dcca97245419b349f50bb189f6c", + "title": "SprayCan_LevelUp_DigitalCamo_10", + "itemId": "539cea47a6894a568dbe7d0fb095167f", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo4", + "sku": "pd3_cosmetic_levelup_reward_spct_camo_10", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 4", + "name": "SprayCan_LevelUp_DigitalCamo_10", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/SprayPaint", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:35:36.336Z", - "discountPurchaseAt": "2023-09-06T05:35:36.336Z" + "purchaseAt": "2024-05-03T06:01:08.556Z", + "discountPurchaseAt": "2024-05-03T06:01:08.556Z" } ], "itemQty": {}, - "tags": [ - "PlatformOnly", - "PlayStation", - "RarityRare" - ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:35:32.720Z", + "createdAt": "2024-05-03T06:01:09.439Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 5", - "itemId": "6b8203a3f2144fc4aa04776db98a8818", + "title": "Steam AssaultRifle CHS3", + "itemId": "66124c84cd75421b854895b3135cb2be", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo5", + "sku": "pd3_steam_wpn_assaultrifle_chs3", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 5", + "name": "Steam AssaultRifle CHS3", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:39:42.504Z", - "discountPurchaseAt": "2023-09-06T05:39:42.504Z" + "purchaseAt": "2024-06-24T13:05:46.132Z", + "discountPurchaseAt": "2024-06-24T13:05:46.132Z" } ], "itemQty": {}, "tags": [ "PlatformOnly", - "PlayStation", - "RarityEpic" + "CombatEquipmentVendor", + "Steam", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:39:38.873Z", + "createdAt": "2024-06-24T13:05:27.625Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Charm 6", - "itemId": "d815e8fe7d2d4901bcd57d6e98f85219", + "title": "Steam AssaultRifle CHS3 - Vendor Item", + "itemId": "bd740bf3419744bd88cf7cccd7ba5719", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_pd2promo6", + "sku": "pd3_steam_wpn_assaultrifle_chs3_vendor", "namespace": "pd3", - "name": "PD2 PlayStation Promo Charm 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam AssaultRifle CHS3 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -20481,74 +46038,80 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:44:00.763Z", - "discountPurchaseAt": "2023-09-06T05:44:00.763Z" + "purchaseAt": "2024-06-24T13:14:48.38Z", + "discountPurchaseAt": "2024-06-24T13:14:48.38Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "82e5cb4b9aa44e82ae5bb6b9875f0338" + ], "tags": [ "PlatformOnly", - "PlayStation", - "RarityEpic" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:43:57.111Z", + "createdAt": "2024-06-24T13:14:29.872Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Gloves", - "itemId": "25a3807a831e4855a54283e777865af8", + "title": "Steam AssaultRifle RG5", + "itemId": "6c3ebc368b9346f0b996e24ba8ab0c15", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_accessory_gloves_pd2promo", + "sku": "pd3_steam_wpn_assaultrifle_rg5", "namespace": "pd3", - "name": "PD2 PlayStation Promo Gloves", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Steam AssaultRifle RG5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:18:22.360Z", - "discountPurchaseAt": "2023-09-06T06:18:22.360Z" + "purchaseAt": "2024-02-14T12:28:45.384Z" } ], "itemQty": {}, "tags": [ "PlatformOnly", - "PlayStation", - "RarityRare", - "Premium" + "CombatEquipmentVendor", + "Steam", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:18:18.601Z", + "createdAt": "2024-02-14T12:28:46.134Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Mask", - "itemId": "631b5bb263c04c33ae6ad3f3d4e3696e", + "title": "Steam AssaultRifle RG5 - Vendor Item ", + "itemId": "340c23aa3d27499d801a89d1daf917ce", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_mask_pd2promo", + "sku": "pd3_steam_wpn_assaultrifle_rg5_vendor", "namespace": "pd3", - "name": "PD2 PlayStation Promo Mask", + "name": "Steam AssaultRifle RG5 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/MaskMould", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -20562,91 +46125,83 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:44:07.212Z", - "discountPurchaseAt": "2023-09-06T06:44:07.212Z" + "purchaseAt": "2024-02-14T12:40:24.433Z", + "discountPurchaseAt": "2024-02-14T12:40:24.433Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "16eb187877eb4b7da217b0d5698a8aa9" + ], "tags": [ "PlatformOnly", - "PlayStation", - "RarityEpic", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:44:03.353Z", + "createdAt": "2024-02-14T12:40:25.211Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 PlayStation Promo Suit", - "itemId": "995619ddfd7e42dfb895cc2326ac334f", + "title": "Steam Character Star", + "itemId": "336b825486b8492aa76796a6737a177e", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_suit_pd2promo", + "sku": "pd3_steam_character_star", "namespace": "pd3", - "name": "PD2 PlayStation Promo Suit", + "name": "Steam Character Star", "entitlementType": "DURABLE", - "categoryPath": "/Suit", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 999, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:32:59.669Z", - "discountPurchaseAt": "2023-09-06T06:32:59.669Z" + "purchaseAt": "2024-08-28T13:45:35.169Z", + "discountPurchaseAt": "2024-08-28T13:45:35.169Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5b71e18ebdd441b9cb2c0ac0cd9e7c9" + ], "tags": [ "PlatformOnly", - "PlayStation", - "RarityRare", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:32:55.888Z", + "createdAt": "2024-08-28T13:45:33.973Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 1", - "itemId": "2cffe14329c64be5b423de391c2955cd", + "title": "Steam DLC01 Heist pack", + "itemId": "f7bb2ffd415b4e39be0c09ebb6736b9a", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo1", + "sku": "pd3_steam_dlc01_heist_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC01 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Very Hard Skull", - "caption": "Icon_Charm_Skull_VeryHard.png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/fcdc9d2c01514fb3b8cc14a5ee3afd55.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/c6dfd2c22f5143f0a4a049802f741d12.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20656,47 +46211,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:18:12.522Z", - "discountPurchaseAt": "2023-02-22T14:18:12.522Z" + "purchaseAt": "2023-11-10T13:42:12.625Z", + "discountPurchaseAt": "2023-11-10T13:42:12.625Z" } ], - "itemQty": {}, + "itemIds": [ + "9b3e2be8772e4674bb85dc28f533924e" + ], + "itemQty": { + "9b3e2be8772e4674bb85dc28f533924e": 1 + }, "tags": [ - "PlatformOnly" + "PlatformOnly", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:18:12.495Z", + "createdAt": "2023-11-10T13:42:07.781Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 2", - "itemId": "3841d23ab0c14d518ce13d70c03443fe", + "title": "Steam DLC01 Tailor pack", + "itemId": "9f7a29d54a5c4e20a8c8176c7b1ecf01", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo2", + "sku": "pd3_steam_dlc01_tailor_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC01 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Overkill Skull", - "caption": "Icon_Charm_Skull_Overkill.png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/4480186218bb41afb84c68fd948e2ba5.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3ab165e0c6284e32b8239a15b21a0f34.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20706,47 +46255,64 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:31:40.734Z", - "discountPurchaseAt": "2023-02-22T14:31:40.734Z" + "purchaseAt": "2023-11-15T14:52:44.586Z", + "discountPurchaseAt": "2023-11-15T14:52:44.586Z" } ], - "itemQty": {}, + "itemIds": [ + "1cbbb9441d8b4b0c90dc1ccc788f513d", + "46093ee8374149a3a213d8e71c6eb133", + "2d5b8b20c9a94614bc0a14921e570930", + "3030cd162d6b47ccad5e44403ccc7b35", + "7d4b37f472c040c58a388527579f5704", + "36d2557e1a344a62bb52c52201eaa1bc", + "47f3fb495bb944a68230e21759b29ee9", + "a5fbc130a37046059af2b93df1496e29", + "57596dc1166e4cc7933f0f866d39872d", + "eb9eddc16a6b421f80d2c3d2f36229c5", + "09d5e836e5a041d7a73d5e4a6782d12b", + "8e93faab93644527a7682a49ddb71196" + ], + "itemQty": { + "3030cd162d6b47ccad5e44403ccc7b35": 1, + "1cbbb9441d8b4b0c90dc1ccc788f513d": 1, + "2d5b8b20c9a94614bc0a14921e570930": 1, + "8e93faab93644527a7682a49ddb71196": 1, + "46093ee8374149a3a213d8e71c6eb133": 1, + "eb9eddc16a6b421f80d2c3d2f36229c5": 1, + "7d4b37f472c040c58a388527579f5704": 1, + "47f3fb495bb944a68230e21759b29ee9": 1, + "36d2557e1a344a62bb52c52201eaa1bc": 1, + "a5fbc130a37046059af2b93df1496e29": 1, + "57596dc1166e4cc7933f0f866d39872d": 1, + "09d5e836e5a041d7a73d5e4a6782d12b": 1 + }, "tags": [ - "RarityRare" + "PlatformOnly", + "Steam", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:31:40.707Z", + "createdAt": "2023-11-15T14:52:30.079Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 3", - "itemId": "7254522dd58e4f8cbb939b89496fa31b", + "title": "Steam DLC01 Weapon pack ", + "itemId": "1cdb0fddde344c0ea9ae09ee408e66d7", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo3", + "sku": "pd3_steam_dlc01_weapon_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC01 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Mayhem Skull", - "caption": "Icon_Charm_Skull_Mayhem (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/8a54770890fc4dada1d4f779db899e40.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/0a62ff59642445a98f5b0bf4786452e2.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20756,48 +46322,51 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:33:01.891Z", - "discountPurchaseAt": "2023-02-22T14:33:01.891Z" + "purchaseAt": "2023-11-10T13:15:17.788Z", + "discountPurchaseAt": "2023-11-10T13:15:17.788Z" } ], - "itemQty": {}, + "itemIds": [ + "e3db751853eb4243b797965e6a675e33", + "76fb37baed294bb8a8bb1d8a7220d029", + "6c23ab06ee8840f2902cdc0d32266f18", + "db016db364ee4309a33672b370535c6a", + "40871e8526f84829b96a25313ea213d3", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "40871e8526f84829b96a25313ea213d3": 1, + "e3db751853eb4243b797965e6a675e33": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 3, + "6c23ab06ee8840f2902cdc0d32266f18": 1, + "76fb37baed294bb8a8bb1d8a7220d029": 1, + "db016db364ee4309a33672b370535c6a": 1 + }, "tags": [ - "RarityRare", - "Premium" + "PlatformOnly", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:33:01.885Z", + "createdAt": "2023-11-10T13:15:13.247Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 4", - "itemId": "e4d7af8a113548bc8b184d66fdf4bcc6", + "title": "Steam DLC02 Heist pack", + "itemId": "d9b299caae7e4620b17e961243e3aea6", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo4", + "sku": "pd3_steam_dlc02_heist_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC02 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Death Wish Skull", - "caption": "Icon_Charm_Skull_DeathWish (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/03dbdd51f55e49eaa1aa4952044c5539.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3c244ea56ed2468d929b46ceae30c9a6.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20807,48 +46376,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:34:29.163Z", - "discountPurchaseAt": "2023-02-22T14:34:29.163Z" + "purchaseAt": "2024-05-21T13:30:51.701Z", + "discountPurchaseAt": "2024-05-21T13:30:51.701Z" } ], - "itemQty": {}, + "itemIds": [ + "ebecba276c3342b481c434da16d69a5f" + ], + "itemQty": { + "ebecba276c3342b481c434da16d69a5f": 1 + }, "tags": [ - "RarityRare", - "Premium" + "PlatformOnly", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:34:29.122Z", + "createdAt": "2024-05-21T13:30:51.231Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 5", - "itemId": "fcc48b191d434526804c18c17bd638d2", + "title": "Steam DLC02 Tailor pack", + "itemId": "a726b9c47e9546a3bfab010b448c8b41", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo5", + "sku": "pd3_steam_dlc02_tailor_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC02 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Death Sentence Skull", - "caption": "Icon_Charm_DeathSentence (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/046df7664ef24518ab17f916573164a4.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/b64be546db534e36bc3d3184688d365e.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20858,48 +46420,63 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:36:45.312Z", - "discountPurchaseAt": "2023-02-22T14:36:45.312Z" + "purchaseAt": "2024-03-06T14:02:19.464Z", + "discountPurchaseAt": "2024-03-06T14:02:19.464Z" } ], - "itemQty": {}, + "itemIds": [ + "8a5735aeea2c4d0caee2c08590345ad3", + "90704d5499664cbcbee0077aa4cee500", + "f0d93dd993de4264bc176e1a3c9e4665", + "deba500d01ad4edd87b61cbaeb9871ea", + "f03326c29b8c41d8830cb223fc546fc5", + "2ab11476f72e481aa90c707cbb6163ae", + "db96930d512645238d191f3e379c423a", + "45aa8cb1b45b4cc0904a64f4cb765574", + "f8a570f007c6499e80056a075b987de9", + "9f189fc992204b73a17ed9d9c07861ff", + "d06db2883e0d4d26ae078f82e40ec5a4", + "9d807388b7464a9bafc03b05cc08e6dc" + ], + "itemQty": { + "deba500d01ad4edd87b61cbaeb9871ea": 1, + "f0d93dd993de4264bc176e1a3c9e4665": 1, + "f03326c29b8c41d8830cb223fc546fc5": 1, + "8a5735aeea2c4d0caee2c08590345ad3": 1, + "d06db2883e0d4d26ae078f82e40ec5a4": 1, + "9f189fc992204b73a17ed9d9c07861ff": 1, + "90704d5499664cbcbee0077aa4cee500": 1, + "2ab11476f72e481aa90c707cbb6163ae": 1, + "9d807388b7464a9bafc03b05cc08e6dc": 1, + "db96930d512645238d191f3e379c423a": 1, + "f8a570f007c6499e80056a075b987de9": 1, + "45aa8cb1b45b4cc0904a64f4cb765574": 1 + }, "tags": [ - "RarityEpic", - "Premium" + "PlatformOnly", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:36:45.271Z", + "createdAt": "2024-03-06T14:02:19.764Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Charm 6", - "itemId": "28d482c5dbb14de786f640c202d60950", + "title": "Steam DLC02 Weapon pack ", + "itemId": "16eb187877eb4b7da217b0d5698a8aa9", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_pd2promo6", + "sku": "pd3_steam_dlc02_weapon_pack", "namespace": "pd3", - "name": "PD2 Promo Charm 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC02 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "One Down Skull", - "caption": "Icon_Charm_DeathSentenceOneDown (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3645806c895d4262a376d03d0ee2e799.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/de1b0403a1224681b9e5342140906dac.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20909,46 +46486,53 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T14:37:28.832Z", - "discountPurchaseAt": "2023-02-22T14:37:28.832Z" + "purchaseAt": "2024-02-14T15:44:18.587Z", + "discountPurchaseAt": "2024-02-14T15:44:18.587Z" } ], - "itemQty": {}, + "itemIds": [ + "340c23aa3d27499d801a89d1daf917ce", + "d778f54c44534d94880cc6a5715959b3", + "a6ffc9ea535945ef8dd71ff6ab2a1987", + "95cb14c956d44810b6a494017c2a4655", + "3f8e036142d547e48857ad076f40de6a", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "3f8e036142d547e48857ad076f40de6a": 1, + "340c23aa3d27499d801a89d1daf917ce": 1, + "d778f54c44534d94880cc6a5715959b3": 1, + "a6ffc9ea535945ef8dd71ff6ab2a1987": 1, + "95cb14c956d44810b6a494017c2a4655": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ - "RarityEpic", - "Premium" + "PlatformOnly", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T14:37:28.793Z", + "createdAt": "2024-02-14T15:44:19.663Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Gloves", - "itemId": "638bf75ba8394a508e05b52117eceee4", + "title": "Epic DLC03 Steam pack", + "itemId": "ab2333b806264dffb620d48f0d3d0d30", "baseAppId": "", - "sku": "pd3_cosmetic_accessory_gloves_pd2promo", + "sku": "pd3_steam_dlc03_heist_pack", "namespace": "pd3", - "name": "PD2 Promo Gloves", + "name": "Steam DLC03 Heist pack", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Fleur-de-lis", - "caption": "Icon_Glove_Fleur_de_Lys (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/7f48204542a24dd29ef39198d27442df.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/29849255e5a440edbab216102bb1f36f.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -20958,46 +46542,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T15:12:39.722Z", - "discountPurchaseAt": "2023-02-22T15:12:39.722Z" + "purchaseAt": "2024-07-09T08:46:39.385Z", + "discountPurchaseAt": "2024-07-09T08:46:39.385Z" } ], - "itemQty": {}, + "itemIds": [ + "85ec3e3656cf475ca514d4c3039cd739" + ], + "itemQty": { + "85ec3e3656cf475ca514d4c3039cd739": 1 + }, "tags": [ - "RarityRare", - "Premium" + "PlatformOnly", + "Steam", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T15:12:39.682Z", + "createdAt": "2024-07-09T08:46:40.403Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Mask", - "itemId": "865b127704cd40fe9284cc1f4023886f", + "title": "Steam DLC03 Tailor pack", + "itemId": "bbe6421c96734553b1770c32a05898a8", "baseAppId": "", - "sku": "pd3_cosmetic_mask_pd2promo", + "sku": "pd3_steam_dlc03_tailor_pack", "namespace": "pd3", - "name": "PD2 Promo Mask", + "name": "Steam DLC03 Tailor pack", "entitlementType": "DURABLE", - "categoryPath": "/MaskMould", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "OG American Dream", - "caption": "Icon_Mask_Dallas_Old_Mask.png", - "height": 700, - "width": 700, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/48e19befc56742f9bf84926e4965e009.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/6b4e56b2270a4f73ba6b55ab1c1128e2.png" - } - ], + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -21007,46 +46587,66 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T15:10:36.725Z", - "discountPurchaseAt": "2023-02-22T15:10:36.725Z" + "purchaseAt": "2024-07-09T09:56:05.924Z", + "discountPurchaseAt": "2024-07-09T09:56:05.924Z" } ], - "itemQty": {}, + "itemIds": [ + "9a220595045d479c8d5692f5671d0287", + "91b3682e77ca4ca690a991d38a6ed153", + "e625aa9d84e4454dbde2334931736579", + "ba5e801d46da4ab1a60fa33dafff9ec5", + "18a15306e99343459e5d330724dbec33", + "858e1c70c98f40d8b137a0936b38b7a3", + "f79f0b565631405699ae4b832fe7249a", + "6179e403f918453c9ec5bbe63a0aa962", + "80580e1c1fb04f36bc4c32cb3c00c792", + "fa1f017343754ec5894564dac0c6a946", + "026f174ffb314c5ba06849a1115e5b11", + "08554a9f99054b469207aceb6a0400e8" + ], + "itemQty": { + "08554a9f99054b469207aceb6a0400e8": 1, + "80580e1c1fb04f36bc4c32cb3c00c792": 1, + "91b3682e77ca4ca690a991d38a6ed153": 1, + "6179e403f918453c9ec5bbe63a0aa962": 1, + "fa1f017343754ec5894564dac0c6a946": 1, + "ba5e801d46da4ab1a60fa33dafff9ec5": 1, + "e625aa9d84e4454dbde2334931736579": 1, + "858e1c70c98f40d8b137a0936b38b7a3": 1, + "f79f0b565631405699ae4b832fe7249a": 1, + "026f174ffb314c5ba06849a1115e5b11": 1, + "18a15306e99343459e5d330724dbec33": 1, + "9a220595045d479c8d5692f5671d0287": 1 + }, "tags": [ - "RarityEpic", - "Premium" + "PlatformOnly", + "Steam", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T15:10:36.685Z", + "createdAt": "2024-07-09T09:56:04.987Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Promo Suit", - "itemId": "533872e42ab84d00ba32355ea2de792f", + "title": "Steam DLC03 Weapon Sticker 01", + "itemId": "2ae83ec0a3e64f30b368ea8f80c5b17d", "baseAppId": "", - "sku": "pd3_cosmetic_suit_pd2promo", + "sku": "pd3_steam_cosmetics_weapon_Charm_dlc03_01", "namespace": "pd3", - "name": "PD2 Promo Suit", - "entitlementType": "DURABLE", - "categoryPath": "/Suit", - "status": "ACTIVE", - "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", - "images": [ - { - "as": "Echelon", - "caption": "Icon_PromoSuit_Echelon (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/2ba67c4e84354c51837d09ef61b30f7e.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/3e758d556cf34f9487b038a9574e36fe.png" - } - ], + "name": "Steam DLC03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -21056,37 +46656,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-22T15:15:09.497Z", - "discountPurchaseAt": "2023-02-22T15:15:09.497Z" + "purchaseAt": "2024-07-11T12:43:30.501Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "82e5cb4b9aa44e82ae5bb6b9875f0338" + ], "tags": [ - "RarityRare", - "Premium" + "PlatformOnly", + "inexhaustible", + "Steam" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-22T15:15:09.450Z", + "createdAt": "2024-07-11T12:43:30.527Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 1", - "itemId": "c1ad684a4d2840dcb8e116182cfe2b3b", + "title": "Steam DLC03 Weapon Sticker 01", + "itemId": "48b8fccda4b24d9d8353ddd0ae1dcce2", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo1", + "sku": "pd3_steam_cosmetics_weapon_sticker_dlc03_01", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 1", + "name": "Steam DLC03 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -21097,39 +46702,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-05T18:39:30.263Z", - "discountPurchaseAt": "2023-09-05T18:39:30.263Z" + "purchaseAt": "2024-07-09T08:12:30.264Z", + "discountPurchaseAt": "2024-07-09T08:12:30.264Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "82e5cb4b9aa44e82ae5bb6b9875f0338" + ], "tags": [ "PlatformOnly", - "Steam", - "RarityRare" + "inexhaustible", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:39:28.601Z", + "createdAt": "2024-07-09T08:12:29.614Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 2", - "itemId": "ba744265a0e7486a819ad9df1978ab2d", + "title": "Steam DLC03 Weapon pack", + "itemId": "82e5cb4b9aa44e82ae5bb6b9875f0338", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo2", + "sku": "pd3_steam_dlc03_weapon_pack", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC03 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "INGAMEITEM", + "purchasable": true, + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -21139,38 +46747,55 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:21:35.841Z", - "discountPurchaseAt": "2023-09-06T05:21:35.841Z" + "purchaseAt": "2024-07-01T12:15:00.624Z", + "discountPurchaseAt": "2024-07-01T12:15:00.624Z" } ], - "itemQty": {}, + "itemIds": [ + "bd740bf3419744bd88cf7cccd7ba5719", + "3ca30e8dc1834049ba9a949fc80365ad", + "e6d78c3ab78c4716b66f833666f17d3b", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "2ae83ec0a3e64f30b368ea8f80c5b17d", + "48b8fccda4b24d9d8353ddd0ae1dcce2" + ], + "itemQty": { + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "e6d78c3ab78c4716b66f833666f17d3b": 1, + "3ca30e8dc1834049ba9a949fc80365ad": 1, + "bd740bf3419744bd88cf7cccd7ba5719": 1, + "48b8fccda4b24d9d8353ddd0ae1dcce2": 1, + "2ae83ec0a3e64f30b368ea8f80c5b17d": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ "PlatformOnly", "Steam", - "RarityRare" + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:21:32.311Z", + "createdAt": "2024-07-01T12:14:31.839Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 3", - "itemId": "6718c60287d34d94b0cf371171b10610", + "title": "Steam DLC04 Weapon Charm 01", + "itemId": "519eb121a5d14c0393ad0555251a3466", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo3", + "sku": "pd3_steam_cosmetics_charm_dlc04_01", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 3", + "name": "Steam DLC04 Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -21181,38 +46806,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:26:36.780Z", - "discountPurchaseAt": "2023-09-06T05:26:36.780Z" + "purchaseAt": "2024-07-25T16:09:50.182Z" } ], "itemQty": {}, + "boundItemIds": [ + "1925e9106026489ea86a223e5f5c3cb2", + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ "PlatformOnly", - "Steam", - "RarityRare" + "inexhaustible", + "Steam" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:26:33.161Z", + "createdAt": "2024-07-25T16:09:50.21Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 4", - "itemId": "efbb0361613f480bb945299529648282", + "title": "Steam DLC04 Weapon Sticker 01", + "itemId": "471c8b51a2794c72a90f7ed082a78e9f", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo4", + "sku": "pd3_steam_cosmetics_sticker_dlc04_01", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 4", + "name": "Steam DLC04 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -21223,39 +46852,41 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:32:59.917Z", - "discountPurchaseAt": "2023-09-06T05:32:59.917Z" + "purchaseAt": "2024-07-25T16:15:59.406Z" } ], "itemQty": {}, + "boundItemIds": [ + "1925e9106026489ea86a223e5f5c3cb2", + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ "PlatformOnly", - "Steam", - "RarityRare" + "Inexhaustible", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:32:56.323Z", + "createdAt": "2024-07-25T16:15:59.439Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 5", - "itemId": "fb2a14b9cc0c4aa4a29c41ae7eabe37c", + "title": "Steam DLC04 Heist pack", + "itemId": "87e8cb11af3744e59ddb9bdf0598ac6a", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo5", + "sku": "pd3_steam_dlc04_heist_pack", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC04 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "INGAMEITEM", + "purchasable": true, + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -21265,14 +46896,18 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:37:54.097Z", - "discountPurchaseAt": "2023-09-06T05:37:54.097Z" + "purchaseAt": "2024-08-16T13:11:13.02Z", + "discountPurchaseAt": "2024-08-16T13:11:13.02Z" } ], - "itemQty": {}, + "itemIds": [ + "454e69fa3cf042139b1d3d1525e94484" + ], + "itemQty": { + "454e69fa3cf042139b1d3d1525e94484": 1 + }, "tags": [ "PlatformOnly", - "RarityEpic", "Steam" ], "features": [], @@ -21280,41 +46915,65 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:37:50.469Z", + "createdAt": "2024-08-16T13:11:13.309Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Charm 6", - "itemId": "92b5f6b6ec5743c7ab7ed05234e0959a", + "title": "Steam DLC04 Tailor pack", + "itemId": "0977dd72dce140ff961679caca72069d", "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_pd2promo6", + "sku": "pd3_steam_dlc04_tailor_pack", "namespace": "pd3", - "name": "PD2 Steam Promo Charm 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam DLC04 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "INGAMEITEM", + "purchasable": true, + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:41:58.473Z", - "discountPurchaseAt": "2023-09-06T05:41:58.473Z" + "purchaseAt": "2024-08-07T19:35:54.505Z", + "discountPurchaseAt": "2024-08-07T19:35:54.505Z" } ], - "itemQty": {}, + "itemIds": [ + "9fe470c9e9194c43961ea3debd0d47f3", + "857bb026e48543b3a8d68c1feeb81065", + "6660ed75c59f451ebb0ecfbebb2f8ddb", + "2c88228ac05f4a858f39e1a1b9421b7f", + "b478cc3085944b94ad6e6c48eebfdee4", + "f82c5fbf7eab4f64822140cd2274627b", + "a3a5910706984b3b9591b5caf43e099b", + "f8abcb38cf314c36abf547109d10f453", + "db4b3588ef3643df90a152afee6eea7e", + "efee9f57cfc94039b96df40c8e4afc7b", + "0fe1dacb50f74caf9566292a5e7bcb1d", + "b45c4b6eb98b4797a1b2cc53498c5ddc" + ], + "itemQty": { + "b45c4b6eb98b4797a1b2cc53498c5ddc": 1, + "857bb026e48543b3a8d68c1feeb81065": 1, + "9fe470c9e9194c43961ea3debd0d47f3": 1, + "f8abcb38cf314c36abf547109d10f453": 1, + "6660ed75c59f451ebb0ecfbebb2f8ddb": 1, + "a3a5910706984b3b9591b5caf43e099b": 1, + "db4b3588ef3643df90a152afee6eea7e": 1, + "b478cc3085944b94ad6e6c48eebfdee4": 1, + "efee9f57cfc94039b96df40c8e4afc7b": 1, + "2c88228ac05f4a858f39e1a1b9421b7f": 1, + "f82c5fbf7eab4f64822140cd2274627b": 1, + "0fe1dacb50f74caf9566292a5e7bcb1d": 1 + }, "tags": [ "PlatformOnly", - "RarityEpic", "Steam" ], "features": [], @@ -21322,22 +46981,22 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:41:54.832Z", + "createdAt": "2024-08-07T19:35:54.554Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Gloves", - "itemId": "3dc0bccf84d2470a9cbd6efebafb0914", + "title": "Steam DLC04 Weapon pack", + "itemId": "1925e9106026489ea86a223e5f5c3cb2", "baseAppId": "", - "sku": "pd3_steam_cosmetic_accessory_gloves_pd2promo", + "sku": "pd3_steam_dlc04_weapon_pack", "namespace": "pd3", - "name": "PD2 Steam Promo Gloves", + "name": "Steam DLC04 Weapon pack", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "INGAMEITEM", + "purchasable": true, + "itemType": "BUNDLE", "regionData": [ { "price": 0, @@ -21347,586 +47006,593 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:14:41.424Z", - "discountPurchaseAt": "2023-09-06T06:14:41.424Z" + "purchaseAt": "2024-07-25T12:08:09.481Z", + "discountPurchaseAt": "2024-07-25T12:08:09.481Z" } ], - "itemQty": {}, + "itemIds": [ + "ca150f0abd634a2aa751753494b16c89", + "4ceded3d0da841b2b7c90276df3d7dbe", + "11c57563f609414293636b726aa54d18", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "519eb121a5d14c0393ad0555251a3466", + "471c8b51a2794c72a90f7ed082a78e9f" + ], + "itemQty": { + "11c57563f609414293636b726aa54d18": 1, + "4ceded3d0da841b2b7c90276df3d7dbe": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "ca150f0abd634a2aa751753494b16c89": 1, + "519eb121a5d14c0393ad0555251a3466": 1, + "84d0c77410184162a1b300dcca87c600": 2, + "471c8b51a2794c72a90f7ed082a78e9f": 1 + }, "tags": [ "PlatformOnly", - "RarityRare", - "Steam", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:14:37.697Z", + "createdAt": "2024-07-25T12:07:35.316Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Mask", - "itemId": "afeb2607f21c4f6fab5f463ed791f5e9", + "title": "Steam MOD BarrelExt Coronet", + "itemId": "5e0b73182ba24317ba7a5fa90b550583", "baseAppId": "", - "sku": "pd3_steam_cosmetic_mask_pd2promo", + "sku": "pd3_steam_mod_barrelext_coronet", "namespace": "pd3", - "name": "PD2 Steam Promo Mask", + "name": "Steam MOD BarrelExt Coronet", "entitlementType": "DURABLE", - "categoryPath": "/MaskMould", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:42:21.061Z", - "discountPurchaseAt": "2023-09-06T06:42:21.061Z" + "purchaseAt": "2024-07-25T14:16:22.976Z", + "discountPurchaseAt": "2024-07-25T14:16:22.976Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityEpic", - "Steam", - "Premium" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:42:17.276Z", + "createdAt": "2024-07-25T14:15:48.698Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 Steam Promo Suit", - "itemId": "e1fdf51794514bb4ae7120b298492297", + "title": "Steam MOD BarrelExt Crated", + "itemId": "2e53f906f03c4f23afe0404d1d1ca78e", "baseAppId": "", - "sku": "pd3_steam_cosmetic_suit_pd2promo", + "sku": "pd3_steam_mod_barrelext_crated", "namespace": "pd3", - "name": "PD2 Steam Promo Suit", + "name": "Steam MOD BarrelExt Crated", "entitlementType": "DURABLE", - "categoryPath": "/Suit", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:31:03.519Z", - "discountPurchaseAt": "2023-09-06T06:31:03.519Z" + "purchaseAt": "2024-07-25T13:54:33.891Z", + "discountPurchaseAt": "2024-07-25T13:54:33.891Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "Steam", - "Premium" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:30:59.724Z", + "createdAt": "2024-07-25T13:53:59.629Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 1 ", - "itemId": "c6b139b215e94d698b8e7b7b1c6e351d", + "title": "Steam MOD BarrelExt IDM2", + "itemId": "e7bd6d70bb0748a28fefa3bcd9b43de8", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo1", + "sku": "pd3_steam_mod_barrelext_idm2", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 1 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD BarrelExt IDM2", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", - "images": [ + "regionData": [ { - "as": "Very Hard Skull", - "caption": "Icon_Charm_Skull_VeryHard (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/55eeb2105b5546e299cf9d9e18473d8d.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/84f882648cf24be69cdade98fe1461c0.png" + "price": 100000, + "discountPercentage": 0, + "discountAmount": 0, + "discountedPrice": 100000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T14:43:34.026Z", + "discountPurchaseAt": "2024-06-27T14:43:34.026Z" } ], + "itemQty": {}, + "tags": [ + "WeaponPart" + ], + "features": [], + "maxCountPerUser": -1, + "maxCount": -1, + "region": "SE", + "language": "en-US", + "createdAt": "2024-06-27T14:43:11Z", + "updatedAt": "updatedattomakegitdiffseasiertoread" + }, + { + "title": "Steam MOD BarrelExt Ridgecyl", + "itemId": "badda8628aba4993a1a338c07a26285c", + "baseAppId": "", + "sku": "pd3_steam_mod_barrelext_ridgecyl", + "namespace": "pd3", + "name": "Steam MOD BarrelExt Ridgecyl", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", + "status": "ACTIVE", + "listable": true, + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-05T18:41:29.205Z", - "discountPurchaseAt": "2023-09-05T18:41:29.205Z" + "purchaseAt": "2024-06-27T14:48:12.476Z", + "discountPurchaseAt": "2024-06-27T14:48:12.476Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:41:27.520Z", + "createdAt": "2024-06-27T14:47:49.45Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 2", - "itemId": "3e4615d6be814e9e9ea9f6678b98b22e", + "title": "Steam MOD BarrelExt WhisperWrap", + "itemId": "72f00d7b4f804f9eb7cca75c6c5d2480", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo2", + "sku": "pd3_steam_mod_barrelext_whisperwrap", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD BarrelExt WhisperWrap", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:22:50.612Z", - "discountPurchaseAt": "2023-09-06T05:22:50.612Z" + "purchaseAt": "2024-02-14T15:18:04.56Z", + "discountPurchaseAt": "2024-02-14T15:18:04.56Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:22:47.165Z", + "createdAt": "2024-02-14T15:18:05.597Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 3", - "itemId": "7967b51aea1f43558b93b560f56aa723", + "title": "Steam MOD Sight LightHolographic ", + "itemId": "8b68928fef71496284fe27297b24f953", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo3", + "sku": "pd3_steam_mod_sight_lightholographic", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD Sight LightHolographic ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:27:24.631Z", - "discountPurchaseAt": "2023-09-06T05:27:24.631Z" + "purchaseAt": "2023-11-07T09:27:05.487Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:27:21.027Z", + "createdAt": "2023-11-07T09:27:06.164Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 4", - "itemId": "232dacfbc3644819823110bc58d0c0ba", + "title": "Steam MOD Sight Snapshot", + "itemId": "8a8ba2293ab54897be9216f2e2d79e0d", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo4", + "sku": "pd3_steam_mod_sight_snapshot", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD Sight Snapshot", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:34:10.999Z", - "discountPurchaseAt": "2023-09-06T05:34:10.999Z" + "purchaseAt": "2024-02-14T15:15:55.593Z", + "discountPurchaseAt": "2024-02-14T15:15:55.593Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:34:07.349Z", + "createdAt": "2024-02-14T15:15:56.617Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 5", - "itemId": "88fd6ef64ba547fbb217c69383fa7a25", + "title": "Steam MOD Sight SquareClaim", + "itemId": "59e264996476467d86d9b8c51dafe872", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo5", + "sku": "pd3_steam_mod_sight_squareclaim", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD Sight SquareClaim", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:38:44.582Z", - "discountPurchaseAt": "2023-09-06T05:38:44.582Z" + "purchaseAt": "2024-06-27T14:52:09.706Z", + "discountPurchaseAt": "2024-06-27T14:52:09.706Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityEpic", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:38:41.075Z", + "createdAt": "2024-06-27T14:51:46.668Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Charm 6", - "itemId": "eb3fb58af81e4d6ca839865ae607d09d", + "title": "Steam MOD Sight Voyeur", + "itemId": "ee41676ca685403f92fa672502f2250f", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_charm_pd2promo6", + "sku": "pd3_steam_mod_sight_voyeur", "namespace": "pd3", - "name": "PD2 XBox Promo Charm 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "Steam MOD Sight Voyeur", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T05:43:02.428Z", - "discountPurchaseAt": "2023-09-06T05:43:02.428Z" + "purchaseAt": "2024-07-25T13:32:23.994Z", + "discountPurchaseAt": "2024-07-25T13:32:23.994Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityEpic", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T05:42:58.788Z", + "createdAt": "2024-07-25T13:31:49.754Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Gloves", - "itemId": "18d84895e4bd4fd5b0d2e97b16a0126e", + "title": "Steam MOD Stock MinimizedHook ", + "itemId": "894ef8e5dc51421cbe708fa5c1eadcad", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_accessory_gloves_pd2promo", + "sku": "pd3_steam_mod_stock_minimizedhook", "namespace": "pd3", - "name": "PD2 XBox Promo Gloves", + "name": "Steam MOD Stock MinimizedHook ", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/WeaponMod/Stock", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:17:29.636Z", - "discountPurchaseAt": "2023-09-06T06:17:29.636Z" + "purchaseAt": "2023-11-07T10:55:33.169Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox", - "Premium" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:17:25.856Z", + "createdAt": "2023-11-07T10:55:33.975Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Mask", - "itemId": "85c5c2e29a874c71ababdd94f771c5e9", + "title": "Steam MOD VerticalGrip FlatSideStab ", + "itemId": "47c6260e6e7e4138ae10712bb88245ee", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_mask_pd2promo", + "sku": "pd3_steam_mod_verticalgrip_flatsidestab", "namespace": "pd3", - "name": "PD2 XBox Promo Mask", + "name": "Steam MOD VerticalGrip FlatSideStab ", "entitlementType": "DURABLE", - "categoryPath": "/MaskMould", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:43:19.371Z", - "discountPurchaseAt": "2023-09-06T06:43:19.371Z" + "purchaseAt": "2023-11-07T10:01:35.652Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityEpic", - "Premium", - "XBox" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:43:15.515Z", + "createdAt": "2023-11-07T10:01:36.383Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PD2 XBox Promo Suit", - "itemId": "966a4b405b94462e8c5ad7b9950304c8", + "title": "Steam MOD VerticalGrip RiggerHandStop", + "itemId": "a184f2370d2a48449f97f8c09a9e4cab", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_suit_pd2promo", + "sku": "pd3_steam_mod_verticalgrip_riggerhandstop", "namespace": "pd3", - "name": "PD2 XBox Promo Suit", + "name": "Steam MOD VerticalGrip RiggerHandStop", "entitlementType": "DURABLE", - "categoryPath": "/Suit", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:32:03.010Z", - "discountPurchaseAt": "2023-09-06T06:32:03.010Z" + "purchaseAt": "2024-02-14T15:23:10.513Z", + "discountPurchaseAt": "2024-02-14T15:23:10.513Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "RarityRare", - "XBox", - "Premium" + "WeaponPart" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:31:59.221Z", + "createdAt": "2024-02-14T15:23:11.823Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PayDay Credits", - "itemId": "a429582c433444d592485f59311be1ff", + "title": "Steam Marksman FIK22", + "itemId": "2b2b40a581f04452b4a3f1994127ee8a", "baseAppId": "", - "sku": "pd3_coin_paydaycredits", + "sku": "pd3_steam_wpn_marksman_fik22", "namespace": "pd3", - "name": "PayDay Credits", + "name": "Steam Marksman FIK22", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Coin", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "COINS", - "targetCurrencyCode": "CRED", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "USD", - "currencyType": "REAL", - "currencyNamespace": "pd3" + "discountedPrice": 200000, + "currencyCode": "CASH", + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-06T16:11:36.266Z" } ], "itemQty": {}, - "boundItemIds": [], "tags": [ - "GoldExchangeVendor", - "InitialItem" - ], - "features": [ - "iap-sync-steam" + "PlatformOnly", + "CombatEquipmentVendor", + "Steam", + "DLC1Category", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-15T15:02:09.009Z", + "createdAt": "2023-11-06T16:11:36.771Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pearl Mould", - "itemId": "caf1f9376d324979a2c67f2d8cd0de53", + "title": "Steam Marksman FIK22 - Vendor Item ", + "itemId": "e3db751853eb4243b797965e6a675e33", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_pearl", + "sku": "pd3_steam_wpn_marksman_fik22_vendor", "namespace": "pd3", - "name": "Pearl Mould", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "name": "Steam Marksman FIK22 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T15:04:43.863Z", - "discountPurchaseAt": "2023-02-10T15:04:43.863Z" + "purchaseAt": "2023-11-09T14:34:11.877Z", + "discountPurchaseAt": "2023-11-09T14:34:11.877Z" } ], "itemQty": {}, + "boundItemIds": [ + "1cdb0fddde344c0ea9ae09ee408e66d7", + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5" + ], "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" + "PlatformOnly", + "Steam" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T15:04:43.732Z", + "createdAt": "2023-11-09T14:34:12.456Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pistol P226", - "itemId": "608e2ed558594f4097694d8c8abedf8b", + "title": "Steam Pistol GV50", + "itemId": "95ce49a8855140e780e3821469d9b59c", "baseAppId": "", - "sku": "pd3_wpn_pistol_s40", + "sku": "pd3_steam_wpn_pistol_gv50", "namespace": "pd3", - "name": "Pistol S40", + "name": "Steam Pistol GV50", "entitlementType": "CONSUMABLE", "useCount": 1, + "stackable": false, "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, @@ -21934,73 +47600,84 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 75000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 75000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-13T18:00:00.000Z" + "purchaseAt": "2024-07-25T11:33:39.762Z", + "discountPurchaseAt": "2024-07-25T11:33:39.762Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", "CombatEquipmentVendor", - "InitialItem" + "DLC4Category", + "Steam", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-10-29T12:10:27.272Z", + "createdAt": "2024-07-25T11:33:05.661Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pistol S403", - "itemId": "f59ee45094f8470fb03430f648370a54", + "title": "Steam Pistol GV50 - Vendor Item", + "itemId": "ca150f0abd634a2aa751753494b16c89", "baseAppId": "", - "sku": "pd3_wpn_pistol_s403", + "sku": "pd3_steam_wpn_pistol_gv50_vendor", "namespace": "pd3", - "name": "Pistol S403", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Steam Pistol GV50 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T11:39:26.702Z", + "discountPurchaseAt": "2024-07-25T11:39:26.702Z" } ], "itemQty": {}, + "boundItemIds": [ + "1925e9106026489ea86a223e5f5c3cb2", + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ - "CombatEquipmentVendor", - "InfamyLevel59" + "PlatformOnly", + "Steam" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-25T11:57:21.201Z", + "createdAt": "2024-07-25T11:38:52.576Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pistol SPM 11", - "itemId": "029240e91fe4408796428e79fcadcefb", + "title": "Steam Pistol PD5", + "itemId": "e90b1e0d039d40be93108719a8fdc742", "baseAppId": "", - "sku": "pd3_wpn_pistol_spm11", + "sku": "pd3_steam_wpn_pistol_pd5", "namespace": "pd3", - "name": "Pistol SPM 11", + "name": "Steam Pistol PD5", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, @@ -22011,123 +47688,134 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T11:04:53.261Z", + "discountPurchaseAt": "2024-06-27T11:04:53.261Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", "CombatEquipmentVendor", - "InfamyLevel38" + "Steam", + "DLC3Category", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-21T08:23:25.562Z", + "createdAt": "2024-06-27T11:04:30.471Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pistol G17", - "itemId": "54883ae05a214c9790fe2ba7c37121d1", + "title": "Steam Pistol PD5 - Vendor Item", + "itemId": "e6d78c3ab78c4716b66f833666f17d3b", "baseAppId": "", - "sku": "pd3_wpn_pistol_stryk7", + "sku": "pd3_steam_wpn_pistol_pd5_vendor", "namespace": "pd3", - "name": "Pistol Stryk7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Steam Pistol PD5 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 150000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 150000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T11:10:00.399Z", + "discountPurchaseAt": "2024-06-27T11:10:00.399Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "82e5cb4b9aa44e82ae5bb6b9875f0338" + ], "tags": [ - "CombatEquipmentVendor", - "InfamyLevel25" + "PlatformOnly", + "Steam" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-05-05T11:53:49.212Z", + "createdAt": "2024-06-27T11:09:37.589Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation DLC01 Heist pack ", - "itemId": "2b1086a1125a4b75ad9bfa0af7128f12", + "title": "Steam Pistol SE5", + "itemId": "f696a75d46d24ea0a118ceb35d11caa9", "baseAppId": "", - "sku": "pd3_playstation_dlc01_heist_pack", + "sku": "pd3_steam_wpn_pistol_se5", "namespace": "pd3", - "name": "PlayStation DLC01 Heist pack ", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Steam Pistol SE5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:46:23.883Z", - "discountPurchaseAt": "2023-11-10T13:46:23.883Z" + "purchaseAt": "2024-07-25T11:46:59.122Z", + "discountPurchaseAt": "2024-07-25T11:46:59.122Z" } ], - "itemIds": [ - "a6f6219f6ab04b3b9d90ae7c6778b379" - ], - "itemQty": { - "a6f6219f6ab04b3b9d90ae7c6778b379": 1 - }, + "itemQty": {}, "tags": [ "PlatformOnly", - "PlayStation" + "CombatEquipmentVendor", + "DLC4Category", + "Steam", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:46:19.014Z", + "createdAt": "2024-07-25T11:46:25.02Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation DLC01 Tailor pack", - "itemId": "5a5f6556433340a5bf5b9df009500923", + "title": "Steam Pistol SE5 - Vendor Item", + "itemId": "4ceded3d0da841b2b7c90276df3d7dbe", "baseAppId": "", - "sku": "pd3_playstation_dlc01_tailor_pack", + "sku": "pd3_steam_wpn_pistol_se5_vendor", "namespace": "pd3", - "name": "PlayStation DLC01 Tailor pack", + "name": "Steam Pistol SE5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -22137,267 +47825,252 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T15:00:20.057Z", - "discountPurchaseAt": "2023-11-15T15:00:20.057Z" + "purchaseAt": "2024-07-25T11:51:05.618Z", + "discountPurchaseAt": "2024-07-25T11:51:05.618Z" } ], - "itemIds": [ - "1bd8171c04074c9fad15981759c93e6d", - "5ec14652f10b454db1fa6e5407ecc3c7", - "99cab930bc954c799bccefa91f79234c", - "754680e38dd74f7d914336a704162fb8", - "5c70de7544564ae590fdbb2d8eda5961", - "b2f20953043e4e91acd024cb019dd22b", - "2bad50b4125d41c9889b61ee94835d44", - "c7d62ea4cbc24792bf90dd45bbdee1d5", - "b5c5c8b0975245649fa3543c275dd2aa", - "9cd0150a7cad409a9abd29c451fbc9df", - "3468072166c4415da28d1ea8e6de1f1a", - "ab79e2bf8acb4f0785aaa41d1cabccc9" + "itemQty": {}, + "boundItemIds": [ + "1925e9106026489ea86a223e5f5c3cb2", + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], - "itemQty": { - "2bad50b4125d41c9889b61ee94835d44": 1, - "b5c5c8b0975245649fa3543c275dd2aa": 1, - "754680e38dd74f7d914336a704162fb8": 1, - "3468072166c4415da28d1ea8e6de1f1a": 1, - "ab79e2bf8acb4f0785aaa41d1cabccc9": 1, - "c7d62ea4cbc24792bf90dd45bbdee1d5": 1, - "5ec14652f10b454db1fa6e5407ecc3c7": 1, - "9cd0150a7cad409a9abd29c451fbc9df": 1, - "1bd8171c04074c9fad15981759c93e6d": 1, - "5c70de7544564ae590fdbb2d8eda5961": 1, - "b2f20953043e4e91acd024cb019dd22b": 1, - "99cab930bc954c799bccefa91f79234c": 1 - }, "tags": [ "PlatformOnly", - "PlayStation" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T15:00:05.526Z", + "createdAt": "2024-07-25T11:50:31.472Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation DLC01 Weapon pack ", - "itemId": "926f52f52f0c4103aab2086175b947fa", + "title": "Steam Player Pack 03 Mask Mould 01", + "itemId": "c41ac7fe974141c0bdb9efaecfc21f81", "baseAppId": "", - "sku": "pd3_playstation_dlc01_weapon_pack", + "sku": "pd3_steam_cosmetics_mould_pp03_01", "namespace": "pd3", - "name": "PlayStation DLC01 Weapon pack ", + "name": "Steam Player Pack 03 Mask Mould 01", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:20:43.292Z", - "discountPurchaseAt": "2023-11-10T13:20:43.292Z" + "purchaseAt": "2024-08-27T08:31:28.612Z" } ], - "itemIds": [ - "ec444dcf8a8445f18eae9835f7a57792", - "2ddf331786e74dad9e6dbbcb549a7af7", - "ab1f5877c5934f7596fc8d52210a6bfa", - "de618e94a2dc499d99c3eb4967061c50", - "f9a13e6c2a0f4e6d9251347bc63634c7", - "ab1770e446d3426a98cb20c7f62eb713" - ], - "itemQty": { - "ec444dcf8a8445f18eae9835f7a57792": 1, - "ab1770e446d3426a98cb20c7f62eb713": 1, - "f9a13e6c2a0f4e6d9251347bc63634c7": 3, - "2ddf331786e74dad9e6dbbcb549a7af7": 1, - "ab1f5877c5934f7596fc8d52210a6bfa": 1, - "de618e94a2dc499d99c3eb4967061c50": 1 - }, + "itemQty": {}, "tags": [ "PlatformOnly", - "PlayStation" + "STARCategory", + "Steam", + "CharacterVendor", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:20:38.515Z", + "createdAt": "2024-08-27T08:31:29.635Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation MOD Sight LightHolographic", - "itemId": "23a3102b317a45399520ebd9ebbfa535", + "title": "Steam Player Pack 03 Mask Mould 01 - Vendor Item", + "itemId": "419a5eef6a204154959bd36a076b24da", "baseAppId": "", - "sku": "pd3_playstation_mod_sight_lightholographic", + "sku": "pd3_steam_cosmetics_mould_pp03_01_vendor", "namespace": "pd3", - "name": "PlayStation MOD Sight LightHolographic", + "name": "Steam Player Pack 03 Mask Mould 01 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/VendorItem/Mask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T09:31:38.712Z" + "purchaseAt": "2024-08-27T08:24:02.31Z", + "discountPurchaseAt": "2024-08-27T08:24:02.31Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5b71e18ebdd441b9cb2c0ac0cd9e7c9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T09:31:39.374Z", + "createdAt": "2024-08-27T08:24:03.325Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation MOD Stock MinimizedHook ", - "itemId": "85e2a8af0b1a4cf3bb208013cae6bc39", + "title": "Steam Player Pack 03 Weapon Charm 01", + "itemId": "ecc4fff1d5724c4a9c44999037b40e2e", "baseAppId": "", - "sku": "pd3_playstation_mod_stock_minimizedhook", + "sku": "pd3_steam_cosmetics_charm_pp03_01", "namespace": "pd3", - "name": "PlayStation MOD Stock MinimizedHook ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Steam Player Pack 03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:59:44.844Z" + "purchaseAt": "2024-08-28T09:19:25.59Z" } ], "itemQty": {}, + "boundItemIds": [ + "d5b71e18ebdd441b9cb2c0ac0cd9e7c9" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "inexhaustible", + "Steam" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:59:45.656Z", + "createdAt": "2024-08-28T09:19:25.068Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation MOD VerticalGrip FlatSideStab ", - "itemId": "42d32f1fbe32406590d01494d17a21de", + "title": "Steam Premium Preset 11", + "itemId": "743513636be44e2cbd8fbc4cf3b99d60", "baseAppId": "", - "sku": "pd3_playstation_mod_verticalgrip_flatsidestab", + "sku": "pd3_steam_wpn_preset_p11", "namespace": "pd3", - "name": "PlayStation MOD VerticalGrip FlatSideStab ", + "name": "Steam Premium Preset 11", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:40:12.769Z" + "purchaseAt": "2024-06-04T15:53:37.26Z", + "discountPurchaseAt": "2024-06-04T15:53:37.26Z" } ], "itemQty": {}, + "boundItemIds": [ + "c879e1ab01cc4dcf86d034af51d1f7bb" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:40:13.547Z", + "createdAt": "2024-06-04T15:53:01.482Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Marksman FIK22 ", - "itemId": "966fbefba64f4dfb946f0d3abd147cf8", + "title": "Steam Premium Preset 2 ", + "itemId": "89e11787fd6b4f92b0d0c94420fce90f", "baseAppId": "", - "sku": "pd3_playstation_wpn_marksman_fik22", + "sku": "pd3_steam_wpn_preset_p2", "namespace": "pd3", - "name": "PlayStation Marksman FIK22 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Steam Premium Preset 2 ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:23:48.652Z" + "purchaseAt": "2024-06-04T15:46:31.779Z", + "discountPurchaseAt": "2024-06-04T15:46:31.779Z" } ], "itemQty": {}, + "boundItemIds": [ + "eedabc2792254e6ba20bb898727aa091" + ], "tags": [ "PlatformOnly", - "CombatEquipmentVendor", - "PlayStation", - "DLC1Category", - "VendorEntitlementRequired" + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:23:49.188Z", + "createdAt": "2024-06-04T15:45:56.005Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Marksman FIK22 - Vendor Item ", - "itemId": "ec444dcf8a8445f18eae9835f7a57792", + "title": "Steam Premium Preset 4", + "itemId": "c955ffd69801458993e0dae544cc4512", "baseAppId": "", - "sku": "pd3_playstation_wpn_marksman_fik22_vendor", + "sku": "pd3_steam_wpn_preset_p4", "namespace": "pd3", - "name": "PlayStation Marksman FIK22 - Vendor Item ", + "name": "Steam Premium Preset 4", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -22411,81 +48084,84 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:36:35.064Z", - "discountPurchaseAt": "2023-11-09T14:36:35.064Z" + "purchaseAt": "2024-06-04T15:49:44.158Z", + "discountPurchaseAt": "2024-06-04T15:49:44.158Z" } ], "itemQty": {}, "boundItemIds": [ - "926f52f52f0c4103aab2086175b947fa" + "eedabc2792254e6ba20bb898727aa091" ], "tags": [ "PlatformOnly", - "PlayStation" + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:36:35.646Z", + "createdAt": "2024-06-04T15:49:08.391Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation SMG WAR45 ", - "itemId": "e8a551d529ea4257980976d27aa503c3", + "title": "Steam Premium Preset 6 ", + "itemId": "0f76b19ef14f47198a465fdf30cd1b9b", "baseAppId": "", - "sku": "pd3_playstation_wpn_smg_war45", + "sku": "pd3_steam_wpn_preset_p6", "namespace": "pd3", - "name": "PlayStation SMG WAR45 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Steam Premium Preset 6 ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:38:46.773Z" + "purchaseAt": "2024-06-04T15:42:17.357Z", + "discountPurchaseAt": "2024-06-04T15:42:17.357Z" } ], "itemQty": {}, + "boundItemIds": [ + "b34a1d608aec4cfd82850ba09f57278f" + ], "tags": [ "PlatformOnly", - "CombatEquipmentVendor", - "PlayStation", - "DLC1Category", - "VendorEntitlementRequired" + "Steam", + "Premium", + "ReportsTelemetry" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:38:47.298Z", + "createdAt": "2024-06-04T15:41:41.587Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation SMG WAR45 - Vendor Item ", - "itemId": "2ddf331786e74dad9e6dbbcb549a7af7", + "title": "Steam Preset - PD2 Promo", + "itemId": "44961df113f2463589dcdf22b0d95c23", "baseAppId": "", - "sku": "pd3_playstation_wpn_smg_war45_vendor", + "sku": "pd3_steam_wpn_preset_promo1", "namespace": "pd3", - "name": "PlayStation SMG WAR45 - Vendor Item ", + "name": "Steam Preset - PD2 Promo", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, - "purchasable": true, + "purchasable": false, "itemType": "INGAMEITEM", "regionData": [ { @@ -22496,33 +48172,31 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:30:30.113Z", - "discountPurchaseAt": "2023-11-09T14:30:30.113Z" + "purchaseAt": "2023-09-06T06:52:14.293Z", + "discountPurchaseAt": "2023-09-06T06:52:14.293Z" } ], "itemQty": {}, - "boundItemIds": [ - "926f52f52f0c4103aab2086175b947fa" - ], "tags": [ "PlatformOnly", - "PlayStation" + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:30:30.702Z", + "createdAt": "2023-09-06T06:52:10.408Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Shotgun FSA12 ", - "itemId": "724f9ad7976146f39ac341db4d79a166", + "title": "Steam Revolver Bullkick500", + "itemId": "2ea919217048459882562e206158077f", "baseAppId": "", - "sku": "pd3_playstation_wpn_shotgun_fsa12", + "sku": "pd3_steam_wpn_revolver_bullkick500", "namespace": "pd3", - "name": "PlayStation Shotgun FSA12 ", + "name": "Steam Revolver Bullkick500", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, @@ -22533,22 +48207,23 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:50:25.753Z" + "purchaseAt": "2024-02-14T12:19:34.98Z", + "discountPurchaseAt": "2024-02-14T12:19:34.98Z" } ], "itemQty": {}, "tags": [ "PlatformOnly", "CombatEquipmentVendor", - "PlayStation", - "DLC1Category", + "Steam", + "DLC2Category", "VendorEntitlementRequired" ], "features": [], @@ -22556,16 +48231,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:50:26.318Z", + "createdAt": "2024-02-14T12:19:35.714Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Shotgun FSA12 - Vendor Item ", - "itemId": "ab1f5877c5934f7596fc8d52210a6bfa", + "title": "Steam Revolver Bullkick500 - Vendor Item ", + "itemId": "a6ffc9ea535945ef8dd71ff6ab2a1987", "baseAppId": "", - "sku": "pd3_playstation_wpn_shotgun_fsa12_vendor", + "sku": "pd3_steam_wpn_revolver_bullkick500_vendor", "namespace": "pd3", - "name": "PlayStation Shotgun FSA12 - Vendor Item ", + "name": "Steam Revolver Bullkick500 - Vendor Item ", "entitlementType": "DURABLE", "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", @@ -22581,79 +48256,81 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T13:26:02.188Z", - "discountPurchaseAt": "2023-11-09T13:26:02.188Z" + "purchaseAt": "2024-02-14T12:39:33.946Z", + "discountPurchaseAt": "2024-02-14T12:39:33.946Z" } ], "itemQty": {}, "boundItemIds": [ - "926f52f52f0c4103aab2086175b947fa" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "16eb187877eb4b7da217b0d5698a8aa9" ], "tags": [ "PlatformOnly", - "PlayStation" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T13:26:02.656Z", + "createdAt": "2024-02-14T12:39:34.724Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 gloves 01", - "itemId": "1bd8171c04074c9fad15981759c93e6d", + "title": "Steam SMG ATK7", + "itemId": "fd58b1e1afe644d5bbdbe82028196654", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_01", + "sku": "pd3_steam_wpn_smg_atk7", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 gloves 01", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Steam SMG ATK7", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:18:19.302Z", - "discountPurchaseAt": "2023-11-15T13:18:19.302Z" + "purchaseAt": "2024-02-14T11:51:38.287Z", + "discountPurchaseAt": "2024-02-14T11:51:38.287Z" } ], "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923", - "f5ab43b08c0445f29709eb05f67178bd" - ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "CombatEquipmentVendor", + "Steam", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:18:05.082Z", + "createdAt": "2024-02-14T11:51:39.062Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 gloves 02", - "itemId": "5ec14652f10b454db1fa6e5407ecc3c7", + "title": "Steam SMG ATK7 - Vendor Item ", + "itemId": "d778f54c44534d94880cc6a5715959b3", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_02", + "sku": "pd3_steam_wpn_smg_atk7_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 gloves 02", + "name": "Steam SMG ATK7 - Vendor Item ", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -22667,79 +48344,80 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:12:43.467Z", - "discountPurchaseAt": "2023-11-15T13:12:43.467Z" + "purchaseAt": "2024-02-14T12:03:00.045Z", + "discountPurchaseAt": "2024-02-14T12:03:00.045Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "16eb187877eb4b7da217b0d5698a8aa9" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:12:29.255Z", + "createdAt": "2024-02-14T12:03:00.762Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 gloves 03", - "itemId": "ab79e2bf8acb4f0785aaa41d1cabccc9", + "title": "Steam SMG WAR45", + "itemId": "dac94eb86dff458a84d5779e0d915c44", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_03", + "sku": "pd3_steam_wpn_smg_war45", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 gloves 03", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Steam SMG WAR45", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-16T07:16:02.285Z", - "discountPurchaseAt": "2023-11-16T07:16:02.285Z" + "purchaseAt": "2023-11-06T16:35:41.488Z" } ], "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" - ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "CombatEquipmentVendor", + "Steam", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-16T07:15:45.094Z", + "createdAt": "2023-11-06T16:35:42.023Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 gloves 04", - "itemId": "99cab930bc954c799bccefa91f79234c", + "title": "Steam SMG WAR45 - Vendor Item", + "itemId": "76fb37baed294bb8a8bb1d8a7220d029", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_gloves_04", + "sku": "pd3_steam_wpn_smg_war45_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 gloves 04", + "name": "Steam SMG WAR45 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -22753,79 +48431,80 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:02:45.269Z", - "discountPurchaseAt": "2023-11-15T13:02:45.269Z" + "purchaseAt": "2023-11-09T14:25:42.547Z", + "discountPurchaseAt": "2023-11-09T14:25:42.547Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "1cdb0fddde344c0ea9ae09ee408e66d7", + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:02:31.125Z", + "createdAt": "2023-11-09T14:25:43.119Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 mask 01", - "itemId": "754680e38dd74f7d914336a704162fb8", + "title": "Steam Shotgun FSA12 ", + "itemId": "7e3300158b924241844e5e8eda861225", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_01", + "sku": "pd3_steam_wpn_shotgun_fsa12", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 mask 01", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Steam Shotgun FSA12 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:52:56.865Z", - "discountPurchaseAt": "2023-11-15T12:52:56.865Z" + "purchaseAt": "2023-11-06T16:46:17.456Z" } ], "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" - ], "tags": [ - "PlatformOnly", - "PlayStation", - "Premium" + "PlatformOnly", + "CombatEquipmentVendor", + "Steam", + "DLC1Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:52:42.721Z", + "createdAt": "2023-11-06T16:46:18.023Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 mask 02", - "itemId": "5c70de7544564ae590fdbb2d8eda5961", + "title": "Shotgun FSA12", + "itemId": "6c23ab06ee8840f2902cdc0d32266f18", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_02", + "sku": "pd3_steam_wpn_shotgun_fsa12_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 mask 02", + "name": "Steam Shotgun FSA12 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -22839,79 +48518,81 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:45:50.125Z", - "discountPurchaseAt": "2023-11-15T12:45:50.125Z" + "purchaseAt": "2023-11-03T07:28:55.876Z", + "discountPurchaseAt": "2023-11-03T07:28:55.876Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "1cdb0fddde344c0ea9ae09ee408e66d7", + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:45:36.008Z", + "createdAt": "2023-11-03T07:28:52.115Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 mask 03", - "itemId": "b2f20953043e4e91acd024cb019dd22b", + "title": "Steam Shotgun M7P", + "itemId": "e89e2200d79d4871826d2bc98ddb8dac", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_03", + "sku": "pd3_steam_wpn_shotgun_m7p", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 mask 03", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Steam Shotgun M7P", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:41:30.223Z", - "discountPurchaseAt": "2023-11-15T12:41:30.223Z" + "purchaseAt": "2024-06-25T14:41:06.708Z", + "discountPurchaseAt": "2024-06-25T14:41:06.708Z" } ], "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" - ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "CombatEquipmentVendor", + "Steam", + "DLC3Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:41:16.128Z", + "createdAt": "2024-06-25T14:40:46.63Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 mask 04", - "itemId": "2bad50b4125d41c9889b61ee94835d44", + "title": "Steam Shotgun M7P - Vendor Item", + "itemId": "3ca30e8dc1834049ba9a949fc80365ad", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_mask_04", + "sku": "pd3_steam_wpn_shotgun_m7p_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 mask 04", + "name": "Steam Shotgun M7P - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -22925,79 +48606,81 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:35:06.876Z", - "discountPurchaseAt": "2023-11-15T12:35:06.876Z" + "purchaseAt": "2024-06-25T15:00:18.046Z", + "discountPurchaseAt": "2024-06-25T15:00:18.046Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "82e5cb4b9aa44e82ae5bb6b9875f0338" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:34:52.797Z", + "createdAt": "2024-06-25T14:59:57.942Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Tailor PlayStation pack 01 suit 01", - "itemId": "c7d62ea4cbc24792bf90dd45bbdee1d5", + "title": "Steam Shotgun TAS12", + "itemId": "dca27ef4fde3479382a1277933e3ac2b", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_01", + "sku": "pd3_steam_wpn_shotgun_tas12", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 suit 01", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "name": "Steam Shotgun TAS12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:56:26.071Z", - "discountPurchaseAt": "2023-11-15T13:56:26.071Z" + "purchaseAt": "2024-07-25T11:56:00.739Z", + "discountPurchaseAt": "2024-07-25T11:56:00.739Z" } ], "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" - ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "CombatEquipmentVendor", + "DLC4Category", + "Steam", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:56:11.727Z", + "createdAt": "2024-07-25T11:55:26.591Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 suit 02", - "itemId": "b5c5c8b0975245649fa3543c275dd2aa", + "title": "Steam Shotgun TAS12 - Vendor Item", + "itemId": "11c57563f609414293636b726aa54d18", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_02", + "sku": "pd3_steam_wpn_shotgun_tas12_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 suit 02", + "name": "Steam Shotgun TAS12 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -23011,79 +48694,87 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:52:28.030Z", - "discountPurchaseAt": "2023-11-15T13:52:28.030Z" + "purchaseAt": "2024-07-25T12:01:37.251Z", + "discountPurchaseAt": "2024-07-25T12:01:37.251Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "1925e9106026489ea86a223e5f5c3cb2", + "b4876983c73544a19ad2e481f7eb8b76", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:52:13.699Z", + "createdAt": "2024-07-25T12:01:03.094Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 suit 03", - "itemId": "9cd0150a7cad409a9abd29c451fbc9df", + "title": "Steam Star Character Bundle", + "itemId": "d5b71e18ebdd441b9cb2c0ac0cd9e7c9", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_03", + "sku": "pd3_steam_character_bundle_star", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 suit 03", + "name": "Steam Star Character Bundle", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 993, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 993, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:48:13.055Z", - "discountPurchaseAt": "2023-11-15T13:48:13.055Z" + "purchaseAt": "2024-08-26T14:10:15.376Z", + "discountPurchaseAt": "2024-08-26T14:10:15.376Z" } ], - "itemQty": {}, - "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "itemIds": [ + "336b825486b8492aa76796a6737a177e", + "de0d8096485c4426a57eab4b0c717f8b", + "419a5eef6a204154959bd36a076b24da", + "ecc4fff1d5724c4a9c44999037b40e2e" ], + "itemQty": { + "de0d8096485c4426a57eab4b0c717f8b": 1, + "336b825486b8492aa76796a6737a177e": 1, + "ecc4fff1d5724c4a9c44999037b40e2e": 1, + "419a5eef6a204154959bd36a076b24da": 1 + }, "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:47:58.745Z", + "createdAt": "2024-08-26T14:10:14.375Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Tailor pack 01 suit 04 ", - "itemId": "3468072166c4415da28d1ea8e6de1f1a", + "title": "Steam Star Preset Vendor Item", + "itemId": "de0d8096485c4426a57eab4b0c717f8b", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_tailorpack_01_suit_04", + "sku": "pd3_steam_wpn_preset_star_vendor", "namespace": "pd3", - "name": "PlayStation Tailor pack 01 suit 04 ", + "name": "Steam Star Preset Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -23097,682 +48788,735 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:24:07.050Z", - "discountPurchaseAt": "2023-11-15T13:24:07.050Z" + "purchaseAt": "2024-08-27T11:31:53.267Z", + "discountPurchaseAt": "2024-08-27T11:31:53.267Z" } ], "itemQty": {}, "boundItemIds": [ - "5a5f6556433340a5bf5b9df009500923" + "d5b71e18ebdd441b9cb2c0ac0cd9e7c9" ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:23:52.828Z", + "createdAt": "2024-08-27T11:31:53.241Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Weapon Charm DLC1", - "itemId": "de618e94a2dc499d99c3eb4967061c50", + "title": "Steam Star Weapon Preset", + "itemId": "51cecc597b7d4dbda7fd6f10bc13b571", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_charm_dlc1", + "sku": "pd3_steam_wpn_preset_star", "namespace": "pd3", - "name": "PlayStation Weapon Charm DLC1", + "name": "Steam Star Weapon Preset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 50, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:20:10.051Z", - "discountPurchaseAt": "2023-11-10T14:20:10.051Z" + "purchaseAt": "2024-08-28T09:32:00.767Z", + "discountPurchaseAt": "2024-08-28T09:32:00.767Z" } ], "itemQty": {}, - "boundItemIds": [ - "926f52f52f0c4103aab2086175b947fa" - ], "tags": [ "PlatformOnly", - "PlayStation" + "STARCategory", + "CombatEquipmentVendor", + "Steam", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:20:05.079Z", + "createdAt": "2024-08-28T09:32:00.066Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "PlayStation Weapon Sticker DLC1", - "itemId": "ab1770e446d3426a98cb20c7f62eb713", + "title": "Steam Tailor Pack 03 Gloves 01", + "itemId": "18a15306e99343459e5d330724dbec33", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_weapon_sticker_dlc1", + "sku": "pd3_steam_cosmetics_gloves_dlc03_01", "namespace": "pd3", - "name": "PlayStation Weapon Sticker DLC1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "Steam Tailor Pack 03 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:34:26.160Z", - "discountPurchaseAt": "2023-11-10T14:34:26.160Z" + "purchaseAt": "2024-07-09T07:40:06.598Z", + "discountPurchaseAt": "2024-07-09T07:40:06.598Z" } ], "itemQty": {}, "boundItemIds": [ - "926f52f52f0c4103aab2086175b947fa" + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" ], "tags": [ "PlatformOnly", - "PlayStation", - "Inexhaustible" + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:34:21.144Z", + "createdAt": "2024-07-09T07:40:06.044Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Poison Penthouse Preplanning asset", - "itemId": "b815a9b61ba944dda953eb85fd8d6bbf", + "title": "Steam Tailor Pack 03 Gloves 02", + "itemId": "858e1c70c98f40d8b137a0936b38b7a3", "baseAppId": "", - "sku": "pd3_preplanning_penthouse_3", + "sku": "pd3_steam_cosmetics_gloves_dlc03_02", "namespace": "pd3", - "name": "Poison Penthouse Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "Steam Tailor Pack 03 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-09T07:40:59.154Z", + "discountPurchaseAt": "2024-07-09T07:40:59.154Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "Steam", + "Premium" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:24:37.835Z", + "createdAt": "2024-07-09T07:40:58.597Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask - Nebula", - "itemId": "e6b9bcc883124f5a86611cc7617da8f8", + "title": "Steam Tailor Pack 03 Gloves 03", + "itemId": "f79f0b565631405699ae4b832fe7249a", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled_nebula", + "sku": "pd3_steam_cosmetics_gloves_dlc03_03", "namespace": "pd3", - "name": "Pre-Bundled Mask - Nebula", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:28:15.941Z", - "discountPurchaseAt": "2023-03-17T15:28:15.941Z" + "purchaseAt": "2024-07-09T07:41:39.175Z", + "discountPurchaseAt": "2024-07-09T07:41:39.175Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], + "tags": [ + "PlatformOnly", + "Steam", + "Premium" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:28:15.841Z", + "createdAt": "2024-07-09T07:41:38.612Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 1", - "itemId": "eee85e17be7a4dedaa4f56d9efed522c", + "title": "Steam Tailor Pack 03 Gloves 04", + "itemId": "6179e403f918453c9ec5bbe63a0aa962", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled1", + "sku": "pd3_steam_cosmetics_gloves_dlc03_04", "namespace": "pd3", - "name": "Pre-Bundled Mask 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:36:50.276Z" + "purchaseAt": "2024-07-09T07:42:19.097Z", + "discountPurchaseAt": "2024-07-09T07:42:19.097Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "InfamyLevel131", - "RarityUncommon", - "CharacterVendor" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:36:50.220Z", + "createdAt": "2024-07-09T07:42:18.533Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 10", - "itemId": "dbacd9a07741407d8fd0a6ddd11a8b95", + "title": "Steam Tailor Pack 03 Mask 01", + "itemId": "9a220595045d479c8d5692f5671d0287", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled10", + "sku": "pd3_steam_cosmetics_mask_dlc03_01", "namespace": "pd3", - "name": "Pre-Bundled Mask 10", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 222, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:44:32.331Z", - "discountPurchaseAt": "2023-05-29T08:44:32.331Z" + "purchaseAt": "2024-07-05T12:48:51.224Z", + "discountPurchaseAt": "2024-07-05T12:48:51.224Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel149" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:44:32.251Z", + "createdAt": "2024-07-05T12:48:50.639Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 11", - "itemId": "6b467263c4564c7db50d544d03b98b4f", + "title": "Steam Tailor Pack 03 Mask 02", + "itemId": "91b3682e77ca4ca690a991d38a6ed153", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled11", + "sku": "pd3_steam_cosmetics_mask_dlc03_02", "namespace": "pd3", - "name": "Pre-Bundled Mask 11", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 222, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:46:15.936Z", - "discountPurchaseAt": "2023-05-29T08:46:15.936Z" + "purchaseAt": "2024-07-05T12:50:34.242Z", + "discountPurchaseAt": "2024-07-05T12:50:34.242Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "InfamyLevel150", - "RarityEpic", - "CharacterVendor" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:46:15.873Z", + "createdAt": "2024-07-05T12:50:33.658Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 2", - "itemId": "8da60ffc7d6a4bc5b0d680c7d7970f73", + "title": "Steam Tailor Pack 03 Mask 03", + "itemId": "e625aa9d84e4454dbde2334931736579", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled2", + "sku": "pd3_steam_cosmetics_mask_dlc03_03", "namespace": "pd3", - "name": "Pre-Bundled Mask 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 222, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:38:58.195Z" + "purchaseAt": "2024-07-05T12:51:19.242Z", + "discountPurchaseAt": "2024-07-05T12:51:19.242Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityUncommon", - "CharacterVendor", - "InfamyLevel106" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:38:58.133Z", + "createdAt": "2024-07-05T12:51:18.663Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 3", - "itemId": "20ce3ec76aa9457c9d49b621d737e923", + "title": "Steam Tailor Pack 03 Mask 04", + "itemId": "ba5e801d46da4ab1a60fa33dafff9ec5", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled3", + "sku": "pd3_steam_cosmetics_mask_dlc03_04", "namespace": "pd3", - "name": "Pre-Bundled Mask 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 222, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:40:23.305Z" + "purchaseAt": "2024-07-05T12:52:16.696Z", + "discountPurchaseAt": "2024-07-05T12:52:16.696Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel111" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:40:23.230Z", + "createdAt": "2024-07-05T12:52:16.104Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 4", - "itemId": "fca054c521a3465098f12bcc40c584bc", + "title": "Steam Tailor Pack 03 Suit 01", + "itemId": "80580e1c1fb04f36bc4c32cb3c00c792", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled4", + "sku": "pd3_steam_cosmetics_suit_dlc03_01", "namespace": "pd3", - "name": "Pre-Bundled Mask 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:41:49.009Z" + "purchaseAt": "2024-07-09T08:01:49.722Z", + "discountPurchaseAt": "2024-07-09T08:01:49.722Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel116" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:41:48.927Z", + "createdAt": "2024-07-09T08:01:49.122Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 5", - "itemId": "dcab10a605da4460a773ebd5ea09ab1b", + "title": "Steam Tailor Pack 03 Suit 02", + "itemId": "fa1f017343754ec5894564dac0c6a946", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled5", + "sku": "pd3_steam_cosmetics_suit_dlc03_02", "namespace": "pd3", - "name": "Pre-Bundled Mask 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:43:00.880Z", - "discountPurchaseAt": "2023-02-07T13:43:00.880Z" + "purchaseAt": "2024-07-09T08:02:39.287Z", + "discountPurchaseAt": "2024-07-09T08:02:39.287Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel121" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:43:00.802Z", + "createdAt": "2024-07-09T08:02:38.677Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 6", - "itemId": "6caacde9d4b2473b9cfba98a615013f4", + "title": "Steam Tailor Pack 03 Suit 03", + "itemId": "026f174ffb314c5ba06849a1115e5b11", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled6", + "sku": "pd3_steam_cosmetics_suit_dlc03_03", "namespace": "pd3", - "name": "Pre-Bundled Mask 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T13:43:57.366Z", - "discountPurchaseAt": "2023-02-07T13:43:57.367Z" + "purchaseAt": "2024-07-09T08:03:25.2Z", + "discountPurchaseAt": "2024-07-09T08:03:25.2Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel101" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T13:43:57.289Z", + "createdAt": "2024-07-09T08:03:24.587Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 7", - "itemId": "c0abb7e5f35f4e5fa15a8c2751f664a4", + "title": "Steam Tailor Pack 03 Suit 04", + "itemId": "08554a9f99054b469207aceb6a0400e8", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled7", + "sku": "pd3_steam_cosmetics_suit_dlc03_04", "namespace": "pd3", - "name": "Pre-Bundled Mask 7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 03 Suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 999, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:34:17.381Z", - "discountPurchaseAt": "2023-05-29T08:34:17.381Z" + "purchaseAt": "2024-07-09T08:04:15.993Z", + "discountPurchaseAt": "2024-07-09T08:04:15.993Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "bf7d8931e33f4411bba1dfbf03ce4561", + "bbe6421c96734553b1770c32a05898a8" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel126" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:34:17.333Z", + "createdAt": "2024-07-09T08:04:15.373Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 8", - "itemId": "a52c075118ac4401b8f989122e683334", + "title": "Steam Tailor Pack 04 Gloves 01", + "itemId": "db4b3588ef3643df90a152afee6eea7e", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled8", + "sku": "pd3_steam_cosmetics_gloves_dlc04_01", "namespace": "pd3", - "name": "Pre-Bundled Mask 8", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 04 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:36:07.950Z", - "discountPurchaseAt": "2023-05-29T08:36:07.950Z" + "purchaseAt": "2024-07-25T15:45:17.35Z", + "discountPurchaseAt": "2024-07-25T15:45:17.35Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel137" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:36:07.879Z", + "createdAt": "2024-07-25T15:45:17.391Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Pre-Bundled Mask 9", - "itemId": "acdf79f413284eb5ad6168c1291a9794", + "title": "Steam Tailor Pack 04 Gloves 02", + "itemId": "efee9f57cfc94039b96df40c8e4afc7b", "baseAppId": "", - "sku": "pd3_cosmetic_mask_prebundled9", + "sku": "pd3_steam_cosmetics_gloves_dlc04_02", "namespace": "pd3", - "name": "Pre-Bundled Mask 9", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskPreconfig", + "name": "Steam Tailor Pack 04 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:43:14.138Z", - "discountPurchaseAt": "2023-05-29T08:43:14.138Z" + "purchaseAt": "2024-07-25T15:51:25.266Z", + "discountPurchaseAt": "2024-07-25T15:51:25.266Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel143" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:43:14.073Z", + "createdAt": "2024-07-25T15:51:25.299Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Epic Mask 7", - "itemId": "ceb3f7910b254e21a29dc85f19fe3716", + "title": "Steam Tailor Pack 04 Gloves 03", + "itemId": "0fe1dacb50f74caf9566292a5e7bcb1d", "baseAppId": "", - "sku": "pd3_epic_cosmetic_mask_premium7", + "sku": "pd3_steam_cosmetics_gloves_dlc04_03", "namespace": "pd3", - "name": "Premium Epic Mask 7", + "name": "Steam Tailor Pack 04 Gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 123, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-03T11:47:15.874Z", - "discountPurchaseAt": "2023-09-03T11:47:15.874Z" + "purchaseAt": "2024-07-25T15:58:02.398Z", + "discountPurchaseAt": "2024-07-25T15:58:02.398Z" } ], "itemQty": {}, "boundItemIds": [ - "957560277d0f484390817596cb6f6792" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "Epic", + "Steam", "Premium" ], "features": [], @@ -23780,83 +49524,89 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:33:57.684Z", + "createdAt": "2024-07-25T15:58:02.429Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Collector's Edition", - "itemId": "94d9475ef8e34819938f78161b041db6", + "title": "Steam Tailor Pack 04 Gloves 04", + "itemId": "b45c4b6eb98b4797a1b2cc53498c5ddc", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium_collectoredition", + "sku": "pd3_steam_cosmetics_gloves_dlc04_04", "namespace": "pd3", - "name": "Premium Mask - Collector's Edition", + "name": "Steam Tailor Pack 04 Gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", - "images": [], "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:31:21.813Z", - "discountPurchaseAt": "2023-03-17T15:31:21.813Z" + "purchaseAt": "2024-07-25T16:02:01.238Z", + "discountPurchaseAt": "2024-07-25T16:02:01.238Z" } ], "itemQty": {}, "boundItemIds": [ - "cf30d4935678462fa197ad55bf5045cd" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ + "PlatformOnly", + "Steam", "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, - "displayOrder": 1, - "ext": {}, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:31:21.721Z", + "createdAt": "2024-07-25T16:02:01.272Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Collector's Edition Epic", - "itemId": "3f9b21916fa74f2099abdf03c09715bc", + "title": "Steam Tailor Pack 04 Mask 01", + "itemId": "b478cc3085944b94ad6e6c48eebfdee4", "baseAppId": "", - "sku": "pd3_epic_cosmetic_mask_premium_collectoredition", + "sku": "pd3_steam_cosmetics_mask_dlc04_01", "namespace": "pd3", - "name": "Premium Mask - Collector's Edition Epic", + "name": "Steam Tailor Pack 04 Mask 01", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:42:54.042Z", - "discountPurchaseAt": "2023-09-06T13:42:54.042Z" + "purchaseAt": "2024-07-25T13:53:06.966Z", + "discountPurchaseAt": "2024-07-25T13:53:06.966Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" + ], "tags": [ "PlatformOnly", - "Epic", + "Steam", "Premium" ], "features": [], @@ -23864,42 +49614,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:42:53.187Z", + "createdAt": "2024-07-25T13:53:07.024Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Collector's Edition PlayStation", - "itemId": "6f756438841e49bca982e456afda3460", + "title": "Steam Tailor Pack 04 Mask 02", + "itemId": "f82c5fbf7eab4f64822140cd2274627b", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_mask_premium_collectoredition", + "sku": "pd3_steam_cosmetics_mask_dlc04_02", "namespace": "pd3", - "name": "Premium Mask - Collector's Edition PlayStation", + "name": "Steam Tailor Pack 04 Mask 02", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:42:02.927Z", - "discountPurchaseAt": "2023-09-06T13:42:02.927Z" + "purchaseAt": "2024-07-25T13:59:17.182Z", + "discountPurchaseAt": "2024-07-25T13:59:17.182Z" } ], "itemQty": {}, "boundItemIds": [ - "ae3b3f0551a0487595e3b702d1107960" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "PlayStation", + "Steam", "Premium" ], "features": [], @@ -23907,38 +49659,40 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:42:02.077Z", + "createdAt": "2024-07-25T13:59:17.233Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Collector's Edition Steam", - "itemId": "a4bceb2be47a4608a8fee6a167e7653f", + "title": "Steam Tailor Pack 04 Mask 03", + "itemId": "a3a5910706984b3b9591b5caf43e099b", "baseAppId": "", - "sku": "pd3_steam_cosmetic_mask_premium_collectoredition", + "sku": "pd3_steam_cosmetics_mask_dlc04_03", "namespace": "pd3", - "name": "Premium Mask - Collector's Edition Steam", + "name": "Steam Tailor Pack 04 Mask 03", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:40:00.996Z", - "discountPurchaseAt": "2023-09-06T13:40:00.996Z" + "purchaseAt": "2024-07-25T14:04:13.248Z", + "discountPurchaseAt": "2024-07-25T14:04:13.248Z" } ], "itemQty": {}, "boundItemIds": [ - "d02054037d174688ab9b27514e6e3548" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", @@ -23950,42 +49704,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:40:00.150Z", + "createdAt": "2024-07-25T14:04:13.33Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Collector's Edition XBox", - "itemId": "4a46260108cb45d787e2bc6fefce743b", + "title": "Steam Tailor Pack 04 Mask 04", + "itemId": "f8abcb38cf314c36abf547109d10f453", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_mask_premium_collectoredition", + "sku": "pd3_steam_cosmetics_mask_dlc04_04", "namespace": "pd3", - "name": "Premium Mask - Collector's Edition XBox", + "name": "Steam Tailor Pack 04 Mask 04", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:41:13.958Z", - "discountPurchaseAt": "2023-09-06T13:41:13.958Z" + "purchaseAt": "2024-07-25T15:38:07.538Z", + "discountPurchaseAt": "2024-07-25T15:38:07.538Z" } ], "itemQty": {}, "boundItemIds": [ - "a5c8d73ba9a4450a820673b31de0ffae" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "XBox", + "Steam", "Premium" ], "features": [], @@ -23993,40 +49749,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:41:13.106Z", + "createdAt": "2024-07-25T15:38:07.573Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Preorder", - "itemId": "e8a13085ff9543cd9976c6e275197cbd", + "title": "Steam Tailor Pack 04 Mask 01", + "itemId": "9fe470c9e9194c43961ea3debd0d47f3", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium_preorder", + "sku": "pd3_steam_cosmetics_suit_dlc04_01", "namespace": "pd3", - "name": "Premium Mask - Preorder", + "name": "Steam Tailor Pack 04 Suit 01", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:34:00.971Z", - "discountPurchaseAt": "2023-03-17T15:34:00.971Z" + "purchaseAt": "2024-07-25T13:08:53.413Z", + "discountPurchaseAt": "2024-07-25T13:08:53.413Z" } ], "itemQty": {}, "boundItemIds": [ - "ce54b97b24184553ae56f1ffc3d54363" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24034,42 +49794,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:34:00.891Z", + "createdAt": "2024-07-25T13:08:53.477Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Preorder Epic", - "itemId": "317e6b8ca180445bab3b6e95e81f75c6", + "title": "Steam Tailor Pack 04 Suit 02", + "itemId": "857bb026e48543b3a8d68c1feeb81065", "baseAppId": "", - "sku": "pd3_epic_cosmetic_mask_premium_preorder", + "sku": "pd3_steam_cosmetics_suit_dlc04_02", "namespace": "pd3", - "name": "Premium Mask - Preorder Epic", + "name": "Steam Tailor Pack 04 Suit 02", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:03:00.253Z", - "discountPurchaseAt": "2023-09-06T13:03:00.253Z" + "purchaseAt": "2024-07-25T13:31:10.743Z", + "discountPurchaseAt": "2024-07-25T13:31:10.743Z" } ], "itemQty": {}, "boundItemIds": [ - "6cce475cf54b4d0090df7e6df40170aa" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "Epic", + "Steam", "Premium" ], "features": [], @@ -24077,42 +49839,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:02:59.514Z", + "createdAt": "2024-07-25T13:31:10.801Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Preorder PlayStation", - "itemId": "66714e9cf5bc4130bd1e23a4b012073d", + "title": "Steam Tailor Pack 04 Suit 03", + "itemId": "6660ed75c59f451ebb0ecfbebb2f8ddb", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_mask_premium_preorder", + "sku": "pd3_steam_cosmetics_suit_dlc04_03", "namespace": "pd3", - "name": "Premium Mask - Preorder PlayStation", + "name": "Steam Tailor Pack 04 Suit 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:02:06.762Z", - "discountPurchaseAt": "2023-09-06T13:02:06.762Z" + "purchaseAt": "2024-07-25T13:37:11.162Z", + "discountPurchaseAt": "2024-07-25T13:37:11.162Z" } ], "itemQty": {}, "boundItemIds": [ - "ec4e47fbeb9243a0b965f447ec6e10d5" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", - "PlayStation", + "Steam", "Premium" ], "features": [], @@ -24120,38 +49884,40 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:02:06.052Z", + "createdAt": "2024-07-25T13:37:11.218Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Preorder Steam", - "itemId": "075eebd2242b4684b447cf3678a914a9", + "title": "Steam Tailor Pack 04 Suit 04", + "itemId": "2c88228ac05f4a858f39e1a1b9421b7f", "baseAppId": "", - "sku": "pd3_steam_cosmetic_mask_premium_preorder", + "sku": "pd3_steam_cosmetics_suit_dlc04_04", "namespace": "pd3", - "name": "Premium Mask - Preorder Steam", + "name": "Steam Tailor Pack 04 Suit 04", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:00:07.816Z", - "discountPurchaseAt": "2023-09-06T13:00:07.816Z" + "purchaseAt": "2024-07-25T13:42:51.009Z", + "discountPurchaseAt": "2024-07-25T13:42:51.009Z" } ], "itemQty": {}, "boundItemIds": [ - "e29db70296e14583a91a9126d363d780" + "b4876983c73544a19ad2e481f7eb8b76", + "0977dd72dce140ff961679caca72069d", + "0bc8fb3cb4e7451a839f6cc5597db9e3" ], "tags": [ "PlatformOnly", @@ -24163,21 +49929,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:00:07.087Z", + "createdAt": "2024-07-25T13:42:51.071Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Preorder XBox", - "itemId": "c8cb556b24834c7da9dd6247aa43fecb", + "title": "Steam Tailor pack 01 gloves 01", + "itemId": "1cbbb9441d8b4b0c90dc1ccc788f513d", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_mask_premium_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_01", "namespace": "pd3", - "name": "Premium Mask - Preorder XBox", + "name": "Steam Tailor pack 01 gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24188,17 +49954,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-07T16:36:46.883Z", - "discountPurchaseAt": "2023-09-07T16:36:46.883Z" + "purchaseAt": "2023-11-15T13:17:35.135Z", + "discountPurchaseAt": "2023-11-15T13:17:35.135Z" } ], "itemQty": {}, "boundItemIds": [ - "6f46ee17db244f36bc6cc977609d8274" + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" ], "tags": [ "PlatformOnly", - "XBox", + "Steam", "Premium" ], "features": [], @@ -24206,20 +49974,18 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T16:36:45.618Z", + "createdAt": "2023-11-15T13:17:20.968Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Silver Edition", - "itemId": "668da63985ca46d381195bdb827ba1aa", + "title": "Steam Tailor pack 01 gloves 02", + "itemId": "46093ee8374149a3a213d8e71c6eb133", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium_silveredition", + "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_02", "namespace": "pd3", - "name": "Premium Mask - Silver Edition", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumMask", + "name": "Steam Tailor pack 01 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -24233,16 +49999,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-31T11:35:42.046Z", - "discountPurchaseAt": "2023-05-31T11:35:42.046Z" + "purchaseAt": "2023-11-15T13:10:44.012Z", + "discountPurchaseAt": "2023-11-15T13:10:44.012Z" } ], "itemQty": {}, "boundItemIds": [ - "37b4dc234ae4491e8b22230a743b31b6", - "abe79bb12dc34deb948a1c04b6637821" + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" ], "tags": [ + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24250,21 +50019,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-31T11:35:41.548Z", + "createdAt": "2023-11-15T13:10:29.836Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Silver Edition Epic", - "itemId": "33463ee41d3c4805b475d6ea841c094a", + "title": "Steam Tailor pack 01 gloves 03", + "itemId": "8e93faab93644527a7682a49ddb71196", "baseAppId": "", - "sku": "pd3_epic_cosmetic_mask_premium_silveredition", + "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_03", "namespace": "pd3", - "name": "Premium Mask - Silver Edition Epic", + "name": "Steam Tailor pack 01 gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24275,15 +50044,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:25:25.236Z", - "discountPurchaseAt": "2023-09-06T13:25:25.236Z" + "purchaseAt": "2023-11-16T07:17:47.207Z", + "discountPurchaseAt": "2023-11-16T07:17:47.207Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ "PlatformOnly", - "Epic", + "Steam", "Premium" ], "features": [], @@ -24291,21 +50064,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:25:24.476Z", + "createdAt": "2023-11-16T07:17:29.881Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Silver Edition PlayStation", - "itemId": "cb21551e8a4d4380b18ff2a13ade292c", + "title": "Steam Tailor pack 01 gloves 04", + "itemId": "2d5b8b20c9a94614bc0a14921e570930", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_mask_premium_silveredition", + "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_04", "namespace": "pd3", - "name": "Premium Mask - Silver Edition PlayStation", + "name": "Steam Tailor pack 01 gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24316,15 +50089,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:24:28.508Z", - "discountPurchaseAt": "2023-09-06T13:24:28.508Z" + "purchaseAt": "2023-11-15T13:01:27.471Z", + "discountPurchaseAt": "2023-11-15T13:01:27.471Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ "PlatformOnly", - "PlayStation", + "Steam", "Premium" ], "features": [], @@ -24332,21 +50109,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:24:27.744Z", + "createdAt": "2023-11-15T13:01:13.337Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Silver Edition Steam", - "itemId": "652b7f3783f04f2f8ce8593f718eb7ce", + "title": "Steam Tailor pack 01 mask 01", + "itemId": "3030cd162d6b47ccad5e44403ccc7b35", "baseAppId": "", - "sku": "pd3_steam_cosmetic_mask_premium_silveredition", + "sku": "pd3_steam_cosmetic_tailorpack_01_mask_01", "namespace": "pd3", - "name": "Premium Mask - Silver Edition Steam", + "name": "Steam Tailor pack 01 mask 01", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24357,12 +50134,16 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:22:43.627Z", - "discountPurchaseAt": "2023-09-06T13:22:43.627Z" + "purchaseAt": "2023-11-15T12:48:53.414Z", + "discountPurchaseAt": "2023-11-15T12:48:53.414Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ "PlatformOnly", "Steam", @@ -24373,21 +50154,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:22:42.876Z", + "createdAt": "2023-11-15T12:48:39.293Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask - Silver Edition XBox", - "itemId": "da3312f650154587bb5aa8a69a14d02e", + "title": "Steam Tailor pack 01 mask 02", + "itemId": "7d4b37f472c040c58a388527579f5704", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_mask_premium_silveredition", + "sku": "pd3_steam_cosmetic_tailorpack_01_mask_02", "namespace": "pd3", - "name": "Premium Mask - Silver Edition XBox", + "name": "Steam Tailor pack 01 mask 02", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24398,15 +50179,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T13:23:33.173Z", - "discountPurchaseAt": "2023-09-06T13:23:33.173Z" + "purchaseAt": "2023-11-15T12:44:55.622Z", + "discountPurchaseAt": "2023-11-15T12:44:55.622Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ "PlatformOnly", - "XBox", + "Steam", "Premium" ], "features": [], @@ -24414,16 +50199,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T13:23:32.408Z", + "createdAt": "2023-11-15T12:44:41.515Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask 7", - "itemId": "8c874bff3f474a1faaffb5ef8db9a69d", + "title": "Steam Tailor pack 01 mask 03", + "itemId": "36d2557e1a344a62bb52c52201eaa1bc", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium7", + "sku": "pd3_steam_cosmetic_tailorpack_01_mask_03", "namespace": "pd3", - "name": "Premium Mask 7", + "name": "Steam Tailor pack 01 mask 03", "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", @@ -24432,43 +50217,44 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T12:39:19.237Z", - "discountPurchaseAt": "2023-02-07T12:39:19.237Z" + "purchaseAt": "2023-11-15T12:40:28.426Z", + "discountPurchaseAt": "2023-11-15T12:40:28.426Z" } ], "itemQty": {}, "boundItemIds": [ - "5f0e2f433fe44a6ca51445bbd4d670f7" + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" ], "tags": [ - "Premium", - "RarityLegendary" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T12:39:19.200Z", + "createdAt": "2023-11-15T12:40:14.338Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask 8", - "itemId": "3b53e8385afd42e8a7c3cce640da51bb", + "title": "Steam Tailor pack 01 mask 04 ", + "itemId": "47f3fb495bb944a68230e21759b29ee9", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium8", + "sku": "pd3_steam_cosmetic_tailorpack_01_mask_04", "namespace": "pd3", - "name": "Premium Mask 8", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, + "name": "Steam Tailor pack 01 mask 04 ", + "entitlementType": "DURABLE", "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, @@ -24476,61 +50262,71 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T12:40:04.284Z", - "discountPurchaseAt": "2023-02-07T12:40:04.284Z" + "purchaseAt": "2023-11-15T12:33:59.511Z", + "discountPurchaseAt": "2023-11-15T12:33:59.511Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ - "Premium", - "RarityLegendary" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T12:40:04.227Z", + "createdAt": "2023-11-15T12:33:45.572Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Mask 9", - "itemId": "737a2739479c49f184b5a1c6c1c6f4c1", + "title": "Steam Tailor pack 01 suit 01", + "itemId": "a5fbc130a37046059af2b93df1496e29", "baseAppId": "", - "sku": "pd3_cosmetic_mask_premium9", + "sku": "pd3_steam_cosmetic_tailorpack_01_suit_01", "namespace": "pd3", - "name": "Premium Mask 9", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumMask", + "name": "Steam Tailor pack 01 suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T12:41:48.427Z", - "discountPurchaseAt": "2023-02-07T12:41:48.427Z" + "purchaseAt": "2023-11-15T13:55:28.824Z", + "discountPurchaseAt": "2023-11-15T13:55:28.824Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ - "RarityEpic", + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24538,42 +50334,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T12:41:48.386Z", + "createdAt": "2023-11-15T13:55:14.498Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium PlayStation Mask 7", - "itemId": "ef8117da082c4c7691b27ed9ebb1a223", + "title": "Steam Tailor pack 01 suit 02", + "itemId": "57596dc1166e4cc7933f0f866d39872d", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_mask_premium7", + "sku": "pd3_steam_cosmetic_tailorpack_01_suit_02", "namespace": "pd3", - "name": "Premium PlayStation Mask 7", + "name": "Steam Tailor pack 01 suit 02", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-24T11:52:53.320Z", - "discountPurchaseAt": "2023-10-24T11:52:53.320Z" + "purchaseAt": "2023-11-15T13:51:34.59Z", + "discountPurchaseAt": "2023-11-15T13:51:34.59Z" } ], "itemQty": {}, "boundItemIds": [ - "3c49d557e1b0440fa75e11bcede06d94" + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" ], "tags": [ "PlatformOnly", - "PlayStation", + "Steam", "Premium" ], "features": [], @@ -24581,37 +50379,41 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-24T11:52:52.548Z", + "createdAt": "2023-11-15T13:51:20.267Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Steam Mask 7", - "itemId": "6221840f6dc94ac18ca54e4a2962a4b3", + "title": "Steam Tailor pack 01 suit 03", + "itemId": "eb9eddc16a6b421f80d2c3d2f36229c5", "baseAppId": "", - "sku": "pd3_steam_cosmetic_mask_premium7", + "sku": "pd3_steam_cosmetic_tailorpack_01_suit_03", "namespace": "pd3", - "name": "Premium Steam Mask 7", + "name": "Steam Tailor pack 01 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-03T11:42:33.200Z", - "discountPurchaseAt": "2023-09-03T11:42:33.200Z" + "purchaseAt": "2023-11-15T13:47:20.65Z", + "discountPurchaseAt": "2023-11-15T13:47:20.65Z" } ], "itemQty": {}, - "boundItemIds": [], + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" + ], "tags": [ "PlatformOnly", "Steam", @@ -24622,16 +50424,16 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:29:15.592Z", + "createdAt": "2023-11-15T13:47:06.365Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit - Preorder", - "itemId": "175b6b75241e42e4b023c4d4b1950e99", + "title": "Steam Tailor pack 01 suit 04", + "itemId": "09d5e836e5a041d7a73d5e4a6782d12b", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_01_suit_04", "namespace": "pd3", - "name": "Premium Suit - Preorder", + "name": "Steam Tailor pack 01 suit 04", "entitlementType": "DURABLE", "categoryPath": "/PremiumSuit", "status": "ACTIVE", @@ -24647,15 +50449,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:37:17.674Z", - "discountPurchaseAt": "2023-03-17T15:37:17.674Z" + "purchaseAt": "2023-11-15T13:22:53.048Z", + "discountPurchaseAt": "2023-11-15T13:22:53.048Z" } ], "itemQty": {}, "boundItemIds": [ - "ce54b97b24184553ae56f1ffc3d54363" + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5", + "9f7a29d54a5c4e20a8c8176c7b1ecf01" ], "tags": [ + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24663,21 +50469,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:37:17.590Z", + "createdAt": "2023-11-15T13:22:38.813Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit - Preorder - Steam", - "itemId": "dea43e9c1ef842c781cce84de3792004", + "title": "Steam Tailor pack 02 gloves 01", + "itemId": "90704d5499664cbcbee0077aa4cee500", "baseAppId": "", - "sku": "pd3_steam_cosmetic_suit_premiumsuit_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_02_gloves_01", "namespace": "pd3", - "name": "Premium Suit - Preorder - Steam", + "name": "Steam Tailor pack 02 gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24688,13 +50494,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T12:55:34.624Z", - "discountPurchaseAt": "2023-09-06T12:55:34.624Z" + "purchaseAt": "2024-03-06T12:45:11.338Z", + "discountPurchaseAt": "2024-03-06T12:45:11.338Z" } ], "itemQty": {}, "boundItemIds": [ - "e29db70296e14583a91a9126d363d780" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" ], "tags": [ "PlatformOnly", @@ -24706,21 +50514,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T12:55:33.944Z", + "createdAt": "2024-03-06T12:45:11.589Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit - Preorder Epic", - "itemId": "e13829fbefee483593cae042dd9dc456", + "title": "Steam Tailor pack 02 gloves 02", + "itemId": "8a5735aeea2c4d0caee2c08590345ad3", "baseAppId": "", - "sku": "pd3_epic_cosmetic_suit_premiumsuit_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_02_gloves_02", "namespace": "pd3", - "name": "Premium Suit - Preorder Epic", + "name": "Steam Tailor pack 02 gloves 02", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24731,17 +50539,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T12:58:52.131Z", - "discountPurchaseAt": "2023-09-06T12:58:52.131Z" + "purchaseAt": "2024-03-06T12:46:00.604Z", + "discountPurchaseAt": "2024-03-06T12:46:00.604Z" } ], "itemQty": {}, "boundItemIds": [ - "6cce475cf54b4d0090df7e6df40170aa" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" ], "tags": [ "PlatformOnly", - "Epic", + "Steam", "Premium" ], "features": [], @@ -24749,21 +50559,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T12:58:51.457Z", + "createdAt": "2024-03-06T12:46:00.843Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit - Preorder PlayStation", - "itemId": "8816cc16a74740f3aff7819ee37e1751", + "title": "Steam Tailor pack 02 gloves 03", + "itemId": "f0d93dd993de4264bc176e1a3c9e4665", "baseAppId": "", - "sku": "pd3_playstation_cosmetic_suit_premiumsuit_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_02_gloves_03", "namespace": "pd3", - "name": "Premium Suit - Preorder PlayStation", + "name": "Steam Tailor pack 02 gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24774,17 +50584,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T12:58:01.478Z", - "discountPurchaseAt": "2023-09-06T12:58:01.478Z" + "purchaseAt": "2024-03-06T12:47:00.074Z", + "discountPurchaseAt": "2024-03-06T12:47:00.074Z" } ], "itemQty": {}, "boundItemIds": [ - "ec4e47fbeb9243a0b965f447ec6e10d5" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" ], "tags": [ "PlatformOnly", - "PlayStation", + "Steam", "Premium" ], "features": [], @@ -24792,21 +50604,21 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T12:58:00.774Z", + "createdAt": "2024-03-06T12:47:00.316Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit - Preorder XBox", - "itemId": "b968640f272e4858aac2a2363445fa94", + "title": "Steam Tailor pack 02 gloves 04", + "itemId": "deba500d01ad4edd87b61cbaeb9871ea", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_suit_premiumsuit_preorder", + "sku": "pd3_steam_cosmetic_tailorpack_02_gloves_04", "namespace": "pd3", - "name": "Premium Suit - Preorder XBox", + "name": "Steam Tailor pack 02 gloves 04", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -24817,17 +50629,19 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T12:56:42.410Z", - "discountPurchaseAt": "2023-09-06T12:56:42.410Z" + "purchaseAt": "2024-03-06T12:47:45.593Z", + "discountPurchaseAt": "2024-03-06T12:47:45.593Z" } ], "itemQty": {}, "boundItemIds": [ - "6f46ee17db244f36bc6cc977609d8274" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" ], "tags": [ "PlatformOnly", - "XBox", + "Steam", "Premium" ], "features": [], @@ -24835,40 +50649,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T12:56:41.702Z", + "createdAt": "2024-03-06T12:47:45.842Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 1", - "itemId": "fba043310ed145f7ae3782e62d9fc1d4", + "title": "Steam Tailor pack 02 mask 01", + "itemId": "f03326c29b8c41d8830cb223fc546fc5", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit1", + "sku": "pd3_steam_cosmetic_tailorpack_02_mask_01", "namespace": "pd3", - "name": "Premium Suit 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumSuit", + "name": "Steam Tailor pack 02 mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:51:44.752Z", - "discountPurchaseAt": "2023-02-07T16:51:44.752Z" + "purchaseAt": "2024-03-06T08:48:56.068Z", + "discountPurchaseAt": "2024-03-06T08:48:56.068Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "RarityEpic", + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24876,40 +50694,44 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:51:44.678Z", + "createdAt": "2024-03-06T08:48:56.198Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 2", - "itemId": "11c251dd23f04f81a9819aa1631fec00", + "title": "Steam Tailor pack 02 mask 02", + "itemId": "2ab11476f72e481aa90c707cbb6163ae", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit2", + "sku": "pd3_steam_cosmetic_tailorpack_02_mask_02", "namespace": "pd3", - "name": "Premium Suit 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumSuit", + "name": "Steam Tailor pack 02 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:52:36.463Z", - "discountPurchaseAt": "2023-02-07T16:52:36.463Z" + "purchaseAt": "2024-03-06T10:33:45.283Z", + "discountPurchaseAt": "2024-03-06T10:33:45.283Z" } ], - "itemQty": {}, + "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "RarityEpic", + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -24917,99 +50739,107 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:52:36.391Z", + "createdAt": "2024-03-06T10:33:45.445Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 3", - "itemId": "a4d23e37dfeb48cf8381a1d7f374bb12", + "title": "Steam Tailor pack 02 mask 03", + "itemId": "db96930d512645238d191f3e379c423a", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit3", + "sku": "pd3_steam_cosmetic_tailorpack_02_mask_03", "namespace": "pd3", - "name": "Premium Suit 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumSuit", + "name": "Steam Tailor pack 02 mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:53:29.773Z" + "purchaseAt": "2024-03-06T10:34:52.361Z", + "discountPurchaseAt": "2024-03-06T10:34:52.361Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "Premium", - "RarityLegendary" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:53:29.702Z", + "createdAt": "2024-03-06T10:34:52.531Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 4", - "itemId": "1f2b0b9d08264d1a8106e77c175a0fff", + "title": "Steam Tailor pack 02 mask 04", + "itemId": "45aa8cb1b45b4cc0904a64f4cb765574", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit4", + "sku": "pd3_steam_cosmetic_tailorpack_02_mask_04", "namespace": "pd3", - "name": "Premium Suit 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/PremiumSuit", + "name": "Steam Tailor pack 02 mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:54:35.515Z" + "purchaseAt": "2024-03-06T10:35:45.206Z", + "discountPurchaseAt": "2024-03-06T10:35:45.206Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "Premium", - "RarityLegendary" + "PlatformOnly", + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:54:35.440Z", + "createdAt": "2024-03-06T10:35:45.38Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 5", - "itemId": "dd8173d8c097417d90250f8a800b748d", + "title": "Steam Tailor pack 02 suit 01", + "itemId": "f8a570f007c6499e80056a075b987de9", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit5", + "sku": "pd3_steam_cosmetic_tailorpack_02_suit_01", "namespace": "pd3", - "name": "Premium Suit 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, + "name": "Steam Tailor pack 02 suit 01", + "entitlementType": "DURABLE", "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, @@ -25017,19 +50847,26 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:55:22.984Z" + "purchaseAt": "2024-03-06T13:26:01.154Z", + "discountPurchaseAt": "2024-03-06T13:26:01.154Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "RarityEpic", + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -25037,19 +50874,17 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:55:22.916Z", + "createdAt": "2024-03-06T13:26:01.423Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium Suit 6", - "itemId": "38235311bd564758ad2666813f1c2f66", + "title": "Steam Tailor pack 02 suit 02", + "itemId": "9f189fc992204b73a17ed9d9c07861ff", "baseAppId": "", - "sku": "pd3_cosmetic_suit_premiumsuit6", + "sku": "pd3_steam_cosmetic_tailorpack_02_suit_02", "namespace": "pd3", - "name": "Premium Suit 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, + "name": "Steam Tailor pack 02 suit 02", + "entitlementType": "DURABLE", "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, @@ -25057,19 +50892,26 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-07T16:56:17.614Z" + "purchaseAt": "2024-03-06T13:26:57.381Z", + "discountPurchaseAt": "2024-03-06T13:26:57.381Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ - "RarityEpic", + "PlatformOnly", + "Steam", "Premium" ], "features": [], @@ -25077,75 +50919,67 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-07T16:56:17.544Z", + "createdAt": "2024-03-06T13:26:57.651Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Premium XBox Mask 7", - "itemId": "0ec654017e2c4b32868bf05f40578872", + "title": "Steam Tailor pack 02 suit 03", + "itemId": "d06db2883e0d4d26ae078f82e40ec5a4", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_mask_premium7", + "sku": "pd3_steam_cosmetic_tailorpack_02_suit_03", "namespace": "pd3", - "name": "Premium XBox Mask 7", + "name": "Steam Tailor pack 02 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, - "currencyCode": "CRED", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-03T11:44:47.636Z", - "discountPurchaseAt": "2023-09-03T11:44:47.636Z" + "purchaseAt": "2024-03-06T13:27:39.529Z", + "discountPurchaseAt": "2024-03-06T13:27:39.529Z" } ], "itemQty": {}, "boundItemIds": [ - "0863f6d764a249649ef49545e3b9e4bb" + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" ], "tags": [ "PlatformOnly", - "Premium", - "XBox" + "Steam", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-05T18:31:19.718Z", + "createdAt": "2024-03-06T13:27:39.796Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Preset - PD2 Promo", - "itemId": "22353e0584ef4a2596e4630759a29bf7", + "title": "Steam Tailor pack 02 suit 04", + "itemId": "9d807388b7464a9bafc03b05cc08e6dc", "baseAppId": "", - "sku": "pd3_wpn_preset_promo1", + "sku": "pd3_steam_cosmetic_tailorpack_02_suit_04", "namespace": "pd3", - "name": "Preset - PD2 Promo", + "name": "Steam Tailor pack 02 suit 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponPreset", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", - "images": [ - { - "as": "Old Faithful", - "caption": "Icon_Preset_Weapon_Old_Faithful (1).png", - "height": 400, - "width": 400, - "imageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/6cb05a564037454ab9c08942abd1e959.png", - "smallImageUrl": "https://cdn.nebula.starbreeze.com/files/pd3/assets/b77328c01fe848808edd80e086e72a0e.png" - } - ], "regionData": [ { "price": 0, @@ -25155,33 +50989,43 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-17T15:29:30.399Z" + "purchaseAt": "2024-03-06T13:28:34.059Z", + "discountPurchaseAt": "2024-03-06T13:28:34.059Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "a726b9c47e9546a3bfab010b448c8b41" + ], "tags": [ + "PlatformOnly", + "Steam", "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-17T15:29:30.203Z", + "createdAt": "2024-03-06T13:28:34.338Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Preset Epic - PD2 Promo", - "itemId": "583b56c0fa5d46e2bf70eb11c530e793", + "title": "Steam Weapon Charm DLC1", + "itemId": "db016db364ee4309a33672b370535c6a", "baseAppId": "", - "sku": "pd3_epic_wpn_preset_promo1", + "sku": "pd3_steam_cosmetic_weapon_charm_dlc1", "namespace": "pd3", - "name": "Preset Epic - PD2 Promo", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponPreset", + "name": "Steam Weapon Charm DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -25192,36 +51036,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T07:08:03.957Z", - "discountPurchaseAt": "2023-09-06T07:08:03.957Z" + "purchaseAt": "2023-11-10T14:17:27.979Z", + "discountPurchaseAt": "2023-11-10T14:17:27.979Z" } ], "itemQty": {}, + "boundItemIds": [ + "1cdb0fddde344c0ea9ae09ee408e66d7", + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5" + ], "tags": [ "PlatformOnly", - "Epic", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T07:08:00.033Z", + "createdAt": "2023-11-10T14:17:23.041Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Preset PlayStation - PD2 Promo", - "itemId": "493a6cedfdc845e69580d4b9171c7762", + "title": "Steam Weapon Charm DLC2", + "itemId": "95cb14c956d44810b6a494017c2a4655", "baseAppId": "", - "sku": "pd3_playstation_wpn_preset_promo1", + "sku": "pd3_steam_cosmetic_weapon_charm_dlc2", "namespace": "pd3", - "name": "Preset PlayStation - PD2 Promo", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponPreset", + "name": "Steam Weapon Charm DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -25232,36 +51082,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T07:07:05.193Z", - "discountPurchaseAt": "2023-09-06T07:07:05.193Z" + "purchaseAt": "2024-02-14T16:12:06.379Z", + "discountPurchaseAt": "2024-02-14T16:12:06.379Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "16eb187877eb4b7da217b0d5698a8aa9" + ], "tags": [ "PlatformOnly", - "PlayStation", - "Premium" + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T07:07:01.296Z", + "createdAt": "2024-02-14T16:12:07.496Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Preset XBox - PD2 Promo", - "itemId": "c1c4677343e4440cae3f8d5fb8578528", + "title": "Steam Weapon Sticker DLC1", + "itemId": "40871e8526f84829b96a25313ea213d3", "baseAppId": "", - "sku": "pd3_xbox_wpn_preset_promo1", + "sku": "pd3_steam_cosmetic_weapon_sticker_dlc1", "namespace": "pd3", - "name": "Preset XBox - PD2 Promo", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponPreset", + "name": "Steam Weapon Sticker DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { @@ -25272,654 +51128,717 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:53:11.526Z", - "discountPurchaseAt": "2023-09-06T06:53:11.526Z" + "purchaseAt": "2023-11-10T14:32:05.069Z", + "discountPurchaseAt": "2023-11-10T14:32:05.069Z" } ], "itemQty": {}, + "boundItemIds": [ + "1cdb0fddde344c0ea9ae09ee408e66d7", + "b4876983c73544a19ad2e481f7eb8b76", + "7615a6e20b364dfa9b912ebc164880a5" + ], "tags": [ "PlatformOnly", - "Premium", - "XBox" + "Inexhaustible", + "Steam" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:53:07.654Z", + "createdAt": "2023-11-10T14:32:00.059Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 0", - "itemId": "ebecec576147407fba1ca1df8362b6f9", + "title": "Steam Weapon Sticker DLC2", + "itemId": "3f8e036142d547e48857ad076f40de6a", "baseAppId": "", - "sku": "pd3_slot_primary0", + "sku": "pd3_steam_cosmetic_weapon_sticker_dlc2", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 0", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Steam Weapon Sticker DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T12:37:22.842Z" + "purchaseAt": "2024-02-14T16:49:44.908Z", + "discountPurchaseAt": "2024-02-14T16:49:44.908Z" } ], "itemQty": {}, + "boundItemIds": [ + "b4876983c73544a19ad2e481f7eb8b76", + "f3e42193cfb74a7b8afaaf57a578369f", + "16eb187877eb4b7da217b0d5698a8aa9" + ], "tags": [ - "CombatEquipmentVendor", - "PriceProgression0", - "InitialItem" + "PlatformOnly", + "Inexhaustible", + "Steam" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T12:37:22.691Z", + "createdAt": "2024-02-14T16:49:46.103Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 1", - "itemId": "013c2de7a2c948c2aa332f385ab42574", + "title": "Suit 1: Base", + "itemId": "effccebd4e904915930c87711cf7213f", "baseAppId": "", - "sku": "pd3_slot_primary1", + "sku": "pd3_cosmetic_suit_suit1_base", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 1", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 1: Base", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T12:55:03.040Z" + "purchaseAt": "2023-02-08T08:49:28.538Z", + "discountPurchaseAt": "2023-02-08T08:49:28.538Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression1", - "InitialItem" + "RarityCommon", + "TailorVendor", + "InfamyLevel2" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T12:55:02.871Z", + "createdAt": "2023-02-08T08:49:28.46Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 10", - "itemId": "e739a48113a4472c85b24fd3831bd608", + "title": "Suit 1: Variant 1", + "itemId": "684d17aef7cd4d83862620559ec7d7eb", "baseAppId": "", - "sku": "pd3_slot_primary10", + "sku": "pd3_cosmetic_suit_suit1_variant1", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 10", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 1: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:19:32.838Z" + "purchaseAt": "2023-02-08T09:26:10.677Z", + "discountPurchaseAt": "2023-02-08T09:26:10.677Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", - "CombatEquipmentVendor", - "InitialItem" + "RarityCommon", + "TailorVendor", + "InfamyLevel6" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:19:32.616Z", + "createdAt": "2023-02-08T09:26:10.54Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 2", - "itemId": "1d2bced5ad1342ffbb62c7fae55deaec", + "title": "Suit 1: Variant 2", + "itemId": "91b0506149bf4260872f18302d736a30", "baseAppId": "", - "sku": "pd3_slot_primary2", + "sku": "pd3_cosmetic_suit_suit1_variant2", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 2", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 1: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:02:20.280Z" + "purchaseAt": "2023-02-08T10:13:53.914Z", + "discountPurchaseAt": "2023-02-08T10:13:53.915Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression2", - "InitialItem" + "RarityCommon", + "TailorVendor", + "InfamyLevel35" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:02:20.080Z", + "createdAt": "2023-02-08T10:13:53.748Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 3", - "itemId": "340d5894c6154924996fcf37924f64b2", + "title": "Suit 1: Variant 3", + "itemId": "097dd71736794726ad2a63ff671a7786", "baseAppId": "", - "sku": "pd3_slot_primary3", + "sku": "pd3_cosmetic_suit_suit1_variant3", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 3", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 1: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:04:01.431Z" + "purchaseAt": "2023-02-08T10:15:15.896Z", + "discountPurchaseAt": "2023-02-08T10:15:15.896Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression3", - "InitialItem" + "InfamyLevel73", + "RarityCommon", + "TailorVendor" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:04:01.261Z", + "createdAt": "2023-02-08T10:15:15.729Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 4", - "itemId": "c70086391f36430787185081d95d093d", + "title": "Suit 1: Variant 4", + "itemId": "908d2b44580e40a38fc65a22c8febf61", "baseAppId": "", - "sku": "pd3_slot_primary4", + "sku": "pd3_cosmetic_suit_suit1_variant4", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 4", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 1: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:05:23.919Z" + "purchaseAt": "2023-05-29T08:56:55.854Z", + "discountPurchaseAt": "2023-05-29T08:56:55.854Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression4", - "InitialItem" + "RarityEpic", + "TailorVendor", + "InfamyLevel89" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:05:23.709Z", + "createdAt": "2023-05-29T08:56:55.79Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 5", - "itemId": "81676bf089924771895867b64203d362", + "title": "Suit 2: Base", + "itemId": "538c32c03831451b9f8bcbbae909fd21", "baseAppId": "", - "sku": "pd3_slot_primary5", + "sku": "pd3_cosmetic_suit_suit2_base", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 5", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 2: Base", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:06:45.319Z" + "purchaseAt": "2023-02-08T08:54:36.911Z", + "discountPurchaseAt": "2023-02-08T08:54:36.911Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression5", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel3" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:06:45.104Z", + "createdAt": "2023-02-08T08:54:36.777Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 6", - "itemId": "eb4f6bf2fd4f48858b6fae3750d54484", + "title": "Suit 2: Variant 1", + "itemId": "6860d820a92240fb83d83fcffec9f6cf", "baseAppId": "", - "sku": "pd3_slot_primary6", + "sku": "pd3_cosmetic_suit_suit2_variant1", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 6", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 2: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:08:20.374Z" + "purchaseAt": "2023-02-08T10:19:16.759Z", + "discountPurchaseAt": "2023-02-08T10:19:16.759Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression6", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel18" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:08:20.164Z", + "createdAt": "2023-02-08T10:19:16.6Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 7", - "itemId": "67d258622b54420caa82a52e2648eb7e", + "title": "Suit 2: Variant 2", + "itemId": "b7df78781c034d27a709d4906a53221c", "baseAppId": "", - "sku": "pd3_slot_primary7", + "sku": "pd3_cosmetic_suit_suit2_variant2", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 7", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 2: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:12:33.046Z" + "purchaseAt": "2023-02-08T10:20:29.438Z", + "discountPurchaseAt": "2023-02-08T10:20:29.438Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression7", - "InitialItem" + "InfamyLevel40", + "RarityUncommon", + "TailorVendor" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:12:32.833Z", + "createdAt": "2023-02-08T10:20:29.275Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 8", - "itemId": "de00c1f200444a8ab478532576d282d2", + "title": "Suit 2: Variant 3", + "itemId": "8e9b0924b0af4233ba0d9320802749ee", "baseAppId": "", - "sku": "pd3_slot_primary8", + "sku": "pd3_cosmetic_suit_suit2_variant3", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 8", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 2: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:14:55.942Z" + "purchaseAt": "2023-02-08T10:24:13.395Z", + "discountPurchaseAt": "2023-02-08T10:24:13.395Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression8", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel66" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:14:55.751Z", + "createdAt": "2023-02-08T10:24:13.237Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Primary Weapon Inventory Slot: Price Progression 9", - "itemId": "a1d81e0423f54d298c8d61019daa095b", + "title": "Suit 2: Variant 4", + "itemId": "a273f8a97b4146d4b468bd4c49435e6e", "baseAppId": "", - "sku": "pd3_slot_primary9", + "sku": "pd3_cosmetic_suit_suit2_variant4", "namespace": "pd3", - "name": "Primary Weapon Inventory Slot: Price Progression 9", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 2: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:18:14.254Z" + "purchaseAt": "2023-05-29T09:01:35.846Z", + "discountPurchaseAt": "2023-05-29T09:01:35.846Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression9", - "InitialItem" + "RarityEpic", + "InfamyLevel91", + "TailorVendor" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:18:14.042Z", + "createdAt": "2023-05-29T09:01:35.753Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "RC Signal Armored Transport Preplanning asset", - "itemId": "86104f11f3534828b6112f28717c5308", + "title": "Suit 3: Base", + "itemId": "34c91b06bf464e079eb16154628605b1", "baseAppId": "", - "sku": "pd3_preplanning_armoredtransport_2", + "sku": "pd3_cosmetic_suit_suit3_base", "namespace": "pd3", - "name": "RC Signal Armored Transport Preplanning asset", + "name": "Suit 3: Base", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-08T08:56:31.429Z", + "discountPurchaseAt": "2023-02-08T08:56:31.429Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel11" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:19:54.852Z", + "createdAt": "2023-02-08T08:56:31.298Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Revolver Bison", - "itemId": "2d9994e5e158443cba18595f556a80e6", + "title": "Suit 3: Variant 1", + "itemId": "f52b54ba84e94e3c9a53a4b59810dbe1", "baseAppId": "", - "sku": "pd3_wpn_revolver_bison", + "sku": "pd3_cosmetic_suit_suit3_variant1", "namespace": "pd3", - "name": "Revolver Bison", + "name": "Suit 3: Variant 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Weapon", + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-08T10:26:34.886Z", + "discountPurchaseAt": "2023-02-08T10:26:34.886Z" } ], "itemQty": {}, - "boundItemIds": [], "tags": [ - "CombatEquipmentVendor", - "InfamyLevel70" + "RarityUncommon", + "TailorVendor", + "InfamyLevel25" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-26T07:53:48.463Z", + "createdAt": "2023-02-08T10:26:34.743Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Revolver SW29", - "itemId": "64126b1908e34b3ba57c6aea20c9757b", + "title": "Suit 3: Variant 2", + "itemId": "07c9fcbc8067437ba929266931276960", "baseAppId": "", - "sku": "pd3_wpn_revolver_castigo44", + "sku": "pd3_cosmetic_suit_suit3_variant2", "namespace": "pd3", - "name": "Revolver Castigo44", + "name": "Suit 3: Variant 2", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/Weapon", + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 75000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 75000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-08T10:28:01.001Z", + "discountPurchaseAt": "2023-02-08T10:28:01.001Z" } ], "itemQty": {}, - "boundItemIds": [], "tags": [ - "InfamyLevel10", - "CombatEquipmentVendor" + "RarityUncommon", + "TailorVendor", + "InfamyLevel45" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-11-01T08:52:08.284Z", + "createdAt": "2023-02-08T10:28:00.843Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SMG UziPro", - "itemId": "d91471f5b1e8491f97c1490c11d5ca0a", + "title": "Suit 3: Variant 3", + "itemId": "c375a70239a24efebd9aa5f03706f7ee", "baseAppId": "", - "sku": "pd3_wpn_smg_commando", + "sku": "pd3_cosmetic_suit_suit3_variant3", "namespace": "pd3", - "name": "SMG Commando", + "name": "Suit 3: Variant 3", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Weapon", + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-08T10:30:13.752Z", + "discountPurchaseAt": "2023-02-08T10:30:13.752Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel29" + "RarityUncommon", + "TailorVendor", + "InfamyLevel69" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-05-17T11:55:07.313Z", + "createdAt": "2023-02-08T10:30:13.645Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SMG MP7", - "itemId": "565c16024092468d93118d3426e8692f", + "title": "Suit 3: Variant 4", + "itemId": "20ef3bcaebe746ab9ffb1e7cb2e6cfdb", "baseAppId": "", - "sku": "pd3_wpn_smg_compact7", + "sku": "pd3_cosmetic_suit_suit3_variant4", "namespace": "pd3", - "name": "SMG Compact7", + "name": "Suit 3: Variant 4", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/Weapon", + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-05-29T09:04:13.89Z", + "discountPurchaseAt": "2023-05-29T09:04:13.89Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel65", - "CombatEquipmentVendor" + "RarityEpic", + "TailorVendor", + "InfamyLevel128" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-11-01T08:50:20.706Z", + "createdAt": "2023-05-29T09:04:13.817Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SMG PC9", - "itemId": "43899d4fcd7849c2960d34e8f723f8e9", + "title": "Suit 4: Base", + "itemId": "7324fc1843f440cebef4237acecd6c36", "baseAppId": "", - "sku": "pd3_wpn_smg_pc9", + "sku": "pd3_cosmetic_suit_suit4_base", "namespace": "pd3", - "name": "SMG PC9", + "name": "Suit 4: Base", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Weapon", + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -25932,379 +51851,410 @@ "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-02-08T09:00:24.564Z", + "discountPurchaseAt": "2023-02-08T09:00:24.564Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel18" + "InfamyLevel31", + "RarityUncommon", + "TailorVendor" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-12T11:22:52.952Z", + "createdAt": "2023-02-08T09:00:24.438Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 0", - "itemId": "32c494eab8ba4a60bed65189775950c9", + "title": "Suit 4: Variant 1", + "itemId": "853bbd247b0c4cd983c04a0d35dcae82", "baseAppId": "", - "sku": "pd3_slot_secondary0", + "sku": "pd3_cosmetic_suit_suit4_variant1", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 0", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 4: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:22:42.285Z" + "purchaseAt": "2023-02-08T10:33:57.249Z", + "discountPurchaseAt": "2023-02-08T10:33:57.249Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression0", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel56" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:22:42.057Z", + "createdAt": "2023-02-08T10:33:57.107Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 1", - "itemId": "76a20159f5624049b21edd7da51dc508", + "title": "Suit 4: Variant 2", + "itemId": "a2a245c11edf4b5e9e4ff951236cce80", "baseAppId": "", - "sku": "pd3_slot_secondary1", + "sku": "pd3_cosmetic_suit_suit4_variant2", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 1", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 4: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:23:53.886Z" + "purchaseAt": "2023-02-08T10:35:37.804Z", + "discountPurchaseAt": "2023-02-08T10:35:37.804Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression1", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel80" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:23:53.678Z", + "createdAt": "2023-02-08T10:35:37.661Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 10", - "itemId": "1c7ff668bf2446cdbc53971ba6249f14", + "title": "Suit 4: Variant 3", + "itemId": "ab069003872e4622be1affde42b2888a", "baseAppId": "", - "sku": "pd3_slot_secondary10", + "sku": "pd3_cosmetic_suit_suit4_variant3", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 10", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 4: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5, - "currencyCode": "GOLD", + "discountedPrice": 300000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:40:17.820Z" + "purchaseAt": "2023-02-08T10:38:07.449Z", + "discountPurchaseAt": "2023-02-08T10:38:07.449Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", - "CombatEquipmentVendor", - "InitialItem" + "RarityUncommon", + "TailorVendor", + "InfamyLevel104" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:40:17.581Z", + "createdAt": "2023-02-08T10:38:07.32Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 2", - "itemId": "83f4064041784307a9b6f9cd0a2dfba4", + "title": "Suit 4: Variant 4", + "itemId": "1adf5205150740e586dc3a5b97dc6afa", "baseAppId": "", - "sku": "pd3_slot_secondary2", + "sku": "pd3_cosmetic_suit_suit4_variant4", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 2", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 4: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 300000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 300000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:27:51.629Z" + "purchaseAt": "2023-05-29T09:05:16.707Z", + "discountPurchaseAt": "2023-05-29T09:05:16.707Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression2", - "InitialItem" + "RarityEpic", + "TailorVendor", + "InfamyLevel135" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:27:51.405Z", + "createdAt": "2023-05-29T09:05:16.664Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 3", - "itemId": "2fc5ff0134a34cb1b5b9de7f6393d2be", + "title": "Suit 5: Base", + "itemId": "c63d70bc10b044daa447a7e4e37da859", "baseAppId": "", - "sku": "pd3_slot_secondary3", + "sku": "pd3_cosmetic_suit_suit5_base", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 3", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 5: Base", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:28:57.749Z" + "purchaseAt": "2023-02-08T09:02:02.618Z", + "discountPurchaseAt": "2023-02-08T09:02:02.618Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression3", - "InitialItem" + "InfamyLevel50", + "TailorVendor", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:28:57.513Z", + "createdAt": "2023-02-08T09:02:02.705Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 4", - "itemId": "276de5b215ba4e8c8bb478d830e3e4de", + "title": "Suit 5: Variant 1", + "itemId": "7e2f73a6ca314585ba089f838396c671", "baseAppId": "", - "sku": "pd3_slot_secondary4", + "sku": "pd3_cosmetic_suit_suit5_variant1", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 4", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 5: Variant 1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:32:55.213Z" + "purchaseAt": "2023-02-08T10:44:20.789Z", + "discountPurchaseAt": "2023-02-08T10:44:20.789Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression4", - "InitialItem" + "InfamyLevel64", + "TailorVendor", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:32:54.981Z", + "createdAt": "2023-02-08T10:44:20.668Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 5", - "itemId": "79b0ca9c0fa24fd6a059e46318deda0d", + "title": "Suit 5: Variant 2", + "itemId": "1a7e695022d14b00bd410427dd28d067", "baseAppId": "", - "sku": "pd3_slot_secondary5", + "sku": "pd3_cosmetic_suit_suit5_variant2", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 5", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 5: Variant 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:34:22.397Z" + "purchaseAt": "2023-02-08T12:02:52.947Z", + "discountPurchaseAt": "2023-02-08T12:02:52.947Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression5", - "InitialItem" + "InfamyLevel85", + "TailorVendor", + "RarityRare" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:34:22.156Z", + "createdAt": "2023-02-08T12:02:52.934Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 6", - "itemId": "7337afd9ac8345fd917f94685ac3f96a", + "title": "Suit 5: Variant 3", + "itemId": "0e6b9010033042a999f4e47e4da79382", "baseAppId": "", - "sku": "pd3_slot_secondary6", + "sku": "pd3_cosmetic_suit_suit5_variant3", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 6", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 5: Variant 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:35:44.460Z" + "purchaseAt": "2023-02-08T12:05:07.318Z", + "discountPurchaseAt": "2023-02-08T12:05:07.318Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression6", - "InitialItem" + "TailorVendor", + "RarityRare", + "InfamyLevel116" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:35:44.218Z", + "createdAt": "2023-02-08T12:05:07.257Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 7", - "itemId": "3fc2fb0e3563455aa2369593909269e1", + "title": "Suit 5: Variant 4", + "itemId": "0c0f8e17c64642c694e34afdda2ee5c3", "baseAppId": "", - "sku": "pd3_slot_secondary7", + "sku": "pd3_cosmetic_suit_suit5_variant4", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 7", - "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "name": "Suit 5: Variant 4", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/Suit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 500000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 500000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:36:44.437Z" + "purchaseAt": "2023-05-29T09:06:33.902Z", + "discountPurchaseAt": "2023-05-29T09:06:33.902Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression7", - "InitialItem" + "RarityEpic", + "TailorVendor", + "InfamyLevel144" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:36:44.197Z", + "createdAt": "2023-05-29T09:06:33.845Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 8", - "itemId": "4825d6a6b29c4b0cbafaa7229edecbf9", + "title": "Suit Inventory Slot - Initial", + "itemId": "f80ba665b65748f4bdc74e2c5108cd3a", "baseAppId": "", - "sku": "pd3_slot_secondary8", + "sku": "pd3_slot_suit_initial", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 8", + "name": "Suit Inventory Slot", "entitlementType": "DURABLE", "categoryPath": "/Slots", "status": "ACTIVE", @@ -26313,37 +52263,33 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 100, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:38:13.860Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression8", "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:38:13.617Z", + "createdAt": "2022-10-06T13:11:32.547Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secondary Weapon Inventory Slot: Price Progression 9", - "itemId": "2fef9a919c2a4bffa14c87142bb997d5", + "title": "Suit Inventory Slot: Price Progression 0", + "itemId": "b172917295154eb687c9205a7d4a4966", "baseAppId": "", - "sku": "pd3_slot_secondary9", + "sku": "pd3_slot_suit0", "namespace": "pd3", - "name": "Secondary Weapon Inventory Slot: Price Progression 9", + "name": "Suit Inventory Slot: Price Progression 0", "entitlementType": "DURABLE", "categoryPath": "/Slots", "status": "ACTIVE", @@ -26352,20 +52298,20 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-01-02T13:39:17.292Z" + "purchaseAt": "2022-11-14T12:07:45.336Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "PriceProgression9", + "TailorVendor", + "PriceProgression0", "InitialItem" ], "features": [], @@ -26373,263 +52319,274 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-01-02T13:39:17.050Z", + "createdAt": "2022-11-14T12:07:45.284Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Secure Point Branch Bank Preplanning asset", - "itemId": "7ffcce86f7bb4dd78e9fcd6755fc9a43", - "baseAppId": "", - "sku": "pd3_preplanning_branchbank_2", - "namespace": "pd3", - "name": "Secure Point Branch Bank Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "title": "Suit Inventory Slot: Price Progression 1", + "itemId": "88768e31ac3b4226925bd380ca94f534", + "baseAppId": "", + "sku": "pd3_slot_suit1", + "namespace": "pd3", + "name": "Suit Inventory Slot: Price Progression 1", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:10:11.477Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", + "PriceProgression1", + "TailorVendor", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:16:48.791Z", + "createdAt": "2022-11-14T12:10:11.411Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Sentry Gun", - "itemId": "2b576f24e06949148ded46749e50377f", + "title": "Suit Inventory Slot: Price Progression 10", + "itemId": "b5179102795e4f4284ce792e3c475e7b", "baseAppId": "", - "sku": "pd3_placeable_sentry", + "sku": "pd3_slot_suit10", "namespace": "pd3", - "name": "Sentry Gun", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Placeable", + "name": "Suit Inventory Slot: Price Progression 10", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 5, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 5, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:31:12.97Z" } ], "itemQty": {}, - "tags": [], + "tags": [ + "PriceProgression10", + "TailorVendor", + "InitialItem" + ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T16:57:28.495Z", + "createdAt": "2022-11-14T12:31:12.897Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Shotgun Mosconi12C", - "itemId": "20ad75ceb451400dbde1e203dfb5e50a", + "title": "Suit Inventory Slot: Price Progression 2", + "itemId": "e03b355078c74620b873ac1a51623df9", "baseAppId": "", - "sku": "pd3_wpn_shotgun_mosconi12c", + "sku": "pd3_slot_suit2", "namespace": "pd3", - "name": "Shotgun Mosconi12C", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "Suit Inventory Slot: Price Progression 2", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:11:36.061Z", + "discountPurchaseAt": "2022-11-14T12:11:36.061Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel43", - "CombatEquipmentVendor" + "TailorVendor", + "PriceProgression2", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-21T12:57:14.079Z", + "createdAt": "2022-11-14T12:11:35.994Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Shotgun R870", - "itemId": "23cdde1e5cb540a6af317678a824ed49", + "title": "Suit Inventory Slot: Price Progression 3", + "itemId": "1172dfe6d1d5448e90074ea99d6bd0cb", "baseAppId": "", - "sku": "pd3_wpn_shotgun_r880", + "sku": "pd3_slot_suit3", "namespace": "pd3", - "name": "Shotgun R880", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "categoryPath": "/Weapon", + "name": "Suit Inventory Slot: Price Progression 3", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:13:53.828Z", + "discountPurchaseAt": "2022-11-14T12:13:53.828Z" } ], "itemQty": {}, "tags": [ - "CombatEquipmentVendor", - "InfamyLevel2" + "TailorVendor", + "PriceProgression3", + "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2021-08-12T09:22:12.230Z", + "createdAt": "2022-11-14T12:13:53.763Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Smoke Grenade", - "itemId": "145c6ffde3eb454ca33a370d12caf4bc", + "title": "Suit Inventory Slot: Price Progression 4", + "itemId": "de5096ec32c1467496f6618faf3297b2", "baseAppId": "", - "sku": "pd3_throwable_smokegrenade", + "sku": "pd3_slot_suit4", "namespace": "pd3", - "name": "Smoke Grenade", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Throwables", + "name": "Suit Inventory Slot: Price Progression 4", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:16:53.954Z" } ], "itemQty": {}, "tags": [ + "TailorVendor", + "PriceProgression4", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T10:28:39.166Z", + "createdAt": "2022-11-14T12:16:53.884Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Sniper Tower Armored Transport Preplanning asset", - "itemId": "f55bbfc9483948d69be74a55b5cd5038", + "title": "Suit Inventory Slot: Price Progression 5", + "itemId": "1b099ddd501c440cba88bc831803c662", "baseAppId": "", - "sku": "pd3_preplanning_armoredtransport_3", + "sku": "pd3_slot_suit5", "namespace": "pd3", - "name": "Sniper Tower Armored Transport Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "Suit Inventory Slot: Price Progression 5", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2022-11-14T12:19:41.952Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", + "TailorVendor", + "PriceProgression5", "InitialItem" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:20:39.309Z", + "createdAt": "2022-11-14T12:19:41.884Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 1", - "itemId": "91ce43fa30334a8cb1623d4897b63eaa", + "title": "Suit Inventory Slot: Price Progression 6", + "itemId": "7f7cb38ae810427ab70462ca6f6ec4a6", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint1", + "sku": "pd3_slot_suit6", "namespace": "pd3", - "name": "Spray Paint Can 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Suit Inventory Slot: Price Progression 6", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T13:52:37.909Z" + "purchaseAt": "2022-11-14T12:22:11.695Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", - "CharacterVendor", + "TailorVendor", + "PriceProgression6", "InitialItem" ], "features": [], @@ -26637,40 +52594,38 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T13:52:37.554Z", + "createdAt": "2022-11-14T12:22:11.625Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 10", - "itemId": "80e93be89b7049eba34d0da984ec1acc", + "title": "Suit Inventory Slot: Price Progression 7", + "itemId": "4bbf711fcebc4052ae82b5452d279a4e", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint10", + "sku": "pd3_slot_suit7", "namespace": "pd3", - "name": "Spray Paint Can 10", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Suit Inventory Slot: Price Progression 7", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:05:18.673Z" + "purchaseAt": "2022-11-14T12:24:09.038Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "CharacterVendor", + "TailorVendor", + "PriceProgression7", "InitialItem" ], "features": [], @@ -26678,40 +52633,38 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:05:18.285Z", + "createdAt": "2022-11-14T12:24:08.965Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 11", - "itemId": "63db938759ce4c1396e664dae13f8032", + "title": "Suit Inventory Slot: Price Progression 8", + "itemId": "a4597160e64849d38ff99f3a08a8060c", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint11", + "sku": "pd3_slot_suit8", "namespace": "pd3", - "name": "Spray Paint Can 11", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Suit Inventory Slot: Price Progression 8", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:06:34.296Z" + "purchaseAt": "2022-11-14T12:25:46.613Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "CharacterVendor", + "TailorVendor", + "PriceProgression8", "InitialItem" ], "features": [], @@ -26719,43 +52672,38 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:06:33.909Z", + "createdAt": "2022-11-14T12:25:46.539Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 12", - "itemId": "2ffc486c333348c298085b22c4712e5d", + "title": "Suit Inventory Slot: Price Progression 9", + "itemId": "5639b1e8c68e4e599a867c8e9d2e1757", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint12", + "sku": "pd3_slot_suit9", "namespace": "pd3", - "name": "Spray Paint Can 12", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Suit Inventory Slot: Price Progression 9", + "entitlementType": "DURABLE", + "categoryPath": "/Slots", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 250000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 250000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:07:24.500Z" + "purchaseAt": "2022-11-14T12:27:12.78Z" } ], "itemQty": {}, - "boundItemIds": [ - "e005bc343c254adb9855ef1b7effc751" - ], "tags": [ - "RarityUncommon", - "CharacterVendor", + "TailorVendor", + "PriceProgression9", "InitialItem" ], "features": [], @@ -26763,2136 +52711,2117 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:07:24.111Z", + "createdAt": "2022-11-14T12:27:12.706Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 13", - "itemId": "8aebdb49670e4d04a74a920a1595bb17", + "title": "Suit Only", + "itemId": "9acb1b0b1ad1405785ee2684725e3d06", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint13", + "sku": "pd3_armor_suitonly", "namespace": "pd3", - "name": "Spray Paint Can 13", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Suit Only", + "entitlementType": "DURABLE", + "categoryPath": "/Armor", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:08:16.185Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "CharacterVendor", "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:08:15.796Z", + "createdAt": "2022-11-02T10:16:11.011Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 14", - "itemId": "741a297a299545ca94c17d0c68e2606b", + "title": "Tailor pack 02 gloves 04", + "itemId": "373b232fdd324401a79e42a617358c4f", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint14", + "sku": "cosmetic_tailorpack_02_gloves_04", "namespace": "pd3", - "name": "Spray Paint Can 14", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:09:03.200Z" + "purchaseAt": "2024-02-16T17:11:25.672Z", + "discountPurchaseAt": "2024-02-16T17:11:25.672Z" } ], "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:09:02.810Z", + "createdAt": "2024-02-16T17:11:24.978Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 15", - "itemId": "d402548deca1416788aee29639142797", + "title": "Tailor pack 02 gloves 01", + "itemId": "469cd5e48fce4060b4db904fe0beddff", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint15", + "sku": "cosmetic_tailorpack_02_gloves_01", "namespace": "pd3", - "name": "Spray Paint Can 15", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:09:59.224Z" + "purchaseAt": "2024-02-16T17:09:48.037Z", + "discountPurchaseAt": "2024-02-16T17:09:48.037Z" } ], "itemQty": {}, - "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:09:58.832Z", + "createdAt": "2024-02-16T17:09:47.343Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 16", - "itemId": "6efb8e0f73424a32981987d484f43a3b", + "title": "Tailor pack 02 gloves 02", + "itemId": "a6cea8a8636d41739d07fbd88add16ba", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint16", + "sku": "cosmetic_tailorpack_02_gloves_02", "namespace": "pd3", - "name": "Spray Paint Can 16", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:16:43.921Z" + "purchaseAt": "2024-02-16T17:10:17.455Z", + "discountPurchaseAt": "2024-02-16T17:10:17.455Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel8", - "RarityRare", - "CharacterVendor" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:16:43.522Z", + "createdAt": "2024-02-16T17:10:16.761Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 17", - "itemId": "b8fbcc17818042039a8b853788d160ba", + "title": "Tailor pack 02 gloves 03", + "itemId": "3096892cdbf5439e80e5f50dcf6fa411", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint17", + "sku": "cosmetic_tailorpack_02_gloves_03", "namespace": "pd3", - "name": "Spray Paint Can 17", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:18:09.601Z" + "purchaseAt": "2024-02-16T17:10:46.367Z", + "discountPurchaseAt": "2024-02-16T17:10:46.367Z" } ], "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel145" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:18:09.199Z", + "createdAt": "2024-02-16T17:10:45.677Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 18", - "itemId": "0c2765265355431b9d6d832260a12fd3", + "title": "Tailor pack 02 mask 01", + "itemId": "2663e7ff04f74498ac60933bc6105589", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint18", + "sku": "cosmetic_tailorpack_02_mask_01", "namespace": "pd3", - "name": "Spray Paint Can 18", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:19:25.417Z" + "purchaseAt": "2024-02-16T17:05:31.231Z", + "discountPurchaseAt": "2024-02-16T17:05:31.231Z" } ], "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel16" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:19:25.017Z", + "createdAt": "2024-02-16T17:05:30.549Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 19", - "itemId": "4337abc8898d466491b068ad0899535d", + "title": "Tailor pack 02 mask 02", + "itemId": "59c71808a9c448408ef02f173bc753c0", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint19", + "sku": "cosmetic_tailorpack_02_mask_02", "namespace": "pd3", - "name": "Spray Paint Can 19", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:20:11.321Z" + "purchaseAt": "2024-02-16T17:06:04.467Z", + "discountPurchaseAt": "2024-02-16T17:06:04.467Z" } ], "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel17" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:20:10.918Z", + "createdAt": "2024-02-16T17:06:03.787Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 2", - "itemId": "2776bcd2157342d08511b2755c46f8d4", + "title": "Tailor pack 02 mask 04", + "itemId": "a23f0964d57048f78afac4e0905e256b", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint2", + "sku": "cosmetic_tailorpack_02_mask_04", "namespace": "pd3", - "name": "Spray Paint Can 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T13:55:49.288Z" + "purchaseAt": "2024-02-16T17:07:42.024Z", + "discountPurchaseAt": "2024-02-16T17:07:42.024Z" } ], "itemQty": {}, - "boundItemIds": [ - "e005bc343c254adb9855ef1b7effc751" - ], - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T13:55:48.936Z", + "createdAt": "2024-02-16T17:07:41.338Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 20", - "itemId": "18ec586c4e4f4dc782351788951d0e6e", + "title": "Tailor pack 02 suit 01", + "itemId": "0bb4cdf0d4be4a15a14a050c9b08275b", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint20", + "sku": "cosmetic_tailorpack_02_suit_01", "namespace": "pd3", - "name": "Spray Paint Can 20", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:21:07.097Z" + "purchaseAt": "2024-02-16T16:48:22.639Z", + "discountPurchaseAt": "2024-02-16T16:48:22.639Z" } ], "itemQty": {}, - "tags": [ - "InfamyLevel20", - "RarityRare", - "CharacterVendor" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:21:06.694Z", + "createdAt": "2024-02-16T16:48:22.017Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 21", - "itemId": "eeb588b2880443fa9abf0aaac2be3955", + "title": "Tailor pack 02 suit 02", + "itemId": "ef5215a3870c4e22b682990064390c36", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint21", + "sku": "cosmetic_tailorpack_02_suit_02", "namespace": "pd3", - "name": "Spray Paint Can 21", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", - "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:21:45.808Z" - } - ], - "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel22" + "currencyType": "VIRTUAL", + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-16T16:49:08.69Z", + "discountPurchaseAt": "2024-02-16T16:49:08.69Z" + } ], + "itemQty": {}, "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:21:45.404Z", + "createdAt": "2024-02-16T16:49:08.054Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 22", - "itemId": "f63a4327c74646cb816b9ddcc100f527", + "title": "Tailor pack 02 suit 03", + "itemId": "c18726a698a4470495a2ba31d525062d", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint22", + "sku": "cosmetic_tailorpack_02_suit_03", "namespace": "pd3", - "name": "Spray Paint Can 22", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:22:17.560Z" + "purchaseAt": "2024-02-16T16:52:23.262Z", + "discountPurchaseAt": "2024-02-16T16:52:23.262Z" } ], "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel26" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:22:17.154Z", + "createdAt": "2024-02-16T16:52:22.654Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 23", - "itemId": "80f157ac92744415bfcb7f1682164b01", + "title": "Tailor pack 02 suit 04", + "itemId": "2567224ba39f4acea1a6dcdd3499a114", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint23", + "sku": "cosmetic_tailorpack_02_suit_04", "namespace": "pd3", - "name": "Spray Paint Can 23", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Tailor pack 02 suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:23:09.521Z" + "purchaseAt": "2024-02-16T16:59:15.669Z", + "discountPurchaseAt": "2024-02-16T16:59:15.669Z" } ], "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel28" - ], "features": [], - "maxCountPerUser": -1, - "maxCount": -1, + "maxCountPerUser": 1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:23:09.118Z", + "createdAt": "2024-02-16T16:59:15.006Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 24", - "itemId": "35fb4e9455be4194975480ec28fc093d", + "title": "Teller Door Sharke Bank Preplanning Asset", + "itemId": "244a532a15a540b8a2bb08ba61ca2cbe", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint24", + "sku": "pd3_preplanning_sharkebank_1", "namespace": "pd3", - "name": "Spray Paint Can 24", + "name": "Teller Door Sharke Bank Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:23:44.064Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "InfamyLevel120", - "RarityEpic", - "CharacterVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:23:43.661Z", + "createdAt": "2022-09-21T13:27:02.526Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 25", - "itemId": "a2545ac17767476a83e08456aeaad27d", + "title": "Thermal Lance Sharke Bank Preplanning Asset", + "itemId": "df2e66d7a0e94ff28ba46337ceaf9555", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint25", + "sku": "pd3_preplanning_sharkebank_3", "namespace": "pd3", - "name": "Spray Paint Can 25", + "name": "Thermal Lance Sharke Bank Preplanning Asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:24:39.992Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "InfamyLevel72", - "RarityEpic", - "CharacterVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:24:39.585Z", + "createdAt": "2022-08-12T06:14:45.466Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 26", - "itemId": "0870d8b7bfeb45efa7cea9d1a331bd01", + "title": "Thermite Drop Cargo Dock Preplanning asset", + "itemId": "ff2464ce14da473e97590ea2fb33b327", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint26", + "sku": "pd3_preplanning_cargodock_4", "namespace": "pd3", - "name": "Spray Paint Can 26", + "name": "Thermite Drop Cargo Dock Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "categoryPath": "/SprayPaint", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:25:21.601Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "InfamyLevel74", - "RarityEpic", - "CharacterVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:25:21.193Z", + "createdAt": "2022-10-19T13:28:25.142Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 27", - "itemId": "28e52ecf8c8a43ea99cbe972a58b567c", + "title": "Thermite Penthouse Preplanning asset", + "itemId": "87d91fc1cc5f4e8fa3c4e9e2bd303376", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint27", + "sku": "pd3_preplanning_penthouse_2", "namespace": "pd3", - "name": "Spray Paint Can 27", + "name": "Thermite Penthouse Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:25:59.825Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel81", - "CharacterVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:25:59.417Z", + "createdAt": "2022-10-19T13:24:00.291Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 28", - "itemId": "3453479f37a6485d8281d416facf2c32", + "title": "ThrowingKnife", + "itemId": "778b204d45a64ce68ec9720c220350be", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint28", + "sku": "pd3_throwable_knife", "namespace": "pd3", - "name": "Spray Paint Can 28", + "name": "ThrowingKnife", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/Throwables", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 500, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 500, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:26:34.121Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel148" + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:26:33.709Z", + "createdAt": "2022-05-31T14:19:59.81Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 29", - "itemId": "28e2256061a342edb877088b83c67e81", + "title": "Trifecta Lootbag Bundle Epic", + "itemId": "6cce475cf54b4d0090df7e6df40170aa", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint29", + "sku": "PD3_epic_trifecta_lootbag", "namespace": "pd3", - "name": "Spray Paint Can 29", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Trifecta Lootbag Bundle Epic", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 5000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:27:09.729Z" + "purchaseAt": "2023-09-19T12:31:43.495Z", + "discountPurchaseAt": "2023-09-19T12:31:43.495Z" } ], - "itemQty": {}, - "tags": [ - "InfamyLevel87", - "RarityEpic", - "CharacterVendor" + "itemIds": [ + "9e909ec0959d46d4b38d4a16f1114cb3", + "317e6b8ca180445bab3b6e95e81f75c6", + "e13829fbefee483593cae042dd9dc456" ], + "itemQty": { + "317e6b8ca180445bab3b6e95e81f75c6": 1, + "9e909ec0959d46d4b38d4a16f1114cb3": 1, + "e13829fbefee483593cae042dd9dc456": 1 + }, + "tags": [], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:27:09.320Z", + "createdAt": "2023-09-06T16:03:37.937Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 3", - "itemId": "70e2351e00654e0c93fdc179adcf4b4a", + "title": "Trifecta Lootbag Bundle PlayStation", + "itemId": "ec4e47fbeb9243a0b965f447ec6e10d5", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint3", + "sku": "PD3_playstation_trifecta_lootbag", "namespace": "pd3", - "name": "Spray Paint Can 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Trifecta Lootbag Bundle PlayStation", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T13:57:55.880Z" + "purchaseAt": "2023-09-19T12:30:00.935Z", + "discountPurchaseAt": "2023-09-19T12:30:00.935Z" } ], - "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "itemIds": [ + "5708e1c1c12a4b0b8331dbc390bfa4e7", + "66714e9cf5bc4130bd1e23a4b012073d", + "8816cc16a74740f3aff7819ee37e1751" ], + "itemQty": { + "5708e1c1c12a4b0b8331dbc390bfa4e7": 1, + "8816cc16a74740f3aff7819ee37e1751": 1, + "66714e9cf5bc4130bd1e23a4b012073d": 1 + }, + "tags": [], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T13:57:55.500Z", + "createdAt": "2023-09-07T05:54:03.548Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 30", - "itemId": "2c9d3945b0e346acab7447f1e67c0651", + "title": "Trifecta Lootbag Bundle Steam", + "itemId": "e29db70296e14583a91a9126d363d780", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint30", + "sku": "PD3_steam_trifecta_lootbag", "namespace": "pd3", - "name": "Spray Paint Can 30", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Trifecta Lootbag Bundle Steam", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 5000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:27:40.137Z" + "purchaseAt": "2023-09-19T12:28:15.387Z", + "discountPurchaseAt": "2023-09-19T12:28:15.387Z" } ], - "itemQty": {}, - "tags": [ - "RarityEpic", - "InfamyLevel93", - "CharacterVendor" + "itemIds": [ + "db78293dfc5046d9a6426da3afaee65d", + "075eebd2242b4684b447cf3678a914a9", + "dea43e9c1ef842c781cce84de3792004" ], + "itemQty": { + "075eebd2242b4684b447cf3678a914a9": 1, + "dea43e9c1ef842c781cce84de3792004": 1, + "db78293dfc5046d9a6426da3afaee65d": 1 + }, + "tags": [], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:27:39.730Z", + "createdAt": "2023-09-07T06:51:49.947Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 31", - "itemId": "d3bef5e251c249b5bc15d749d14b8236", + "title": "Trifecta Lootbag Bundle XBox", + "itemId": "6f46ee17db244f36bc6cc977609d8274", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint31", + "sku": "PD3_xbox_trifecta_lootbag", "namespace": "pd3", - "name": "Spray Paint Can 31", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Trifecta Lootbag Bundle XBox", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, - "purchasable": true, - "itemType": "INGAMEITEM", + "purchasable": false, + "itemType": "BUNDLE", "regionData": [ { - "price": 5000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:28:13.329Z" + "purchaseAt": "2023-09-19T12:26:29.502Z", + "discountPurchaseAt": "2023-09-19T12:26:29.502Z" } ], - "itemQty": {}, - "tags": [ - "InfamyLevel95", - "RarityEpic", - "CharacterVendor" + "itemIds": [ + "6ba35287ddf8432793570bc35af13323", + "b968640f272e4858aac2a2363445fa94", + "c8cb556b24834c7da9dd6247aa43fecb" ], + "itemQty": { + "b968640f272e4858aac2a2363445fa94": 1, + "6ba35287ddf8432793570bc35af13323": 1, + "c8cb556b24834c7da9dd6247aa43fecb": 1 + }, + "tags": [], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:28:12.918Z", + "createdAt": "2023-09-06T12:51:32.548Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Texture 34", - "itemId": "917be799b0b6405cacda674f60d43e93", + "title": "Twitch Drops Scuba mask Mould 01", + "itemId": "f6d0d8f54d054d4399e32f07990e6d8d", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint34", + "sku": "pd3_cosmetics_mask_twitch_01", "namespace": "pd3", - "name": "Spray Paint Can 34", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Twitch Drops Scuba mask Mould 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:29:54.692Z" + "purchaseAt": "2024-07-05T13:44:14.15Z", + "discountPurchaseAt": "2024-07-05T13:44:14.15Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "CharacterVendor", - "InfamyLevel12" + "Premium", + "ReportsTelemetry" ], - "features": [], - "maxCountPerUser": -1, + "features": [ + "iap-sync-twitch" + ], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:29:54.282Z", + "createdAt": "2024-07-05T13:44:13.41Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 35", - "itemId": "cedaed7df31142e4b8cc7faac230130d", + "title": "Twitch Drops Weapon Charm BeachBall 01", + "itemId": "0422b3db10d546d7941b1f7608d7654f", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint35", + "sku": "pd3_cosmetics_weapon_charm_beachball_01", "namespace": "pd3", - "name": "Spray Paint Can 35", + "name": "Twitch Drops Weapon Charm BeachBall 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:13:26.090Z" + "purchaseAt": "2024-07-09T08:15:26.319Z", + "discountPurchaseAt": "2024-07-09T08:15:26.319Z" } ], "itemQty": {}, + "boundItemIds": [ + "9f3757e8f5164851a801452c69fa2764" + ], "tags": [ - "InfamyLevel30", - "RarityRare", - "CharacterVendor" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:13:26.063Z", + "createdAt": "2024-07-09T08:15:25.662Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 36", - "itemId": "a9089f2fba5947639505d690ba792950", + "title": "Twitch Drops Weapon Sticker Cocktail 01", + "itemId": "a75bb4b8d33c410b8bdffe33550e379b", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint36", + "sku": "pd3_cosmetics_weapon_sticker_cocktail_01", "namespace": "pd3", - "name": "Spray Paint Can 36", + "name": "Twitch Drops Weapon Sticker Cocktail 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:14:37.063Z" + "purchaseAt": "2024-07-09T08:17:30.941Z", + "discountPurchaseAt": "2024-07-09T08:17:30.941Z" } ], "itemQty": {}, + "boundItemIds": [ + "9f3757e8f5164851a801452c69fa2764" + ], "tags": [ - "InfamyLevel32", - "RarityRare", - "CharacterVendor" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:14:37.029Z", + "createdAt": "2024-07-09T08:17:30.302Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 37", - "itemId": "800ca0ecfcd243778c63d752cbb2e38d", + "title": "Twitch Drops Weapon Sticker Icecream 01", + "itemId": "052ff2d0c5e5413995d63071e66de0b0", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint37", + "sku": "pd3_cosmetics_weapon_sticker_icecream_01", "namespace": "pd3", - "name": "Spray Paint Can 37", + "name": "Twitch Drops Weapon Sticker Icecream 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:15:22.975Z" + "purchaseAt": "2024-07-09T08:18:15.042Z", + "discountPurchaseAt": "2024-07-09T08:18:15.042Z" } ], "itemQty": {}, + "boundItemIds": [ + "9f3757e8f5164851a801452c69fa2764" + ], "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel37" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:15:22.942Z", + "createdAt": "2024-07-09T08:18:14.378Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 38", - "itemId": "7d8174e370d242a5a798b428eb918afd", + "title": "Twitch Drops Weapon Sticker SandCastle 01", + "itemId": "59319d2fdc5945f3a6edbe1bcb72155d", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint38", + "sku": "pd3_cosmetics_weapon_sticker_sandcastle_01", "namespace": "pd3", - "name": "Spray Paint Can 38", + "name": "Twitch Drops Weapon Sticker SandCastle 01", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:16:10.358Z" + "purchaseAt": "2024-07-09T08:18:53.141Z", + "discountPurchaseAt": "2024-07-09T08:18:53.141Z" } ], "itemQty": {}, + "boundItemIds": [ + "9f3757e8f5164851a801452c69fa2764" + ], "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel39" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:16:10.343Z", + "createdAt": "2024-07-09T08:18:52.471Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 39", - "itemId": "42a67d95b9ac4c1e873a895882bd49ce", + "title": "Twitch drops Mask mould Pig 01", + "itemId": "38b42b5755fc4de1abd522d2593e1293", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint39", + "sku": "pd3_mould_Pig_01", "namespace": "pd3", - "name": "Spray Paint Can 39", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Twitch drops Mask mould Pig 01", + "entitlementType": "DURABLE", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:17:14.076Z" + "purchaseAt": "2024-05-24T12:20:13.057Z", + "discountPurchaseAt": "2024-05-24T12:20:13.057Z" } ], "itemQty": {}, + "boundItemIds": [ + "0d8be77d9e0f47b9843fd75db7a2d5d6" + ], "tags": [ - "InfamyLevel42", - "RarityRare", - "CharacterVendor" + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:17:14.044Z", + "createdAt": "2024-05-24T12:20:12.202Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 4", - "itemId": "c8163c30542c49189bad79fc93f6f224", + "title": "Twitch drops Mask pattern Pignose 01", + "itemId": "72505aad8fb14b1586baf001dbc19b1b", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint4", + "sku": "pd3_mask_pattern_Pignose_01", "namespace": "pd3", - "name": "Spray Paint Can 4", + "name": "Twitch drops Mask pattern Pignose 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/MaskPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T13:59:00.440Z" + "purchaseAt": "2024-05-24T12:23:19.301Z", + "discountPurchaseAt": "2024-05-24T12:23:19.301Z" } ], "itemQty": {}, "boundItemIds": [ - "e005bc343c254adb9855ef1b7effc751" + "0d8be77d9e0f47b9843fd75db7a2d5d6" ], "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T13:59:00.061Z", + "createdAt": "2024-05-24T12:23:18.428Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 40", - "itemId": "7ac776e42032497283c9c11ef9c2c30a", + "title": "Twitch drops Mask pattern Prison 01", + "itemId": "9794c8502d1e4dcbb4b0db39047ec65e", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint40", + "sku": "pd3_mask_pattern_Prison_01", "namespace": "pd3", - "name": "Spray Paint Can 40", + "name": "Twitch drops Mask pattern Prison 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/MaskPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:18:31.520Z" + "purchaseAt": "2024-05-24T12:23:54.658Z", + "discountPurchaseAt": "2024-05-24T12:23:54.658Z" } ], "itemQty": {}, + "boundItemIds": [ + "0d8be77d9e0f47b9843fd75db7a2d5d6" + ], "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel47" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:18:31.486Z", + "createdAt": "2024-05-24T12:23:53.77Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 41", - "itemId": "790a1218de3e40168f3a4e34f4cb7840", + "title": "Twitch drops set 01", + "itemId": "0d8be77d9e0f47b9843fd75db7a2d5d6", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint41", + "sku": "pd3_twitch_drops_bundle_01", "namespace": "pd3", - "name": "Spray Paint Can 41", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Twitch drops set 01", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:19:36.552Z" + "purchaseAt": "2024-05-24T12:33:33.806Z", + "discountPurchaseAt": "2024-05-24T12:33:33.806Z" } ], - "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel103" + "itemIds": [ + "38b42b5755fc4de1abd522d2593e1293", + "d6f974bf1618472eab17d90e4fe04fc7", + "72505aad8fb14b1586baf001dbc19b1b", + "9794c8502d1e4dcbb4b0db39047ec65e", + "b71c2176059c4944b16a41bb97688a1d", + "db558d1fb7fe4a0e9699ae9d9a5be31b" ], + "itemQty": { + "db558d1fb7fe4a0e9699ae9d9a5be31b": 1, + "38b42b5755fc4de1abd522d2593e1293": 1, + "9794c8502d1e4dcbb4b0db39047ec65e": 1, + "b71c2176059c4944b16a41bb97688a1d": 1, + "72505aad8fb14b1586baf001dbc19b1b": 1, + "d6f974bf1618472eab17d90e4fe04fc7": 1 + }, "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:19:36.521Z", + "createdAt": "2024-05-24T12:33:32.889Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 42", - "itemId": "008f87c7a9f84a8db8adfc26102f2691", + "title": "Twitch drops set 02", + "itemId": "9f3757e8f5164851a801452c69fa2764", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint42", + "sku": "pd3_twitch_drops_bundle_02", "namespace": "pd3", - "name": "Spray Paint Can 42", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Twitch drops set 02", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 3000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:20:33.942Z" + "purchaseAt": "2024-07-09T09:50:06.046Z", + "discountPurchaseAt": "2024-07-09T09:50:06.046Z" } ], - "itemQty": {}, - "tags": [ - "InfamyLevel51", - "RarityRare", - "CharacterVendor" + "itemIds": [ + "a75bb4b8d33c410b8bdffe33550e379b", + "052ff2d0c5e5413995d63071e66de0b0", + "59319d2fdc5945f3a6edbe1bcb72155d", + "0422b3db10d546d7941b1f7608d7654f" ], + "itemQty": { + "a75bb4b8d33c410b8bdffe33550e379b": 1, + "0422b3db10d546d7941b1f7608d7654f": 1, + "052ff2d0c5e5413995d63071e66de0b0": 1, + "59319d2fdc5945f3a6edbe1bcb72155d": 1 + }, "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:20:33.915Z", + "createdAt": "2024-07-09T09:50:05.12Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 43", - "itemId": "88fc977914d64f7ba9643141ce5ecc15", + "title": "Twitch drops set 03", + "itemId": "685b2e2d4dd54c8c8188b081e07c9d35", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint43", + "sku": "pd3_twitch_drops_bundle_03", "namespace": "pd3", - "name": "Spray Paint Can 43", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "name": "Twitch drops set 03", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 3000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:21:20.318Z" + "purchaseAt": "2024-08-07T19:43:20.862Z", + "discountPurchaseAt": "2024-08-07T19:43:20.862Z" } ], - "itemQty": {}, - "tags": [ - "RarityRare", - "CharacterVendor", - "InfamyLevel55" + "itemIds": [ + "35d1cf09fd694c468ede064666b4799c", + "6c14ef8add654403a8da5091fa1157ef", + "94084b297316475a8637e43188d44001", + "eab4480a4dbb4dccaa61eac2673129eb", + "042562541ea04731abe4290071e14bc9", + "b2b176bf50ed49c8a4775e52317eabbb" ], + "itemQty": { + "042562541ea04731abe4290071e14bc9": 1, + "eab4480a4dbb4dccaa61eac2673129eb": 1, + "6c14ef8add654403a8da5091fa1157ef": 1, + "35d1cf09fd694c468ede064666b4799c": 1, + "94084b297316475a8637e43188d44001": 1, + "b2b176bf50ed49c8a4775e52317eabbb": 1 + }, "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:21:20.282Z", + "createdAt": "2024-08-07T19:43:20.918Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 44", - "itemId": "422de84f7ba6422c9ffbbd687640ec5c", + "title": "Twitch drops weapon charm Bacon 01", + "itemId": "d6f974bf1618472eab17d90e4fe04fc7", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint44", + "sku": "pd3_weapon_charm_Bacon_01", "namespace": "pd3", - "name": "Spray Paint Can 44", + "name": "Twitch drops weapon charm Bacon 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:22:19.509Z" + "purchaseAt": "2024-05-24T12:21:08.877Z", + "discountPurchaseAt": "2024-05-24T12:21:08.877Z" } ], "itemQty": {}, + "boundItemIds": [ + "0d8be77d9e0f47b9843fd75db7a2d5d6" + ], "tags": [ - "InfamyLevel60", - "RarityRare", - "CharacterVendor" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:22:19.481Z", + "createdAt": "2024-05-24T12:21:08.006Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 45", - "itemId": "5562534252dd4d3893d647f6a657c935", + "title": "Twitch drops weapon sticker Egg 01", + "itemId": "b71c2176059c4944b16a41bb97688a1d", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint45", + "sku": "pd3_weapon_sticker_Egg_01", "namespace": "pd3", - "name": "Spray Paint Can 45", + "name": "Twitch drops weapon sticker Egg 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:23:26.119Z" + "purchaseAt": "2024-05-24T12:22:42.575Z", + "discountPurchaseAt": "2024-05-24T12:22:42.575Z" } ], "itemQty": {}, + "boundItemIds": [ + "0d8be77d9e0f47b9843fd75db7a2d5d6" + ], "tags": [ - "InfamyLevel61", - "RarityRare", - "CharacterVendor" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:23:26.085Z", + "createdAt": "2024-05-24T12:22:41.716Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 46", - "itemId": "ebe4ffafc6c04b3eb66f6a7dc03fce38", + "title": "Twitch drops weapon sticker Potatisgris 01", + "itemId": "db558d1fb7fe4a0e9699ae9d9a5be31b", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint46", + "sku": "pd3_weapon_sticker_Potatisgris_01", "namespace": "pd3", - "name": "Spray Paint Can 46", + "name": "Twitch drops weapon sticker Potatisgris 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:24:33.152Z" + "purchaseAt": "2024-05-24T12:22:09.586Z", + "discountPurchaseAt": "2024-05-24T12:22:09.586Z" } ], "itemQty": {}, + "boundItemIds": [ + "0d8be77d9e0f47b9843fd75db7a2d5d6" + ], "tags": [ - "InfamyLevel64", - "RarityRare", - "CharacterVendor" + "inexhaustible", + "Premium", + "ReportsTelemetry" + ], + "features": [ + "iap-sync-twitch" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:24:33.119Z", + "createdAt": "2024-05-24T12:22:08.7Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 47", - "itemId": "c7e92c8672234f8586f6af0091575e30", + "title": "Van Escape Branch Bank Preplanning asset", + "itemId": "7ef67d46c6224310b813afcc5f53ae62", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint47", + "sku": "pd3_preplanning_branchbank_1", "namespace": "pd3", - "name": "Spray Paint Can 47", + "name": "Van Escape Branch Bank Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:25:52.975Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "InfamyLevel98", - "RarityEpic", - "CharacterVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:25:52.951Z", + "createdAt": "2022-10-19T13:15:46.328Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 48", - "itemId": "5a0063496e2f4911b1e26a971a6993bc", + "title": "Vault Code Night Club Preplanning asset", + "itemId": "65a355215bb8473bbf9d3f2661211899", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint48", + "sku": "pd3_preplanning_nightclub_2", "namespace": "pd3", - "name": "Spray Paint Can 48", + "name": "Vault Code Night Club Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1999, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:26:54.117Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel143" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:26:54.096Z", + "createdAt": "2022-08-31T14:16:20.704Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 49", - "itemId": "ef3c6216900a4e34bbd6ec2782ff34d6", + "title": "Vent Secure Point Penthouse Preplanning asset", + "itemId": "86b9d2fede264495a71aac9786b20a45", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint49", + "sku": "pd3_preplanning_penthouse_4", "namespace": "pd3", - "name": "Spray Paint Can 49", + "name": "Vent Secure Point Penthouse Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:28:00.459Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel105" + "PreplanningAsset", + "InitialItem" ], - "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:28:00.447Z", + "createdAt": "2022-10-19T13:25:18.714Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 5", - "itemId": "04efa6162aca4a35ade9c8bb5375579a", + "title": "Weapon Charm - Nebula Signup", + "itemId": "1330ed7bb5d2480284fc23c0728823dc", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint5", + "sku": "pd3_cosmetic_weapon_nebula", "namespace": "pd3", - "name": "Spray Paint Can 5", + "name": "Weapon Charm - Nebula Signup", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/SprayPaint", + "stackable": false, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T13:59:52.000Z" + "purchaseAt": "2023-03-17T15:08:06.046Z", + "discountPurchaseAt": "2023-03-17T15:08:06.046Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" - ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T13:59:51.620Z", + "createdAt": "2023-03-17T15:08:05.905Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 50", - "itemId": "9dd5c32ff4fb4da0a8339af80c0d8ad7", + "title": "Weapon Charm 1", + "itemId": "3c6da5164d304fdeb2a91c2d43ed1171", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint50", + "sku": "pd3_cosmetic_weapon_charm1", "namespace": "pd3", - "name": "Spray Paint Can 50", + "name": "Weapon Charm 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 20, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 20, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:28:56.266Z" + "purchaseAt": "2022-11-24T19:37:47.419Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "InfamyLevel109", - "CharacterVendor" + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:28:56.238Z", + "createdAt": "2022-11-24T19:37:46.769Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 51", - "itemId": "0a7761fb4ec04920bffff93195c122a2", + "title": "Weapon Charm 2", + "itemId": "18824b310a164b22afbb9946aba1c714", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint51", + "sku": "pd3_cosmetic_weapon_charm2", "namespace": "pd3", - "name": "Spray Paint Can 51", + "name": "Weapon Charm 2", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 30, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 30, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:29:58.448Z" + "purchaseAt": "2022-11-24T19:38:23.475Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel112" + "CombatEquipmentVendor", + "RarityUncommon", + "InfamyLevel6" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:29:58.418Z", + "createdAt": "2022-11-24T19:38:22.824Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 52", - "itemId": "f7d2147ea6d445b8a3eb21323453a3da", + "title": "Weapon Charm 3", + "itemId": "6d932e970c4e452fbae37ad717f71261", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint52", + "sku": "pd3_cosmetic_weapon_charm3", "namespace": "pd3", - "name": "Spray Paint Can 52", + "name": "Weapon Charm 3", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 30, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 30, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:31:05.279Z" + "purchaseAt": "2022-11-24T19:38:57.319Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel113" + "InfamyLevel20", + "CombatEquipmentVendor", + "RarityUncommon" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:31:05.268Z", + "createdAt": "2022-11-24T19:38:56.665Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 53", - "itemId": "5c34b21724e141a4a0c6a626bc5d357e", + "title": "Weapon Charm 4", + "itemId": "fe6466068e734fbda997275eeae937b0", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint53", + "sku": "pd3_cosmetic_weapon_charm4", "namespace": "pd3", - "name": "Spray Paint Can 53", + "name": "Weapon Charm 4", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 100, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 100, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:32:22.278Z" + "purchaseAt": "2022-11-24T19:39:36.586Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel115" + "CombatEquipmentVendor", + "RarityRare", + "InfamyLevel36" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:32:22.247Z", + "createdAt": "2022-11-24T19:39:35.937Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 54", - "itemId": "e35a676138584cc9a2edbefc8d4598e9", + "title": "Weapon Charm 5", + "itemId": "4ffb858730b5479884e463243ce15b08", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint54", + "sku": "pd3_cosmetic_weapon_charm5", "namespace": "pd3", - "name": "Spray Paint Can 54", + "name": "Weapon Charm 5", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:33:54.810Z" + "purchaseAt": "2022-11-24T19:40:07.282Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel121" + "InfamyLevel54", + "CombatEquipmentVendor", + "RarityEpic" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:33:54.791Z", + "createdAt": "2022-11-24T19:40:06.633Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 55", - "itemId": "f26db2ce40bc4bd38c2edcd1448d7ff2", + "title": "Weapon Charm 6", + "itemId": "2c28f77ebd1d434b917e922d135a0015", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint55", + "sku": "pd3_cosmetic_weapon_charm6", "namespace": "pd3", - "name": "Spray Paint Can 55", + "name": "Weapon Charm 6", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 300, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 300, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:35:09.705Z" + "purchaseAt": "2022-11-24T19:40:41.258Z" } ], "itemQty": {}, "tags": [ + "CombatEquipmentVendor", "RarityEpic", - "CharacterVendor", - "InfamyLevel122" + "InfamyLevel78" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:35:09.682Z", + "createdAt": "2022-11-24T19:40:40.607Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 56", - "itemId": "e13ae54cab014e3ca93a27610aa983ad", + "title": "Weapon Charm Villa 1", + "itemId": "667246b3d92345e591c906be9c593c8a", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint56", + "sku": "pd3_cosmetic_weapon_charm_villa1", "namespace": "pd3", - "name": "Spray Paint Can 56", + "name": "Weapon Charm Villa 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, - "currencyCode": "CASH", + "discountedPrice": 0, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:35:50.088Z" + "purchaseAt": "2023-10-30T15:19:53.565Z", + "discountPurchaseAt": "2023-10-30T15:19:53.565Z" } ], "itemQty": {}, - "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel124" - ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:35:50.063Z", + "createdAt": "2023-10-30T15:19:53.667Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 57", - "itemId": "032c5a37ebcd4252803662c97105b509", + "title": "Weapon Pattern 1", + "itemId": "74957f8153db45d6bc7e2f859a8b3f79", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint57", + "sku": "pd3_cosmetic_weapon_pattern1", "namespace": "pd3", - "name": "Spray Paint Can 57", + "name": "Weapon Pattern 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 15000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 15000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:36:37.598Z" + "purchaseAt": "2022-11-24T19:05:07.72Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "CharacterVendor", - "InfamyLevel133" + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:36:37.583Z", + "createdAt": "2022-11-24T19:05:07.083Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can 58", - "itemId": "2f14f2ba237a4ffd9e37132f40bb1006", + "title": "Weapon Pattern 10", + "itemId": "30cadbc492fa452a93a9e95756b255b1", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint58", + "sku": "pd3_cosmetic_weapon_pattern10", "namespace": "pd3", - "name": "Spray Paint Can 58", + "name": "Weapon Pattern 10", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-17T14:48:12.231Z" + "purchaseAt": "2022-11-24T19:10:57.742Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel141", - "RarityEpic", - "CharacterVendor" + "CombatEquipmentVendor", + "InfamyLevel94", + "RarityRare" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-17T14:48:12.216Z", + "createdAt": "2022-11-24T19:10:57.092Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 6", - "itemId": "064bb4d0713242aba6dba5666ba45747", + "title": "Weapon Pattern 11", + "itemId": "3b58e823c5044854bc23b8663e187afc", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint6", + "sku": "pd3_cosmetic_weapon_pattern11", "namespace": "pd3", - "name": "Spray Paint Can 6", + "name": "Weapon Pattern 11", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 20, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CASH", + "discountedPrice": 20, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:00:57.553Z" + "purchaseAt": "2022-11-24T19:11:34.989Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "CombatEquipmentVendor", + "RarityEpic", + "InfamyLevel102" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:00:57.168Z", + "createdAt": "2022-11-24T19:11:34.336Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 7", - "itemId": "df2f0a5f0bb141be95de1e6e959a4520", + "title": "Weapon Pattern 12", + "itemId": "a123a93a8500409f9a7d5851aea0d796", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint7", + "sku": "pd3_cosmetic_weapon_pattern12", "namespace": "pd3", - "name": "Spray Paint Can 7", + "name": "Weapon Pattern 12", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 20, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CASH", + "discountedPrice": 20, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:01:39.300Z" + "purchaseAt": "2022-11-24T19:12:22.069Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "CombatEquipmentVendor", + "RarityEpic", + "InfamyLevel119" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:01:38.934Z", + "createdAt": "2022-11-24T19:12:21.417Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 8", - "itemId": "a52fbab8ac8b44f5bc935cf5082ac97c", + "title": "Weapon Pattern 13", + "itemId": "6844ac5f2afb4ae3bd2b7ab587872668", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint8", + "sku": "pd3_cosmetic_weapon_pattern13", "namespace": "pd3", - "name": "Spray Paint Can 8", + "name": "Weapon Pattern 13", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 20, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, - "currencyCode": "CASH", + "discountedPrice": 20, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:02:21.272Z" + "purchaseAt": "2022-11-24T19:12:58.356Z" } ], "itemQty": {}, "tags": [ - "RarityCommon", - "CharacterVendor", - "InitialItem" + "CombatEquipmentVendor", + "RarityEpic", + "InfamyLevel132" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:02:20.890Z", + "createdAt": "2022-11-24T19:12:57.706Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Spray Paint Can Colour 9", - "itemId": "90f2b5fd35d744aab1795dbdb8246cfd", + "title": "Weapon Pattern 2", + "itemId": "29859d7ab1eb4842be1e7819e9f07090", "baseAppId": "", - "sku": "pd3_cosmetic_spraycan_paint9", + "sku": "pd3_cosmetic_weapon_pattern2", "namespace": "pd3", - "name": "Spray Paint Can 9", + "name": "Weapon Pattern 2", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 15000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 15000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T14:04:32.833Z" + "purchaseAt": "2022-11-24T19:05:42.747Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "CharacterVendor", + "CombatEquipmentVendor", + "RarityCommon", "InitialItem" ], "features": [], @@ -28900,1561 +54829,1509 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T14:04:32.448Z", + "createdAt": "2022-11-24T19:05:42.103Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_01", - "itemId": "c6331e17b78f46acb8408c4163d0f6b5", + "title": "Weapon Pattern 3", + "itemId": "991a8ccfd75a4934a8b1ccea7fa8f003", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_01", + "sku": "pd3_cosmetic_weapon_pattern3", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_01", + "name": "Weapon Pattern 3", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 15000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 15000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:46:40.888Z", - "discountPurchaseAt": "2024-01-10T14:46:40.888Z" + "purchaseAt": "2022-11-24T19:06:14.416Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:46:40.092Z", + "createdAt": "2022-11-24T19:06:13.77Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_02", - "itemId": "2942f6a5b630486c90390536829fe0ae", + "title": "Weapon Pattern 4", + "itemId": "59422b513bee4e5abcb6da0e5df25862", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_02", + "sku": "pd3_cosmetic_weapon_pattern4", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_02", + "name": "Weapon Pattern 4", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 15000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 15000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:48:15.398Z", - "discountPurchaseAt": "2024-01-10T14:48:15.398Z" + "purchaseAt": "2022-11-24T19:07:04.703Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:48:14.402Z", + "createdAt": "2022-11-24T19:07:04.056Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_03", - "itemId": "d297a43de4de49ef95826a9f5fec05f0", + "title": "Weapon Pattern 5", + "itemId": "2c20f28b871a45d0a54c2f01dd64896e", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_03", + "sku": "pd3_cosmetic_weapon_pattern5", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_03", + "name": "Weapon Pattern 5", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 15000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 15000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:49:45.026Z", - "discountPurchaseAt": "2024-01-10T14:49:45.026Z" + "purchaseAt": "2022-11-24T19:07:43.543Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:49:44.027Z", + "createdAt": "2022-11-24T19:07:42.895Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_04", - "itemId": "f93ac2c5d4f848d28282ee5f27785924", + "title": "Weapon Pattern 6", + "itemId": "3aa895841c444cb3a9d95fd051fc17f3", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_04", + "sku": "pd3_cosmetic_weapon_pattern6", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_04", + "name": "Weapon Pattern 6", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 30000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 30000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:50:34.081Z", - "discountPurchaseAt": "2024-01-10T14:50:34.081Z" + "purchaseAt": "2022-11-24T19:08:22.199Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityUncommon", + "InfamyLevel14" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:50:33.069Z", + "createdAt": "2022-11-24T19:08:21.556Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_05", - "itemId": "43747c3bfd2b44b18a0348d9a237c598", + "title": "Weapon Pattern 7", + "itemId": "305af2df0a664ee5abfcbfdbb1bfc145", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_05", + "sku": "pd3_cosmetic_weapon_pattern7", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_05", + "name": "Weapon Pattern 7", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 30000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 30000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:51:35.127Z", - "discountPurchaseAt": "2024-01-10T14:51:35.127Z" + "purchaseAt": "2022-11-24T19:08:57.526Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityUncommon", + "InfamyLevel27" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:51:34.119Z", + "createdAt": "2022-11-24T19:08:56.88Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_06", - "itemId": "8984265643c64a86a1537760f9ad6cfc", + "title": "Weapon Pattern 8", + "itemId": "8cf3f2fbffdb4ab4b0889dc346c43840", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_06", + "sku": "pd3_cosmetic_weapon_pattern8", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_06", + "name": "Weapon Pattern 8", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 30000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 30000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:52:20.233Z", - "discountPurchaseAt": "2024-01-10T14:52:20.233Z" + "purchaseAt": "2022-11-24T19:09:32.326Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityUncommon", + "InfamyLevel48" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:52:19.228Z", + "createdAt": "2022-11-24T19:09:31.675Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_07", - "itemId": "b83f8574bb694c9cbdd9a14291380a2a", + "title": "Weapon Pattern 9", + "itemId": "d992b2e53829420bae58a0fb72101fd2", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_07", + "sku": "pd3_cosmetic_weapon_pattern9", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_07", + "name": "Weapon Pattern 9", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponPattern", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 50000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 50000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:53:58.321Z", - "discountPurchaseAt": "2024-01-10T14:53:58.321Z" + "purchaseAt": "2022-11-24T19:10:18.902Z" } ], "itemQty": {}, + "tags": [ + "InfamyLevel76", + "CombatEquipmentVendor", + "RarityRare" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:53:57.299Z", + "createdAt": "2022-11-24T19:10:18.252Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_08", - "itemId": "f673af3f66a247128a2691bb0c627535", + "title": "Weapon Sticker - Nebula 1", + "itemId": "101d51146a464ea3b244b90658adb5ee", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_08", + "sku": "pd3_cosmetic_weapon_sticker_nebula1", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_08", + "name": "Weapon Sticker - Nebula 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:54:43.641Z", - "discountPurchaseAt": "2024-01-10T14:54:43.641Z" + "purchaseAt": "2023-03-17T15:17:51.443Z", + "discountPurchaseAt": "2023-03-17T15:17:51.443Z" } ], "itemQty": {}, + "tags": [ + "inexhaustible" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:54:42.630Z", + "createdAt": "2023-03-17T15:17:51.325Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_09", - "itemId": "f559790b81ac47a5ac8873d3950fcaa1", + "title": "Weapon Sticker - Nebula 2", + "itemId": "8460ae65531f49408017d6f2c317af70", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_09", + "sku": "pd3_cosmetic_weapon_sticker_nebula2", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_09", + "name": "Weapon Sticker - Nebula 2", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:55:28.411Z", - "discountPurchaseAt": "2024-01-10T14:55:28.411Z" + "purchaseAt": "2023-03-17T15:18:32.429Z", + "discountPurchaseAt": "2023-03-17T15:18:32.429Z" } ], "itemQty": {}, + "tags": [ + "inexhaustible" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:55:27.381Z", + "createdAt": "2023-03-17T15:18:32.305Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "SprayCan_DigitalCamo_10", - "itemId": "016c9db842934de8a81316d9e9d5351b", + "title": "Weapon Sticker 1", + "itemId": "1c74036cdac34851bb72b6bf964bda4f", "baseAppId": "", - "sku": "pd3_cosmetic_renown_spct_camo_10", + "sku": "pd3_cosmetic_weapon_sticker1", "namespace": "pd3", - "name": "SprayCan_DigitalCamo_10", + "name": "Weapon Sticker 1", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/SprayPaint", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2024-01-10T14:56:10.816Z", - "discountPurchaseAt": "2024-01-10T14:56:10.816Z" + "purchaseAt": "2022-11-25T10:08:29.857Z" } ], "itemQty": {}, + "tags": [ + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" + ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2024-01-10T14:56:09.790Z", + "createdAt": "2022-11-25T10:08:29.47Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam DLC01 Heist pack", - "itemId": "f7bb2ffd415b4e39be0c09ebb6736b9a", + "title": "Weapon Sticker 10", + "itemId": "ee20153594f146e2974d95bf8f67f2d2", "baseAppId": "", - "sku": "pd3_steam_dlc01_heist_pack", + "sku": "pd3_cosmetic_weapon_sticker10", "namespace": "pd3", - "name": "Steam DLC01 Heist pack", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Weapon Sticker 10", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:42:12.625Z", - "discountPurchaseAt": "2023-11-10T13:42:12.625Z" + "purchaseAt": "2022-11-25T10:14:25.352Z" } ], - "itemIds": [ - "9b3e2be8772e4674bb85dc28f533924e" - ], - "itemQty": { - "9b3e2be8772e4674bb85dc28f533924e": 1 - }, + "itemQty": {}, "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor", + "RarityRare", + "InfamyLevel69" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:42:07.781Z", + "createdAt": "2022-11-25T10:14:24.95Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam DLC01 Tailor pack", - "itemId": "9f7a29d54a5c4e20a8c8176c7b1ecf01", + "title": "Weapon Sticker 11", + "itemId": "1c8e5e25ef234142ad9fec963fc272e1", "baseAppId": "", - "sku": "pd3_steam_dlc01_tailor_pack", + "sku": "pd3_cosmetic_weapon_sticker11", "namespace": "pd3", - "name": "Steam DLC01 Tailor pack", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Weapon Sticker 11", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T14:52:44.586Z", - "discountPurchaseAt": "2023-11-15T14:52:44.586Z" + "purchaseAt": "2022-11-25T10:15:03.505Z" } ], - "itemIds": [ - "1cbbb9441d8b4b0c90dc1ccc788f513d", - "46093ee8374149a3a213d8e71c6eb133", - "ee40557578cc430aa08837d79d17b3b5", - "2d5b8b20c9a94614bc0a14921e570930", - "3030cd162d6b47ccad5e44403ccc7b35", - "7d4b37f472c040c58a388527579f5704", - "36d2557e1a344a62bb52c52201eaa1bc", - "47f3fb495bb944a68230e21759b29ee9", - "a5fbc130a37046059af2b93df1496e29", - "57596dc1166e4cc7933f0f866d39872d", - "eb9eddc16a6b421f80d2c3d2f36229c5", - "09d5e836e5a041d7a73d5e4a6782d12b", - "8e93faab93644527a7682a49ddb71196" - ], - "itemQty": { - "47f3fb495bb944a68230e21759b29ee9": 1, - "1cbbb9441d8b4b0c90dc1ccc788f513d": 1, - "2d5b8b20c9a94614bc0a14921e570930": 1, - "a5fbc130a37046059af2b93df1496e29": 1, - "ee40557578cc430aa08837d79d17b3b5": 1, - "7d4b37f472c040c58a388527579f5704": 1, - "eb9eddc16a6b421f80d2c3d2f36229c5": 1, - "3030cd162d6b47ccad5e44403ccc7b35": 1, - "46093ee8374149a3a213d8e71c6eb133": 1, - "57596dc1166e4cc7933f0f866d39872d": 1, - "8e93faab93644527a7682a49ddb71196": 1, - "09d5e836e5a041d7a73d5e4a6782d12b": 1, - "36d2557e1a344a62bb52c52201eaa1bc": 1 - }, + "itemQty": {}, "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor", + "RarityRare", + "InfamyLevel79" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T14:52:30.079Z", + "createdAt": "2022-11-25T10:15:03.099Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam DLC01 Weapon pack ", - "itemId": "1cdb0fddde344c0ea9ae09ee408e66d7", + "title": "Weapon Sticker 12", + "itemId": "f905566fcb4d4858ab9f9f9f839ec32d", "baseAppId": "", - "sku": "pd3_steam_dlc01_weapon_pack", + "sku": "pd3_cosmetic_weapon_sticker12", "namespace": "pd3", - "name": "Steam DLC01 Weapon pack ", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "Weapon Sticker 12", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:15:17.788Z", - "discountPurchaseAt": "2023-11-10T13:15:17.788Z" + "purchaseAt": "2022-11-25T10:15:41.225Z" } ], - "itemIds": [ - "e3db751853eb4243b797965e6a675e33", - "76fb37baed294bb8a8bb1d8a7220d029", - "6c23ab06ee8840f2902cdc0d32266f18", - "db016db364ee4309a33672b370535c6a", - "40871e8526f84829b96a25313ea213d3", - "f9a13e6c2a0f4e6d9251347bc63634c7" - ], - "itemQty": { - "40871e8526f84829b96a25313ea213d3": 1, - "e3db751853eb4243b797965e6a675e33": 1, - "f9a13e6c2a0f4e6d9251347bc63634c7": 3, - "6c23ab06ee8840f2902cdc0d32266f18": 1, - "76fb37baed294bb8a8bb1d8a7220d029": 1, - "db016db364ee4309a33672b370535c6a": 1 - }, + "itemQty": {}, "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor", + "RarityRare", + "InfamyLevel88" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:15:13.247Z", + "createdAt": "2022-11-25T10:15:40.82Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam MOD Sight LightHolographic ", - "itemId": "8b68928fef71496284fe27297b24f953", + "title": "Weapon Sticker 13", + "itemId": "e3b2334c750d4698b3b2a3959dacb3c3", "baseAppId": "", - "sku": "pd3_steam_mod_sight_lightholographic", + "sku": "pd3_cosmetic_weapon_sticker13", "namespace": "pd3", - "name": "Steam MOD Sight LightHolographic ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "name": "Weapon Sticker 13", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T09:27:05.487Z" + "purchaseAt": "2022-11-25T10:16:53.904Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "InfamyLevel97", + "CombatEquipmentVendor", + "RarityRare" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T09:27:06.164Z", + "createdAt": "2022-11-25T10:16:53.5Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam MOD Stock MinimizedHook ", - "itemId": "894ef8e5dc51421cbe708fa5c1eadcad", + "title": "Weapon Sticker 2", + "itemId": "f77b86afcfc146bfab59854048708a0f", "baseAppId": "", - "sku": "pd3_steam_mod_stock_minimizedhook", + "sku": "pd3_cosmetic_weapon_sticker2", "namespace": "pd3", - "name": "Steam MOD Stock MinimizedHook ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "name": "Weapon Sticker 2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:55:33.169Z" + "purchaseAt": "2022-11-25T10:09:09.713Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:55:33.975Z", + "createdAt": "2022-11-25T10:09:09.311Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam MOD VerticalGrip FlatSideStab ", - "itemId": "47c6260e6e7e4138ae10712bb88245ee", + "title": "Weapon Sticker 3", + "itemId": "d9d865f0c6bd4b4ca22908a9bbffc3de", "baseAppId": "", - "sku": "pd3_steam_mod_verticalgrip_flatsidestab", + "sku": "pd3_cosmetic_weapon_sticker3", "namespace": "pd3", - "name": "Steam MOD VerticalGrip FlatSideStab ", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "name": "Weapon Sticker 3", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:01:35.652Z" + "purchaseAt": "2022-11-25T10:09:45.273Z" } ], "itemQty": {}, "tags": [ - "WeaponPart" + "CombatEquipmentVendor", + "RarityCommon", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:01:36.383Z", + "createdAt": "2022-11-25T10:09:44.874Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Marksman FIK22", - "itemId": "2b2b40a581f04452b4a3f1994127ee8a", + "title": "Weapon Sticker 4", + "itemId": "0d02fcac42344d979f954893267eb01a", "baseAppId": "", - "sku": "pd3_steam_wpn_marksman_fik22", + "sku": "pd3_cosmetic_weapon_sticker4", "namespace": "pd3", - "name": "Steam Marksman FIK22", + "name": "Weapon Sticker 4", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:11:36.266Z" + "purchaseAt": "2022-11-25T10:10:14.144Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", "CombatEquipmentVendor", - "Steam", - "DLC1Category", - "VendorEntitlementRequired" + "RarityUncommon", + "InitialItem" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:11:36.771Z", + "createdAt": "2022-11-25T10:10:13.744Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Marksman FIK22 - Vendor Item ", - "itemId": "e3db751853eb4243b797965e6a675e33", + "title": "Weapon Sticker 5", + "itemId": "0b171ed5d95140309c495c208f0e93e8", "baseAppId": "", - "sku": "pd3_steam_wpn_marksman_fik22_vendor", + "sku": "pd3_cosmetic_weapon_sticker5", "namespace": "pd3", - "name": "Steam Marksman FIK22 - Vendor Item ", - "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "name": "Weapon Sticker 5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:34:11.877Z", - "discountPurchaseAt": "2023-11-09T14:34:11.877Z" + "purchaseAt": "2022-11-25T10:11:16.449Z" } ], "itemQty": {}, - "boundItemIds": [ - "1cdb0fddde344c0ea9ae09ee408e66d7" - ], "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor", + "RarityUncommon", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:34:12.456Z", + "createdAt": "2022-11-25T10:11:16.047Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Preset - PD2 Promo", - "itemId": "44961df113f2463589dcdf22b0d95c23", + "title": "Weapon Sticker 6", + "itemId": "42e0692da47d41baacdf546029339e10", "baseAppId": "", - "sku": "pd3_steam_wpn_preset_promo1", + "sku": "pd3_cosmetic_weapon_sticker6", "namespace": "pd3", - "name": "Steam Preset - PD2 Promo", - "entitlementType": "DURABLE", - "categoryPath": "/WeaponPreset", + "name": "Weapon Sticker 6", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, - "purchasable": false, + "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-06T06:52:14.293Z", - "discountPurchaseAt": "2023-09-06T06:52:14.293Z" + "purchaseAt": "2022-11-25T10:11:59.504Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor", + "RarityUncommon", + "InfamyLevel4" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T06:52:10.408Z", + "createdAt": "2022-11-25T10:11:59.104Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam SMG WAR45", - "itemId": "dac94eb86dff458a84d5779e0d915c44", + "title": "Weapon Sticker 7", + "itemId": "7e3d27aba12f47e89b8aba3b964a35b5", "baseAppId": "", - "sku": "pd3_steam_wpn_smg_war45", + "sku": "pd3_cosmetic_weapon_sticker7", "namespace": "pd3", - "name": "Steam SMG WAR45", + "name": "Weapon Sticker 7", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:35:41.488Z" + "purchaseAt": "2022-11-25T10:12:36.456Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", "CombatEquipmentVendor", - "Steam", - "DLC1Category", - "VendorEntitlementRequired" + "RarityUncommon", + "InfamyLevel19" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:35:42.023Z", + "createdAt": "2022-11-25T10:12:36.054Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam SMG WAR45 - Vendor Item", - "itemId": "76fb37baed294bb8a8bb1d8a7220d029", + "title": "Weapon Sticker 8", + "itemId": "135233aff02c48a6b9dffc1668b9d074", "baseAppId": "", - "sku": "pd3_steam_wpn_smg_war45_vendor", + "sku": "pd3_cosmetic_weapon_sticker8", "namespace": "pd3", - "name": "Steam SMG WAR45 - Vendor Item", - "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "name": "Weapon Sticker 8", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 5000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 5000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:25:42.547Z", - "discountPurchaseAt": "2023-11-09T14:25:42.547Z" + "purchaseAt": "2022-11-25T10:13:09.884Z" } ], "itemQty": {}, - "boundItemIds": [ - "1cdb0fddde344c0ea9ae09ee408e66d7" - ], "tags": [ - "PlatformOnly", - "Steam" + "InfamyLevel41", + "CombatEquipmentVendor", + "RarityRare" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:25:43.119Z", + "createdAt": "2022-11-25T10:13:09.481Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Shotgun FSA12 ", - "itemId": "7e3300158b924241844e5e8eda861225", + "title": "Weapon Sticker 9", + "itemId": "8b9025e655094f449f3a83f46353220c", "baseAppId": "", - "sku": "pd3_steam_wpn_shotgun_fsa12", + "sku": "pd3_cosmetic_weapon_sticker9", "namespace": "pd3", - "name": "Steam Shotgun FSA12 ", + "name": "Weapon Sticker 9", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 10000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 10000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:46:17.456Z" + "purchaseAt": "2022-11-25T10:13:47.857Z" } ], "itemQty": {}, "tags": [ - "PlatformOnly", + "InfamyLevel10", "CombatEquipmentVendor", - "Steam", - "DLC1Category", - "VendorEntitlementRequired" + "RarityRare" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:46:18.023Z", + "createdAt": "2022-11-25T10:13:47.455Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Shotgun FSA12", - "itemId": "6c23ab06ee8840f2902cdc0d32266f18", + "title": "Weapon Sticker Flag 001", + "itemId": "05d93e79675e429e856b7370101b6c84", "baseAppId": "", - "sku": "pd3_steam_wpn_shotgun_fsa12_vendor", + "sku": "pd3_cosmetic_weapon_sticker_flag_001", "namespace": "pd3", - "name": "Steam Shotgun FSA12 - Vendor Item", - "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "name": "Weapon Sticker Flag 001", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-03T07:28:55.876Z", - "discountPurchaseAt": "2023-11-03T07:28:55.876Z" + "purchaseAt": "2024-04-30T09:36:11.939Z", + "discountPurchaseAt": "2024-04-30T09:36:11.939Z" } ], "itemQty": {}, - "boundItemIds": [ - "1cdb0fddde344c0ea9ae09ee408e66d7" - ], "tags": [ - "PlatformOnly", - "Steam" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-03T07:28:52.115Z", + "createdAt": "2024-04-30T09:35:31.174Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 gloves 01", - "itemId": "1cbbb9441d8b4b0c90dc1ccc788f513d", + "title": "Weapon Sticker Flag 002", + "itemId": "2f18065d5cf6447b80060d0458149a5f", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_01", + "sku": "pd3_cosmetic_weapon_sticker_flag_002", "namespace": "pd3", - "name": "Steam Tailor pack 01 gloves 01", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Weapon Sticker Flag 002", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:17:35.135Z", - "discountPurchaseAt": "2023-11-15T13:17:35.135Z" + "purchaseAt": "2024-04-30T09:37:42.01Z", + "discountPurchaseAt": "2024-04-30T09:37:42.01Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:17:20.968Z", + "createdAt": "2024-04-30T09:37:01.202Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 gloves 02", - "itemId": "46093ee8374149a3a213d8e71c6eb133", + "title": "Weapon Sticker Flag 003", + "itemId": "b3f69e09892a45a0be8ed51e85adcbdb", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_02", + "sku": "pd3_cosmetic_weapon_sticker_flag_003", "namespace": "pd3", - "name": "Steam Tailor pack 01 gloves 02", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Weapon Sticker Flag 003", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:10:44.012Z", - "discountPurchaseAt": "2023-11-15T13:10:44.012Z" + "purchaseAt": "2024-04-30T09:38:32.212Z", + "discountPurchaseAt": "2024-04-30T09:38:32.212Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:10:29.836Z", + "createdAt": "2024-04-30T09:37:51.392Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 gloves 03", - "itemId": "ee40557578cc430aa08837d79d17b3b5", + "title": "Weapon Sticker Flag 004", + "itemId": "4452d92ad78546829c9dde5805e7be0f", "baseAppId": "", - "sku": "steam_pd3_cosmetic_tailorpack_01_gloves_03", + "sku": "pd3_cosmetic_weapon_sticker_flag_004", "namespace": "pd3", - "name": "Steam Tailor pack 01 gloves 03", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Weapon Sticker Flag 004", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:06:13.403Z", - "discountPurchaseAt": "2023-11-15T13:06:13.403Z" + "purchaseAt": "2024-04-30T09:39:08.172Z", + "discountPurchaseAt": "2024-04-30T09:39:08.172Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:05:59.240Z", + "createdAt": "2024-04-30T09:38:27.354Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 gloves 03", - "itemId": "8e93faab93644527a7682a49ddb71196", + "title": "Weapon Sticker Flag 005", + "itemId": "5b21f423a1a84938a952f59e52c0b81f", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_03", + "sku": "pd3_cosmetic_weapon_sticker_flag_005", "namespace": "pd3", - "name": "Steam Tailor pack 01 gloves 03", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Weapon Sticker Flag 005", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-16T07:17:47.207Z", - "discountPurchaseAt": "2023-11-16T07:17:47.207Z" + "purchaseAt": "2024-04-30T09:39:39.063Z", + "discountPurchaseAt": "2024-04-30T09:39:39.063Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-16T07:17:29.881Z", + "createdAt": "2024-04-30T09:38:58.247Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 gloves 04", - "itemId": "2d5b8b20c9a94614bc0a14921e570930", + "title": "Weapon Sticker Flag 006", + "itemId": "4c6c508d88644a42b92b93f273c4c401", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_gloves_04", + "sku": "pd3_cosmetic_weapon_sticker_flag_006", "namespace": "pd3", - "name": "Steam Tailor pack 01 gloves 04", - "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "name": "Weapon Sticker Flag 006", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:01:27.471Z", - "discountPurchaseAt": "2023-11-15T13:01:27.471Z" + "purchaseAt": "2024-04-30T09:40:11.701Z", + "discountPurchaseAt": "2024-04-30T09:40:11.701Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:01:13.337Z", + "createdAt": "2024-04-30T09:39:30.871Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 mask 01", - "itemId": "3030cd162d6b47ccad5e44403ccc7b35", + "title": "Weapon Sticker Flag 007", + "itemId": "bdc12390cd934130bf2984eb881b1a9b", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_mask_01", + "sku": "pd3_cosmetic_weapon_sticker_flag_007", "namespace": "pd3", - "name": "Steam Tailor pack 01 mask 01", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Weapon Sticker Flag 007", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:48:53.414Z", - "discountPurchaseAt": "2023-11-15T12:48:53.414Z" + "purchaseAt": "2024-04-30T09:40:39.046Z", + "discountPurchaseAt": "2024-04-30T09:40:39.046Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:48:39.293Z", + "createdAt": "2024-04-30T09:39:58.222Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 mask 02", - "itemId": "7d4b37f472c040c58a388527579f5704", + "title": "Weapon Sticker Flag 008", + "itemId": "4d4a13e9d3454acfab3c948943840481", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_mask_02", + "sku": "pd3_cosmetic_weapon_sticker_flag_008", "namespace": "pd3", - "name": "Steam Tailor pack 01 mask 02", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Weapon Sticker Flag 008", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:44:55.622Z", - "discountPurchaseAt": "2023-11-15T12:44:55.622Z" + "purchaseAt": "2024-04-30T09:41:20.151Z", + "discountPurchaseAt": "2024-04-30T09:41:20.151Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:44:41.515Z", + "createdAt": "2024-04-30T09:40:39.347Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 mask 03", - "itemId": "36d2557e1a344a62bb52c52201eaa1bc", + "title": "Weapon Sticker Flag 009", + "itemId": "993eeb94116245d9b57fb63d8a79ad73", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_mask_03", + "sku": "pd3_cosmetic_weapon_sticker_flag_009", "namespace": "pd3", - "name": "Steam Tailor pack 01 mask 03", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Weapon Sticker Flag 009", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:40:28.426Z", - "discountPurchaseAt": "2023-11-15T12:40:28.426Z" + "purchaseAt": "2024-04-30T09:41:57.109Z", + "discountPurchaseAt": "2024-04-30T09:41:57.109Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:40:14.338Z", + "createdAt": "2024-04-30T09:41:16.286Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 mask 04 ", - "itemId": "47f3fb495bb944a68230e21759b29ee9", + "title": "Weapon Sticker Flag 010", + "itemId": "413495f5ce954ae39518b5195e63652d", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_mask_04", + "sku": "pd3_cosmetic_weapon_sticker_flag_010", "namespace": "pd3", - "name": "Steam Tailor pack 01 mask 04 ", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "Weapon Sticker Flag 010", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:33:59.511Z", - "discountPurchaseAt": "2023-11-15T12:33:59.511Z" + "purchaseAt": "2024-04-30T09:42:28.623Z", + "discountPurchaseAt": "2024-04-30T09:42:28.623Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:33:45.572Z", + "createdAt": "2024-04-30T09:41:47.807Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 suit 01", - "itemId": "a5fbc130a37046059af2b93df1496e29", + "title": "Weapon Sticker Flag 011", + "itemId": "78a13ddc84fb4cc7bdecb4174cca03eb", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_suit_01", + "sku": "pd3_cosmetic_weapon_sticker_flag_011", "namespace": "pd3", - "name": "Steam Tailor pack 01 suit 01", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "name": "Weapon Sticker Flag 011", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:55:28.824Z", - "discountPurchaseAt": "2023-11-15T13:55:28.824Z" + "purchaseAt": "2024-04-30T09:42:55.171Z", + "discountPurchaseAt": "2024-04-30T09:42:55.171Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:55:14.498Z", + "createdAt": "2024-04-30T09:42:14.346Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 suit 02", - "itemId": "57596dc1166e4cc7933f0f866d39872d", + "title": "Weapon Sticker Flag 0122", + "itemId": "97d4f4ff0c0e48ac834b12e0fa17633d", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_suit_02", + "sku": "pd3_cosmetic_weapon_sticker_flag_012", "namespace": "pd3", - "name": "Steam Tailor pack 01 suit 02", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "name": "Weapon Sticker Flag 012", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:51:34.590Z", - "discountPurchaseAt": "2023-11-15T13:51:34.590Z" + "purchaseAt": "2024-04-30T09:43:21.046Z", + "discountPurchaseAt": "2024-04-30T09:43:21.046Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:51:20.267Z", + "createdAt": "2024-04-30T09:42:40.222Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 suit 03", - "itemId": "eb9eddc16a6b421f80d2c3d2f36229c5", + "title": "Weapon Sticker HelmetPop", + "itemId": "cf4285a7bf6d4542a2f64c9708c317cd", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_suit_03", - "namespace": "pd3", - "name": "Steam Tailor pack 01 suit 03", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "sku": "pd3_cosmetic_weapon_sticker_helmetpop", + "namespace": "pd3", + "name": "Weapon Sticker HelmetPop", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 3000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 3000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:47:20.650Z", - "discountPurchaseAt": "2023-11-15T13:47:20.650Z" + "purchaseAt": "2024-03-19T16:54:00.346Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], "tags": [ - "PlatformOnly", - "Steam", - "Premium" + "CombatEquipmentVendor" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:47:06.365Z", + "createdAt": "2024-03-19T16:54:01.378Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Tailor pack 01 suit 04", - "itemId": "09d5e836e5a041d7a73d5e4a6782d12b", + "title": "Weapon Sticker Remake 1 ", + "itemId": "08817173f5794f698ac43aa2e4d19e03", "baseAppId": "", - "sku": "pd3_steam_cosmetic_tailorpack_01_suit_04", + "sku": "pd3_cosmetic_weapon_sticker_remake_1", "namespace": "pd3", - "name": "Steam Tailor pack 01 suit 04", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "name": "Weapon Sticker Remake 1 ", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:22:53.048Z", - "discountPurchaseAt": "2023-11-15T13:22:53.048Z" + "purchaseAt": "2023-10-31T15:20:17.573Z", + "discountPurchaseAt": "2023-10-31T15:20:17.573Z" } ], "itemQty": {}, - "boundItemIds": [ - "9f7a29d54a5c4e20a8c8176c7b1ecf01" - ], - "tags": [ - "PlatformOnly", - "Steam", - "Premium" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:22:38.813Z", + "createdAt": "2023-10-31T15:20:15.062Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Weapon Charm DLC1", - "itemId": "db016db364ee4309a33672b370535c6a", - "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_charm_dlc1", + "title": "Weapon Sticker Remake 2", + "itemId": "7ef052489333478d8669645c5b1944c9", + "sku": "pd3_cosmetic_weapon_sticker_remake_2", "namespace": "pd3", - "name": "Steam Weapon Charm DLC1", + "name": "Weapon Sticker Remake 2", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponCharm", + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:17:27.979Z", - "discountPurchaseAt": "2023-11-10T14:17:27.979Z" + "purchaseAt": "2023-10-31T15:23:17.703Z", + "discountPurchaseAt": "2023-10-31T15:23:17.703Z" } ], "itemQty": {}, - "boundItemIds": [ - "1cdb0fddde344c0ea9ae09ee408e66d7" - ], - "tags": [ - "PlatformOnly", - "Steam" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:17:23.041Z", + "createdAt": "2023-11-10T05:51:55.09Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Steam Weapon Sticker DLC1", - "itemId": "40871e8526f84829b96a25313ea213d3", - "baseAppId": "", - "sku": "pd3_steam_cosmetic_weapon_sticker_dlc1", + "title": "Weapon Sticker Remake 3", + "itemId": "c517e034613b4991914c2af0758ec906", + "sku": "pd3_cosmetic_weapon_sticker_remake_3", "namespace": "pd3", - "name": "Steam Weapon Sticker DLC1", + "name": "Weapon Sticker Remake 3", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, @@ -30465,213 +56342,187 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:32:05.069Z", - "discountPurchaseAt": "2023-11-10T14:32:05.069Z" + "purchaseAt": "2023-10-31T15:23:58.667Z", + "discountPurchaseAt": "2023-10-31T15:23:58.667Z" } ], "itemQty": {}, - "boundItemIds": [ - "1cdb0fddde344c0ea9ae09ee408e66d7" - ], - "tags": [ - "PlatformOnly", - "Inexhaustible", - "Steam" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:32:00.059Z", + "createdAt": "2023-11-10T05:51:55.134Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 1: Base", - "itemId": "effccebd4e904915930c87711cf7213f", - "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit1_base", + "title": "Weapon Sticker Remake 4", + "itemId": "5bb039e640634377b92e985beadefd7e", + "sku": "pd3_cosmetic_weapon_sticker_remake_4", "namespace": "pd3", - "name": "Suit 1: Base", + "name": "Weapon Sticker Remake 4", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T08:49:28.538Z", - "discountPurchaseAt": "2023-02-08T08:49:28.538Z" + "purchaseAt": "2023-10-31T15:24:36.229Z", + "discountPurchaseAt": "2023-10-31T15:24:36.229Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "TailorVendor", - "InfamyLevel2" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T08:49:28.460Z", + "createdAt": "2023-11-10T05:51:55.275Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 1: Variant 1", - "itemId": "684d17aef7cd4d83862620559ec7d7eb", - "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit1_variant1", + "title": "Weapon Sticker Remake 5", + "itemId": "f9fd5052483c4218a7b037db7e4836c4", + "sku": "pd3_cosmetic_weapon_sticker_remake_5", "namespace": "pd3", - "name": "Suit 1: Variant 1", + "name": "Weapon Sticker Remake 5", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T09:26:10.677Z", - "discountPurchaseAt": "2023-02-08T09:26:10.677Z" + "purchaseAt": "2023-10-31T15:25:17.343Z", + "discountPurchaseAt": "2023-10-31T15:25:17.343Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "TailorVendor", - "InfamyLevel6" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T09:26:10.540Z", + "createdAt": "2023-11-10T05:51:55.28Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 1: Variant 2", - "itemId": "91b0506149bf4260872f18302d736a30", - "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit1_variant2", + "title": "Weapon Sticker Remake 6", + "itemId": "07483dabfcb74a9e8735fce080d104ae", + "sku": "pd3_cosmetic_weapon_sticker_remake_6", "namespace": "pd3", - "name": "Suit 1: Variant 2", + "name": "Weapon Sticker Remake 6", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:13:53.914Z", - "discountPurchaseAt": "2023-02-08T10:13:53.915Z" + "purchaseAt": "2023-10-31T15:26:06.294Z", + "discountPurchaseAt": "2023-10-31T15:26:06.294Z" } ], "itemQty": {}, - "tags": [ - "RarityCommon", - "TailorVendor", - "InfamyLevel35" - ], + "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:13:53.748Z", + "createdAt": "2023-11-10T05:51:55.356Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 1: Variant 3", - "itemId": "097dd71736794726ad2a63ff671a7786", + "title": "Window Platform Penthouse Preplanning asset", + "itemId": "d953877d2f494605b89f40896fe85781", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit1_variant3", + "sku": "pd3_preplanning_penthouse_1", "namespace": "pd3", - "name": "Suit 1: Variant 3", + "name": "Window Platform Penthouse Preplanning asset", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/PreplanningAssets", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 1000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 1000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:15:15.896Z", - "discountPurchaseAt": "2023-02-08T10:15:15.896Z" + "currencyNamespace": "pd3" } ], "itemQty": {}, "tags": [ - "InfamyLevel73", - "RarityCommon", - "TailorVendor" + "PreplanningAsset", + "InitialItem" ], - "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:15:15.729Z", + "createdAt": "2022-10-19T13:23:14.655Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 1: Variant 4", - "itemId": "908d2b44580e40a38fc65a22c8febf61", + "title": "Wolf Mould", + "itemId": "62bc2b010790440fbdadabe3eefa0931", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit1_variant4", + "sku": "pd3_cosmetic_mask_mould_wolf", "namespace": "pd3", - "name": "Suit 1: Variant 4", + "name": "Wolf Mould", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Suit", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -30685,31 +56536,31 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T08:56:55.854Z", - "discountPurchaseAt": "2023-05-29T08:56:55.854Z" + "purchaseAt": "2023-02-10T14:59:11.297Z", + "discountPurchaseAt": "2023-02-10T14:59:11.297Z" } ], "itemQty": {}, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel89" + "RarityUncommon", + "CharacterVendor", + "InitialItem" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T08:56:55.790Z", + "createdAt": "2023-02-10T14:59:11.181Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 2: Base", - "itemId": "538c32c03831451b9f8bcbbae909fd21", + "title": "Wolf Suit", + "itemId": "ff4d161498414ea2b2e2c79c82215821", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit2_base", + "sku": "pd3_suit_wolf", "namespace": "pd3", - "name": "Suit 2: Base", + "name": "Wolf Suit", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, @@ -30720,1030 +56571,1215 @@ "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T08:54:36.911Z", - "discountPurchaseAt": "2023-02-08T08:54:36.911Z" + "purchaseAt": "2022-11-22T09:45:34.328Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel3" + "RarityCommon" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T08:54:36.777Z", + "createdAt": "2022-11-22T09:45:34.868Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 2: Variant 1", - "itemId": "6860d820a92240fb83d83fcffec9f6cf", + "title": "XBox AssaultRifle CHS3", + "itemId": "c5ff0e0df08e4a449e0eda53d9cc3da4", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit2_variant1", + "sku": "pd3_xbox_wpn_assaultrifle_chs3", "namespace": "pd3", - "name": "Suit 2: Variant 1", + "name": "XBox AssaultRifle CHS3", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Suit", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:19:16.759Z", - "discountPurchaseAt": "2023-02-08T10:19:16.759Z" + "purchaseAt": "2024-06-24T13:09:19.601Z", + "discountPurchaseAt": "2024-06-24T13:09:19.601Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel18" + "PlatformOnly", + "CombatEquipmentVendor", + "DLC3Category", + "XBox", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:19:16.600Z", + "createdAt": "2024-06-24T13:09:01.093Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 2: Variant 2", - "itemId": "b7df78781c034d27a709d4906a53221c", + "title": "XBox AssaultRifle CHS3 - Vendor Item", + "itemId": "c840c1ecf3f24edaaa8047e96c0c2337", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit2_variant2", + "sku": "pd3_xbox_wpn_assaultrifle_chs3_vendor", "namespace": "pd3", - "name": "Suit 2: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox AssaultRifle CHS3 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:20:29.438Z", - "discountPurchaseAt": "2023-02-08T10:20:29.438Z" + "purchaseAt": "2024-06-24T13:17:20.608Z", + "discountPurchaseAt": "2024-06-24T13:17:20.608Z" } ], "itemQty": {}, + "boundItemIds": [ + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel40", - "RarityUncommon", - "TailorVendor" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:20:29.275Z", + "createdAt": "2024-06-24T13:17:02.081Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 2: Variant 3", - "itemId": "8e9b0924b0af4233ba0d9320802749ee", + "title": "XBox AssaultRifle RG5", + "itemId": "c05d76ee838e45cfbede7e3c909c04de", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit2_variant3", + "sku": "pd3_xbox_wpn_assaultrifle_rg5", "namespace": "pd3", - "name": "Suit 2: Variant 3", + "name": "XBox AssaultRifle RG5", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": false, - "categoryPath": "/Suit", + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 400000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 400000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:24:13.395Z", - "discountPurchaseAt": "2023-02-08T10:24:13.395Z" + "purchaseAt": "2024-02-14T12:33:50.987Z", + "discountPurchaseAt": "2024-02-14T12:33:50.987Z" } ], "itemQty": {}, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel66" + "PlatformOnly", + "CombatEquipmentVendor", + "XBox", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:24:13.237Z", + "createdAt": "2024-02-14T12:33:51.755Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 2: Variant 4", - "itemId": "a273f8a97b4146d4b468bd4c49435e6e", + "title": "XBox AssaultRifle RG5 - Vendor Item ", + "itemId": "a72b1e3c10e243bd996ff750b3fd19b4", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit2_variant4", + "sku": "pd3_xbox_wpn_assaultrifle_rg5_vendor", "namespace": "pd3", - "name": "Suit 2: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox AssaultRifle RG5 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T09:01:35.846Z", - "discountPurchaseAt": "2023-05-29T09:01:35.846Z" + "purchaseAt": "2024-02-14T12:54:26.869Z", + "discountPurchaseAt": "2024-02-14T12:54:26.869Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" + ], "tags": [ - "RarityEpic", - "InfamyLevel91", - "TailorVendor" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T09:01:35.753Z", + "createdAt": "2024-02-14T12:54:27.667Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 3: Base", - "itemId": "34c91b06bf464e079eb16154628605b1", + "title": "pd3_xbox_dlc01_heist_pack", + "itemId": "dd0800a21b804c27b55ae954de880491", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit3_base", + "sku": "pd3_xbox_dlc01_heist_pack", "namespace": "pd3", - "name": "Suit 3: Base", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC01 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T08:56:31.429Z", - "discountPurchaseAt": "2023-02-08T08:56:31.429Z" + "purchaseAt": "2023-11-10T13:47:47.832Z", + "discountPurchaseAt": "2023-11-10T13:47:47.832Z" } ], - "itemQty": {}, + "itemIds": [ + "31a224936c0846799ce55efaa3245d9d" + ], + "itemQty": { + "31a224936c0846799ce55efaa3245d9d": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel11" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T08:56:31.298Z", + "createdAt": "2023-11-10T13:47:42.965Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 3: Variant 1", - "itemId": "f52b54ba84e94e3c9a53a4b59810dbe1", + "title": "XBox DLC01 Tailor pack", + "itemId": "4660ba68e21143d79b591c0fefe1923b", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit3_variant1", + "sku": "pd3_xbox_dlc01_tailor_pack", "namespace": "pd3", - "name": "Suit 3: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC01 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:26:34.886Z", - "discountPurchaseAt": "2023-02-08T10:26:34.886Z" + "purchaseAt": "2023-11-15T15:02:51.612Z", + "discountPurchaseAt": "2023-11-15T15:02:51.612Z" } ], - "itemQty": {}, + "itemIds": [ + "ea6694a1157644049052c435ed403ca0", + "afb59e9b79e94b61b6af5e444b6a9321", + "180c23749e884bb7838e55d4c7a81eda", + "92b670d71861433b822677612f5ed7c1", + "1cc33cfcc89d4031a92f63e2391f8ceb", + "68a57501549f4bdfa97df42ffe5d2abe", + "58a15faf5eea4740b4402ac029395cff", + "aec3a4fb2a8541c5af0953b183953308", + "7cb2d6f92e284381b2a388ef949a121c", + "f755783f43eb4643a5477dccec5c5657", + "915e5d4a550b4ff18fc29299f939da14", + "b71e15593d7a4fd1bffa2ec4eccbd8ff" + ], + "itemQty": { + "915e5d4a550b4ff18fc29299f939da14": 1, + "1cc33cfcc89d4031a92f63e2391f8ceb": 1, + "b71e15593d7a4fd1bffa2ec4eccbd8ff": 1, + "aec3a4fb2a8541c5af0953b183953308": 1, + "58a15faf5eea4740b4402ac029395cff": 1, + "68a57501549f4bdfa97df42ffe5d2abe": 1, + "ea6694a1157644049052c435ed403ca0": 1, + "7cb2d6f92e284381b2a388ef949a121c": 1, + "f755783f43eb4643a5477dccec5c5657": 1, + "92b670d71861433b822677612f5ed7c1": 1, + "afb59e9b79e94b61b6af5e444b6a9321": 1, + "180c23749e884bb7838e55d4c7a81eda": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel25" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:26:34.743Z", + "createdAt": "2023-11-15T15:02:37.085Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 3: Variant 2", - "itemId": "07c9fcbc8067437ba929266931276960", + "title": "XBox DLC01 Weapon pack ", + "itemId": "f31457f805b946e49c5ec6f87f688620", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit3_variant2", + "sku": "pd3_xbox_dlc01_weapon_pack", "namespace": "pd3", - "name": "Suit 3: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC01 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:28:01.001Z", - "discountPurchaseAt": "2023-02-08T10:28:01.001Z" + "purchaseAt": "2023-11-10T13:24:16.02Z", + "discountPurchaseAt": "2023-11-10T13:24:16.02Z" } ], - "itemQty": {}, + "itemIds": [ + "ce78e08b2d9b48d3ab98c6b500715202", + "20a03764eebe48e685a8c018945c1b93", + "a53796659964479aaac94454ec3f73ef", + "def78f77b7fc4f55a32ae0bda68139d0", + "189da92f691c42f5a40b1588343119b0", + "f9a13e6c2a0f4e6d9251347bc63634c7" + ], + "itemQty": { + "def78f77b7fc4f55a32ae0bda68139d0": 1, + "189da92f691c42f5a40b1588343119b0": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 3, + "a53796659964479aaac94454ec3f73ef": 1, + "20a03764eebe48e685a8c018945c1b93": 1, + "ce78e08b2d9b48d3ab98c6b500715202": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel45" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:28:00.843Z", + "createdAt": "2023-11-10T13:24:11.231Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 3: Variant 3", - "itemId": "c375a70239a24efebd9aa5f03706f7ee", + "title": "XBox DLC02 Heist pack", + "itemId": "504a3fec0e6f459aa65bb9dc058dee93", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit3_variant3", + "sku": "pd3_xbox_dlc02_heist_pack", "namespace": "pd3", - "name": "Suit 3: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC02 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:30:13.752Z", - "discountPurchaseAt": "2023-02-08T10:30:13.752Z" + "purchaseAt": "2024-05-21T13:36:29.941Z", + "discountPurchaseAt": "2024-05-21T13:36:29.941Z" } ], - "itemQty": {}, + "itemIds": [ + "acc876daeade417e8cc0219914664fa6" + ], + "itemQty": { + "acc876daeade417e8cc0219914664fa6": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel69" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:30:13.645Z", + "createdAt": "2024-05-21T13:36:29.474Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 3: Variant 4", - "itemId": "20ef3bcaebe746ab9ffb1e7cb2e6cfdb", + "title": "XBox DLC02 Tailor pack", + "itemId": "ac9e477157d94847b12681a242351b5e", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit3_variant4", + "sku": "pd3_xbox_dlc02_tailor_pack", "namespace": "pd3", - "name": "Suit 3: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC02 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T09:04:13.890Z", - "discountPurchaseAt": "2023-05-29T09:04:13.890Z" + "purchaseAt": "2024-03-06T14:54:25.154Z", + "discountPurchaseAt": "2024-03-06T14:54:25.154Z" } ], - "itemQty": {}, + "itemIds": [ + "26624844097649068ccc9a9dd8d09e5e", + "8498ec38068a49a8a226472242d21b69", + "714cdfe977c4465f84a91711ff6da51b", + "e402377c076e4c4990a8ebce09d408cc", + "8f45d034d7b244de81698d001d9c6acf", + "0139ea7db48e41a1bc15ef23cdadebe6", + "a5b1febd5c1a4994be8e2f92f4f0b84c", + "a109f90a664d4b81ad92bd3beb5779c9", + "7ab0d5d464a743cb8994d1c4bd11d032", + "7cebf855740549c1b458d9a88a8022f9", + "cbd7b9ff26a44ccda324cb2c57981cd0", + "2fc488b02b444d19909fff6cd7cf4134" + ], + "itemQty": { + "0139ea7db48e41a1bc15ef23cdadebe6": 1, + "cbd7b9ff26a44ccda324cb2c57981cd0": 1, + "2fc488b02b444d19909fff6cd7cf4134": 1, + "714cdfe977c4465f84a91711ff6da51b": 1, + "8f45d034d7b244de81698d001d9c6acf": 1, + "e402377c076e4c4990a8ebce09d408cc": 1, + "7ab0d5d464a743cb8994d1c4bd11d032": 1, + "a109f90a664d4b81ad92bd3beb5779c9": 1, + "a5b1febd5c1a4994be8e2f92f4f0b84c": 1, + "7cebf855740549c1b458d9a88a8022f9": 1, + "26624844097649068ccc9a9dd8d09e5e": 1, + "8498ec38068a49a8a226472242d21b69": 1 + }, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel128" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T09:04:13.817Z", + "createdAt": "2024-03-06T14:54:25.474Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 4: Base", - "itemId": "7324fc1843f440cebef4237acecd6c36", + "title": "XBox DLC02 Weapon pack ", + "itemId": "48e8fc422be24c1a83901db780fe4975", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit4_base", + "sku": "pd3_xbox_dlc02_weapon_pack", "namespace": "pd3", - "name": "Suit 4: Base", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC02 Weapon pack ", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T09:00:24.564Z", - "discountPurchaseAt": "2023-02-08T09:00:24.564Z" + "purchaseAt": "2024-02-14T15:46:34.52Z", + "discountPurchaseAt": "2024-02-14T15:46:34.52Z" } ], - "itemQty": {}, + "itemIds": [ + "a72b1e3c10e243bd996ff750b3fd19b4", + "33a79d2c8ba749db8d2df7fabe7ae820", + "5a092a60d47c4a80b76a8a294fc307b4", + "099cbb6f1694444a9d90c26a8c63f998", + "555122dde2bc4191ad07d18587a61e73", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600" + ], + "itemQty": { + "a72b1e3c10e243bd996ff750b3fd19b4": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "099cbb6f1694444a9d90c26a8c63f998": 1, + "33a79d2c8ba749db8d2df7fabe7ae820": 1, + "555122dde2bc4191ad07d18587a61e73": 1, + "5a092a60d47c4a80b76a8a294fc307b4": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ - "InfamyLevel31", - "RarityUncommon", - "TailorVendor" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T09:00:24.438Z", + "createdAt": "2024-02-14T15:46:35.588Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 4: Variant 1", - "itemId": "853bbd247b0c4cd983c04a0d35dcae82", + "title": "XBox DLC03 Heist pack", + "itemId": "1201793fbd054c3186c42cb45fd8107e", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit4_variant1", + "sku": "pd3_xbox_dlc03_heist_pack", "namespace": "pd3", - "name": "Suit 4: Variant 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC03 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:33:57.249Z", - "discountPurchaseAt": "2023-02-08T10:33:57.249Z" + "purchaseAt": "2024-07-09T08:50:43.674Z", + "discountPurchaseAt": "2024-07-09T08:50:43.674Z" } ], - "itemQty": {}, + "itemIds": [ + "fc4023ed1a1c4635a6328a599fbcadfd" + ], + "itemQty": { + "fc4023ed1a1c4635a6328a599fbcadfd": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel56" + "PlatformOnly", + "XBox", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:33:57.107Z", + "createdAt": "2024-07-09T08:50:44.7Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 4: Variant 2", - "itemId": "a2a245c11edf4b5e9e4ff951236cce80", + "title": "XBox DLC03 Tailor pack", + "itemId": "b6e32bd5a2684dd7afc141394ddb4bf2", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit4_variant2", + "sku": "pd3_xbox_dlc03_tailor_pack", "namespace": "pd3", - "name": "Suit 4: Variant 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC03 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:35:37.804Z", - "discountPurchaseAt": "2023-02-08T10:35:37.804Z" + "purchaseAt": "2024-07-09T09:51:55.526Z", + "discountPurchaseAt": "2024-07-09T09:51:55.526Z" } ], - "itemQty": {}, + "itemIds": [ + "c17a3919e3154c029b652fad84bca73d", + "0092c6ba19c14fac87d16a5c14141ac0", + "d39c76d68eb4467bb899b93beae1c4a4", + "0c7b6796923a4c77aea54d322b32077f", + "9338dd9ec7744e4aa1567cd4c8de3b4c", + "b03ef35f557b411b898a27851ca00654", + "79ad27f6adb44ec8ba7bd4255b1b87ba", + "b613af00c59d4e7d932df8dc3f6eaa34", + "35ff3e808e524055ac78b25acb504b4c", + "d3094b084da34611907a6499137f0b64", + "a0468f42095d40cab6cb816de1a67e05", + "47fbb3e7ecba46b4b7679de3d580d056" + ], + "itemQty": { + "0092c6ba19c14fac87d16a5c14141ac0": 1, + "47fbb3e7ecba46b4b7679de3d580d056": 1, + "d3094b084da34611907a6499137f0b64": 1, + "c17a3919e3154c029b652fad84bca73d": 1, + "79ad27f6adb44ec8ba7bd4255b1b87ba": 1, + "0c7b6796923a4c77aea54d322b32077f": 1, + "d39c76d68eb4467bb899b93beae1c4a4": 1, + "35ff3e808e524055ac78b25acb504b4c": 1, + "b613af00c59d4e7d932df8dc3f6eaa34": 1, + "b03ef35f557b411b898a27851ca00654": 1, + "9338dd9ec7744e4aa1567cd4c8de3b4c": 1, + "a0468f42095d40cab6cb816de1a67e05": 1 + }, "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel80" + "PlatformOnly", + "XBox", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:35:37.661Z", + "createdAt": "2024-07-09T09:51:54.603Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 4: Variant 3", - "itemId": "ab069003872e4622be1affde42b2888a", + "title": "XBox DLC03 Weapon Charm 01", + "itemId": "a57dc0f68b304caaac1dcf95e011a0b0", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit4_variant3", + "sku": "pd3_xbox_cosmetics_weapon_Charm_dlc03_01", "namespace": "pd3", - "name": "Suit 4: Variant 3", + "name": "XBox DLC03 Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:38:07.449Z", - "discountPurchaseAt": "2023-02-08T10:38:07.449Z" + "purchaseAt": "2024-07-11T12:34:36.64Z" } ], "itemQty": {}, + "boundItemIds": [ + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "RarityUncommon", - "TailorVendor", - "InfamyLevel104" + "PlatformOnly", + "inexhaustible", + "XBox" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:38:07.320Z", + "createdAt": "2024-07-11T12:34:36.691Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 4: Variant 4", - "itemId": "1adf5205150740e586dc3a5b97dc6afa", + "title": "XBox DLC03 Weapon Sticker 01", + "itemId": "8b2f3eb91b0d4a6f8825e67e2ae9de73", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit4_variant4", + "sku": "pd3_xbox_cosmetics_weapon_sticker_dlc03_01", "namespace": "pd3", - "name": "Suit 4: Variant 4", + "name": "XBox DLC03 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T09:05:16.707Z", - "discountPurchaseAt": "2023-05-29T09:05:16.707Z" + "purchaseAt": "2024-07-09T08:10:38.684Z", + "discountPurchaseAt": "2024-07-09T08:10:38.684Z" } ], "itemQty": {}, + "boundItemIds": [ + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel135" + "PlatformOnly", + "inexhaustible", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T09:05:16.664Z", + "createdAt": "2024-07-09T08:10:38.048Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 5: Base", - "itemId": "c63d70bc10b044daa447a7e4e37da859", + "title": "XBox DLC03 Weapon pack", + "itemId": "b2c3bbf0dd79408ebaec35eb7e2dc218", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit5_base", + "sku": "pd3_xbox_dlc03_weapon_pack", "namespace": "pd3", - "name": "Suit 5: Base", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC03 Weapon pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 500000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T09:02:02.618Z", - "discountPurchaseAt": "2023-02-08T09:02:02.618Z" + "purchaseAt": "2024-07-01T12:21:08.321Z", + "discountPurchaseAt": "2024-07-01T12:21:08.321Z" } ], - "itemQty": {}, + "itemIds": [ + "c840c1ecf3f24edaaa8047e96c0c2337", + "cfe133f64eae413dbef6217300628dc1", + "e3f7953a9ab64f1e871cf198157a274a", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "a57dc0f68b304caaac1dcf95e011a0b0", + "8b2f3eb91b0d4a6f8825e67e2ae9de73" + ], + "itemQty": { + "cfe133f64eae413dbef6217300628dc1": 1, + "c840c1ecf3f24edaaa8047e96c0c2337": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 2, + "a57dc0f68b304caaac1dcf95e011a0b0": 1, + "8b2f3eb91b0d4a6f8825e67e2ae9de73": 1, + "e3f7953a9ab64f1e871cf198157a274a": 1, + "84d0c77410184162a1b300dcca87c600": 1 + }, "tags": [ - "InfamyLevel50", - "TailorVendor", - "RarityRare" + "PlatformOnly", + "XBox", + "ReportsTelemetry" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T09:02:02.705Z", + "createdAt": "2024-07-01T12:20:39.501Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 5: Variant 1", - "itemId": "7e2f73a6ca314585ba089f838396c671", + "title": "XBox DLC04 Weapon Charm 01", + "itemId": "d20579615484407486838a9abc9e02f4", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit5_variant1", + "sku": "pd3_xbox_cosmetics_charm_dlc04_01", "namespace": "pd3", - "name": "Suit 5: Variant 1", + "name": "XBox DLC04 Weapon Charm 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T10:44:20.789Z", - "discountPurchaseAt": "2023-02-08T10:44:20.789Z" + "purchaseAt": "2024-07-25T16:07:36.405Z" } ], "itemQty": {}, + "boundItemIds": [ + "f63276f952494e2cb512eccef21a2778", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel64", - "TailorVendor", - "RarityRare" + "PlatformOnly", + "inexhaustible", + "XBox" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T10:44:20.668Z", + "createdAt": "2024-07-25T16:07:36.444Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 5: Variant 2", - "itemId": "1a7e695022d14b00bd410427dd28d067", + "title": "XBox DLC04 Weapon Sticker 01", + "itemId": "fb06749bd0f54d3babe4712c1f880596", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit5_variant2", + "sku": "pd3_xbox_cosmetics_sticker_dlc04_01", "namespace": "pd3", - "name": "Suit 5: Variant 2", + "name": "XBox DLC04 Weapon Sticker 01", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T12:02:52.947Z", - "discountPurchaseAt": "2023-02-08T12:02:52.947Z" + "purchaseAt": "2024-07-25T16:14:55.572Z" } ], "itemQty": {}, + "boundItemIds": [ + "f63276f952494e2cb512eccef21a2778", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel85", - "TailorVendor", - "RarityRare" + "PlatformOnly", + "inexhaustible", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T12:02:52.934Z", + "createdAt": "2024-07-25T16:14:55.623Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 5: Variant 3", - "itemId": "0e6b9010033042a999f4e47e4da79382", + "title": "XBox DLC04 Heist pack", + "itemId": "bded0312311243c798691f93cf9bc7cc", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit5_variant3", + "sku": "pd3_xbox_dlc04_heist_pack", "namespace": "pd3", - "name": "Suit 5: Variant 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox DLC04 Heist pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 500000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-08T12:05:07.318Z", - "discountPurchaseAt": "2023-02-08T12:05:07.318Z" + "purchaseAt": "2024-08-16T13:07:22.336Z", + "discountPurchaseAt": "2024-08-16T13:07:22.336Z" } ], - "itemQty": {}, + "itemIds": [ + "fe3355f049164ef689f58d4eaaab1919" + ], + "itemQty": { + "fe3355f049164ef689f58d4eaaab1919": 1 + }, "tags": [ - "TailorVendor", - "RarityRare", - "InfamyLevel116" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-08T12:05:07.257Z", + "createdAt": "2024-08-16T13:07:22.722Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit 5: Variant 4", - "itemId": "0c0f8e17c64642c694e34afdda2ee5c3", + "title": "XBox DLC04 Tailor pack", + "itemId": "cf0797dff7fd42ed86e64a2c1b401f0a", "baseAppId": "", - "sku": "pd3_cosmetic_suit_suit5_variant4", + "sku": "pd3_xbox_dlc04_tailor_pack", "namespace": "pd3", - "name": "Suit 5: Variant 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/Suit", + "name": "XBox DLC04 Tailor pack", + "entitlementType": "DURABLE", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 500000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-05-29T09:06:33.902Z", - "discountPurchaseAt": "2023-05-29T09:06:33.902Z" + "purchaseAt": "2024-08-07T19:24:08.33Z", + "discountPurchaseAt": "2024-08-07T19:24:08.33Z" } ], - "itemQty": {}, + "itemIds": [ + "299e1136818348d8b1804981a77d0e18", + "fce96763d35840e6a61605102c417e40", + "2f0fd09f60fd42a1af00efb9b1667ceb", + "b9a06fce3ec1425e974f85543eadebc4", + "a0ae48651b3745da9189023ced51ee64", + "52317ec6b84547639010a2f134926a83", + "9beca44b763746d29f51494a8dfd1e93", + "025ae6142fae4485ad86d4547997124f", + "2db0a8c8c3f34026b1035e38927a0204", + "057e7112e4ca42bfaf3495bcac16d6c2", + "6dd0f971a218448e99bfe5ec693d8412", + "7f47189b58b5464d98c18af8f4703fab" + ], + "itemQty": { + "7f47189b58b5464d98c18af8f4703fab": 1, + "52317ec6b84547639010a2f134926a83": 1, + "2f0fd09f60fd42a1af00efb9b1667ceb": 1, + "6dd0f971a218448e99bfe5ec693d8412": 1, + "b9a06fce3ec1425e974f85543eadebc4": 1, + "fce96763d35840e6a61605102c417e40": 1, + "057e7112e4ca42bfaf3495bcac16d6c2": 1, + "025ae6142fae4485ad86d4547997124f": 1, + "299e1136818348d8b1804981a77d0e18": 1, + "9beca44b763746d29f51494a8dfd1e93": 1, + "2db0a8c8c3f34026b1035e38927a0204": 1, + "a0ae48651b3745da9189023ced51ee64": 1 + }, "tags": [ - "RarityEpic", - "TailorVendor", - "InfamyLevel144" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-05-29T09:06:33.845Z", + "createdAt": "2024-08-07T19:24:08.406Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot - Initial", - "itemId": "f80ba665b65748f4bdc74e2c5108cd3a", + "title": "XBox DLC04 Weapon pack", + "itemId": "f63276f952494e2cb512eccef21a2778", "baseAppId": "", - "sku": "pd3_slot_suit_initial", + "sku": "pd3_xbox_dlc04_weapon_pack", "namespace": "pd3", - "name": "Suit Inventory Slot", + "name": "XBox DLC04 Weapon pack", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/Bundle", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T12:12:01.019Z", + "discountPurchaseAt": "2024-07-25T12:12:01.019Z" } ], - "itemQty": {}, + "itemIds": [ + "fbf987bcb0c9455d86b7f2869dd1f0c0", + "591978731dc14e3b8fb7af9b27cd8a76", + "114143ccf88048d19c729563385d8a12", + "f9a13e6c2a0f4e6d9251347bc63634c7", + "84d0c77410184162a1b300dcca87c600", + "fb06749bd0f54d3babe4712c1f880596", + "d20579615484407486838a9abc9e02f4" + ], + "itemQty": { + "fbf987bcb0c9455d86b7f2869dd1f0c0": 1, + "f9a13e6c2a0f4e6d9251347bc63634c7": 1, + "114143ccf88048d19c729563385d8a12": 1, + "591978731dc14e3b8fb7af9b27cd8a76": 1, + "d20579615484407486838a9abc9e02f4": 1, + "fb06749bd0f54d3babe4712c1f880596": 1, + "84d0c77410184162a1b300dcca87c600": 2 + }, "tags": [ - "InitialItem" + "PlatformOnly", + "XBox" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-06T13:11:32.547Z", + "createdAt": "2024-07-25T12:11:26.852Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 0", - "itemId": "b172917295154eb687c9205a7d4a4966", + "title": "XBox MOD BarrelExt Coronet", + "itemId": "ca903d215ffb4420b351563704135b57", "baseAppId": "", - "sku": "pd3_slot_suit0", + "sku": "pd3_xbox_mod_barrelext_coronet", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 0", + "name": "XBox MOD BarrelExt Coronet", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:07:45.336Z" + "purchaseAt": "2024-07-25T14:18:02.071Z", + "discountPurchaseAt": "2024-07-25T14:18:02.071Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression0", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:07:45.284Z", + "createdAt": "2024-07-25T14:17:27.792Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 1", - "itemId": "88768e31ac3b4226925bd380ca94f534", + "title": "XBox MOD BarrelExt Crated", + "itemId": "d9daa4fb301c4330aea5b7239aacf2fa", "baseAppId": "", - "sku": "pd3_slot_suit1", + "sku": "pd3_xbox_mod_barrelext_crated", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 1", + "name": "XBox MOD BarrelExt Crated", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:10:11.477Z" + "purchaseAt": "2024-07-25T13:56:45.888Z", + "discountPurchaseAt": "2024-07-25T13:56:45.888Z" } ], "itemQty": {}, "tags": [ - "PriceProgression1", - "TailorVendor", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:10:11.411Z", + "createdAt": "2024-07-25T13:56:11.624Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 10", - "itemId": "b5179102795e4f4284ce792e3c475e7b", + "title": "XBox MOD BarrelExt IDM2", + "itemId": "bd2a6028aaac466babe556edb0408d35", "baseAppId": "", - "sku": "pd3_slot_suit10", + "sku": "pd3_xbox_mod_barrelext_idm2", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 10", + "name": "XBox MOD BarrelExt IDM2", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:31:12.970Z" + "purchaseAt": "2024-06-27T14:45:23.715Z", + "discountPurchaseAt": "2024-06-27T14:45:23.715Z" } ], "itemQty": {}, "tags": [ - "PriceProgression10", - "TailorVendor", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:31:12.897Z", + "createdAt": "2024-06-27T14:45:00.693Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 2", - "itemId": "e03b355078c74620b873ac1a51623df9", + "title": "XBox MOD BarrelExt Ridgecyl", + "itemId": "6c289d67d4ba4a849b89c7916d5f6912", "baseAppId": "", - "sku": "pd3_slot_suit2", + "sku": "pd3_xbox_mod_barrelext_ridgecyl", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 2", + "name": "XBox MOD BarrelExt Ridgecyl", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:11:36.061Z", - "discountPurchaseAt": "2022-11-14T12:11:36.061Z" + "purchaseAt": "2024-06-27T14:49:28.172Z", + "discountPurchaseAt": "2024-06-27T14:49:28.172Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression2", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:11:35.994Z", + "createdAt": "2024-06-27T14:49:05.137Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 3", - "itemId": "1172dfe6d1d5448e90074ea99d6bd0cb", + "title": "XBox MOD BarrelExt WhisperWrap ", + "itemId": "e668e0c442a74dcaaebe4747a89251ea", "baseAppId": "", - "sku": "pd3_slot_suit3", + "sku": "pd3_xbox_mod_barrelext_whisperwrap", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 3", + "name": "XBox MOD BarrelExt WhisperWrap ", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/BarrelExt", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -31757,33 +57793,31 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:13:53.828Z", - "discountPurchaseAt": "2022-11-14T12:13:53.828Z" + "purchaseAt": "2024-02-14T15:38:03.824Z", + "discountPurchaseAt": "2024-02-14T15:38:03.824Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression3", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:13:53.763Z", + "createdAt": "2024-02-14T15:38:04.884Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 4", - "itemId": "de5096ec32c1467496f6618faf3297b2", + "title": "XBox MOD Sight LightHolographic ", + "itemId": "117a8f34b32a4776b9ceef08f509f477", "baseAppId": "", - "sku": "pd3_slot_suit4", + "sku": "pd3_xbox_mod_sight_lightholographic", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 4", + "name": "XBox MOD Sight LightHolographic ", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -31797,32 +57831,31 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:16:53.954Z" + "purchaseAt": "2023-11-07T09:30:49.692Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression4", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:16:53.884Z", + "createdAt": "2023-11-07T09:30:50.38Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 5", - "itemId": "1b099ddd501c440cba88bc831803c662", + "title": "XBox MOD Sight Snapshot ", + "itemId": "f01b785a63874a8890d46f1e745167fe", "baseAppId": "", - "sku": "pd3_slot_suit5", + "sku": "pd3_xbox_mod_sight_snapshot", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 5", + "name": "XBox MOD Sight Snapshot ", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -31836,416 +57869,444 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:19:41.952Z" + "purchaseAt": "2024-02-14T15:35:53.527Z", + "discountPurchaseAt": "2024-02-14T15:35:53.527Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression5", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:19:41.884Z", + "createdAt": "2024-02-14T15:35:54.588Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 6", - "itemId": "7f7cb38ae810427ab70462ca6f6ec4a6", + "title": "XBox MOD Sight SquareClaim", + "itemId": "d55eaaba0ba14245a1f2da67efed33a9", "baseAppId": "", - "sku": "pd3_slot_suit6", + "sku": "pd3_xbox_mod_sight_squareclaim", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 6", + "name": "XBox MOD Sight SquareClaim", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:22:11.695Z" + "purchaseAt": "2024-06-27T14:53:23.944Z", + "discountPurchaseAt": "2024-06-27T14:53:23.944Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression6", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:22:11.625Z", + "createdAt": "2024-06-27T14:53:00.904Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 7", - "itemId": "4bbf711fcebc4052ae82b5452d279a4e", + "title": "XBox MOD Sight Voyeur", + "itemId": "05e874e41eac46b381234dda12be048d", "baseAppId": "", - "sku": "pd3_slot_suit7", + "sku": "pd3_xbox_mod_sight_voyeur", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 7", + "name": "XBox MOD Sight Voyeur", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/Sight", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:24:09.038Z" + "purchaseAt": "2024-07-25T13:36:08.69Z", + "discountPurchaseAt": "2024-07-25T13:36:08.69Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression7", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:24:08.965Z", + "createdAt": "2024-07-25T13:35:34.442Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 8", - "itemId": "a4597160e64849d38ff99f3a08a8060c", + "title": "XBox MOD Stock MinimizedHook ", + "itemId": "4a7142408644443c9404a80fde446ad9", "baseAppId": "", - "sku": "pd3_slot_suit8", + "sku": "pd3_xbox_mod_stock_minimizedhook", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 8", + "name": "XBox MOD Stock MinimizedHook ", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/Stock", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:25:46.613Z" + "purchaseAt": "2023-11-07T10:57:50.408Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression8", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:25:46.539Z", + "createdAt": "2023-11-07T10:57:51.213Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Inventory Slot: Price Progression 9", - "itemId": "5639b1e8c68e4e599a867c8e9d2e1757", + "title": "XBox MOD VerticalGrip FlatSideStab ", + "itemId": "ab06e1aad3884a9ca8158f9711b83534", "baseAppId": "", - "sku": "pd3_slot_suit9", + "sku": "pd3_xbox_mod_verticalgrip_flatsidestab", "namespace": "pd3", - "name": "Suit Inventory Slot: Price Progression 9", + "name": "XBox MOD VerticalGrip FlatSideStab ", "entitlementType": "DURABLE", - "categoryPath": "/Slots", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 250000, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 250000, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-14T12:27:12.780Z" + "purchaseAt": "2023-11-07T10:02:22.366Z" } ], "itemQty": {}, "tags": [ - "TailorVendor", - "PriceProgression9", - "InitialItem" + "WeaponPart" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, + "displayOrder": 1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-14T12:27:12.706Z", + "createdAt": "2023-11-07T10:02:23.087Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Suit Only", - "itemId": "9acb1b0b1ad1405785ee2684725e3d06", + "title": "XBox MOD VerticalGrip RiggerHandStop ", + "itemId": "2425029481b147f680734173e750f3e8", "baseAppId": "", - "sku": "pd3_armor_suitonly", + "sku": "pd3_xbox_mod_verticalgrip_riggerhandstop", "namespace": "pd3", - "name": "Suit Only", + "name": "XBox MOD VerticalGrip RiggerHandStop ", "entitlementType": "DURABLE", - "categoryPath": "/Armor", + "categoryPath": "/WeaponMod/VerticalGrip", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 100000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-02-14T15:26:20.384Z", + "discountPurchaseAt": "2024-02-14T15:26:20.384Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "WeaponPart" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-02T10:16:11.011Z", + "createdAt": "2024-02-14T15:26:21.437Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Teller Door Sharke Bank Preplanning Asset", - "itemId": "244a532a15a540b8a2bb08ba61ca2cbe", + "title": "XBox Marksman FIK22 ", + "itemId": "e984e044bb424d2383461e149a7443b9", "baseAppId": "", - "sku": "pd3_preplanning_sharkebank_1", + "sku": "pd3_xbox_wpn_marksman_fik22", "namespace": "pd3", - "name": "Teller Door Sharke Bank Preplanning Asset", + "name": "XBox Marksman FIK22 ", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-06T16:16:07.575Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "DLC1Category", + "XBox", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-09-21T13:27:02.526Z", + "createdAt": "2023-11-06T16:16:08.083Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Thermal Lance Sharke Bank Preplanning Asset", - "itemId": "df2e66d7a0e94ff28ba46337ceaf9555", + "title": "XBox Marksman FIK22 - Vendor Item ", + "itemId": "ce78e08b2d9b48d3ab98c6b500715202", "baseAppId": "", - "sku": "pd3_preplanning_sharkebank_3", + "sku": "pd3_xbox_wpn_marksman_fik22_vendor", "namespace": "pd3", - "name": "Thermal Lance Sharke Bank Preplanning Asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Marksman FIK22 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-09T14:35:36.529Z", + "discountPurchaseAt": "2023-11-09T14:35:36.529Z" } ], "itemQty": {}, + "boundItemIds": [ + "44d935b4c568443a8bf7783f15f38711", + "f31457f805b946e49c5ec6f87f688620", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "XBox" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-12T06:14:45.466Z", + "createdAt": "2023-11-09T14:35:37.095Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Thermite Drop Cargo Dock Preplanning asset", - "itemId": "ff2464ce14da473e97590ea2fb33b327", + "title": "XBox Pistol GV50", + "itemId": "a40856fa1c144f5fbf9f46c27ec3d19e", "baseAppId": "", - "sku": "pd3_preplanning_cargodock_4", + "sku": "pd3_xbox_wpn_pistol_gv50", "namespace": "pd3", - "name": "Thermite Drop Cargo Dock Preplanning asset", + "name": "XBox Pistol GV50", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T11:36:49.601Z", + "discountPurchaseAt": "2024-07-25T11:36:49.601Z" } ], "itemQty": {}, "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "DLC4Category", + "XBox", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:28:25.142Z", + "createdAt": "2024-07-25T11:36:15.479Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Thermite Penthouse Preplanning asset", - "itemId": "87d91fc1cc5f4e8fa3c4e9e2bd303376", + "title": "XBox Pistol GV50 - Vendor Item", + "itemId": "fbf987bcb0c9455d86b7f2869dd1f0c0", "baseAppId": "", - "sku": "pd3_preplanning_penthouse_2", + "sku": "pd3_xbox_wpn_pistol_gv50_vendor", "namespace": "pd3", - "name": "Thermite Penthouse Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Pistol GV50 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-07-25T11:41:24.878Z", + "discountPurchaseAt": "2024-07-25T11:41:24.878Z" } ], "itemQty": {}, + "boundItemIds": [ + "f63276f952494e2cb512eccef21a2778", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "XBox" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:24:00.291Z", + "createdAt": "2024-07-25T11:40:50.745Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "ThrowingKnife", - "itemId": "778b204d45a64ce68ec9720c220350be", + "title": "XBox Pistol PD5", + "itemId": "59968cf11790488aa95d184031e30fab", "baseAppId": "", - "sku": "pd3_throwable_knife", + "sku": "pd3_xbox_wpn_pistol_pd5", "namespace": "pd3", - "name": "ThrowingKnife", + "name": "XBox Pistol PD5", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/Throwables", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 500, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 500, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-27T11:07:00.57Z", + "discountPurchaseAt": "2024-06-27T11:07:00.57Z" } ], "itemQty": {}, "tags": [ - "InitialItem" + "PlatformOnly", + "CombatEquipmentVendor", + "DLC3Category", + "XBox", + "VendorEntitlementRequired" ], + "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-05-31T14:19:59.810Z", + "createdAt": "2024-06-27T11:06:37.752Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Trifecta Lootbag Bundle Epic", - "itemId": "6cce475cf54b4d0090df7e6df40170aa", + "title": "XBox Pistol PD5 - Vendor Item", + "itemId": "e3f7953a9ab64f1e871cf198157a274a", "baseAppId": "", - "sku": "PD3_epic_trifecta_lootbag", + "sku": "pd3_xbox_wpn_pistol_pd5_vendor", "namespace": "pd3", - "name": "Trifecta Lootbag Bundle Epic", + "name": "XBox Pistol PD5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -32255,87 +58316,85 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:31:43.495Z", - "discountPurchaseAt": "2023-09-19T12:31:43.495Z" + "purchaseAt": "2024-06-27T11:14:57.893Z", + "discountPurchaseAt": "2024-06-27T11:14:57.893Z" } ], - "itemIds": [ - "9e909ec0959d46d4b38d4a16f1114cb3", - "317e6b8ca180445bab3b6e95e81f75c6", - "e13829fbefee483593cae042dd9dc456" + "itemQty": {}, + "boundItemIds": [ + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox" ], - "itemQty": { - "317e6b8ca180445bab3b6e95e81f75c6": 1, - "9e909ec0959d46d4b38d4a16f1114cb3": 1, - "e13829fbefee483593cae042dd9dc456": 1 - }, - "tags": [], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T16:03:37.937Z", + "createdAt": "2024-06-27T11:14:35.287Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Trifecta Lootbag Bundle PlayStation", - "itemId": "ec4e47fbeb9243a0b965f447ec6e10d5", + "title": "XBox Pistol SE5", + "itemId": "784fb842c78b4f9fb1ae1d3579687833", "baseAppId": "", - "sku": "PD3_playstation_trifecta_lootbag", + "sku": "pd3_xbox_wpn_pistol_se5", "namespace": "pd3", - "name": "Trifecta Lootbag Bundle PlayStation", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "XBox Pistol SE5", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:30:00.935Z", - "discountPurchaseAt": "2023-09-19T12:30:00.935Z" + "purchaseAt": "2024-07-25T11:48:43.496Z", + "discountPurchaseAt": "2024-07-25T11:48:43.496Z" } ], - "itemIds": [ - "5708e1c1c12a4b0b8331dbc390bfa4e7", - "66714e9cf5bc4130bd1e23a4b012073d", - "8816cc16a74740f3aff7819ee37e1751" + "itemQty": {}, + "tags": [ + "PlatformOnly", + "CombatEquipmentVendor", + "DLC4Category", + "XBox", + "VendorEntitlementRequired" ], - "itemQty": { - "5708e1c1c12a4b0b8331dbc390bfa4e7": 1, - "8816cc16a74740f3aff7819ee37e1751": 1, - "66714e9cf5bc4130bd1e23a4b012073d": 1 - }, - "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T05:54:03.548Z", + "createdAt": "2024-07-25T11:48:09.351Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Trifecta Lootbag Bundle Steam", - "itemId": "e29db70296e14583a91a9126d363d780", + "title": "XBox Pistol SE5 - Vendor Item", + "itemId": "591978731dc14e3b8fb7af9b27cd8a76", "baseAppId": "", - "sku": "PD3_steam_trifecta_lootbag", + "sku": "pd3_xbox_wpn_pistol_se5_vendor", "namespace": "pd3", - "name": "Trifecta Lootbag Bundle Steam", + "name": "XBox Pistol SE5 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -32345,199 +58404,213 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:28:15.387Z", - "discountPurchaseAt": "2023-09-19T12:28:15.387Z" + "purchaseAt": "2024-07-25T11:52:57.279Z", + "discountPurchaseAt": "2024-07-25T11:52:57.279Z" } ], - "itemIds": [ - "db78293dfc5046d9a6426da3afaee65d", - "075eebd2242b4684b447cf3678a914a9", - "dea43e9c1ef842c781cce84de3792004" + "itemQty": {}, + "boundItemIds": [ + "f63276f952494e2cb512eccef21a2778", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox" ], - "itemQty": { - "075eebd2242b4684b447cf3678a914a9": 1, - "dea43e9c1ef842c781cce84de3792004": 1, - "db78293dfc5046d9a6426da3afaee65d": 1 - }, - "tags": [], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-07T06:51:49.947Z", + "createdAt": "2024-07-25T11:52:23.134Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Trifecta Lootbag Bundle XBox", - "itemId": "6f46ee17db244f36bc6cc977609d8274", + "title": "XBox Player Pack 03 Weapon Charm 01", + "itemId": "c442d54c863849fabf578098d75acc12", "baseAppId": "", - "sku": "PD3_xbox_trifecta_lootbag", + "sku": "pd3_xbox_cosmetics_charm_pp03_01", "namespace": "pd3", - "name": "Trifecta Lootbag Bundle XBox", - "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "name": "XBox Player Pack 03 Weapon Charm 01", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, - "purchasable": false, - "itemType": "BUNDLE", + "purchasable": true, + "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 10, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 10, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-09-19T12:26:29.502Z", - "discountPurchaseAt": "2023-09-19T12:26:29.502Z" + "purchaseAt": "2024-08-28T09:17:43.024Z" } ], - "itemIds": [ - "6ba35287ddf8432793570bc35af13323", - "b968640f272e4858aac2a2363445fa94", - "c8cb556b24834c7da9dd6247aa43fecb" + "itemQty": {}, + "boundItemIds": [ + "68073a99fd314557bec1a91e31ca006e" + ], + "tags": [ + "PlatformOnly", + "inexhaustible", + "XBox" ], - "itemQty": { - "b968640f272e4858aac2a2363445fa94": 1, - "6ba35287ddf8432793570bc35af13323": 1, - "c8cb556b24834c7da9dd6247aa43fecb": 1 - }, - "tags": [], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-09-06T12:51:32.548Z", + "createdAt": "2024-08-28T09:17:42.369Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Van Escape Branch Bank Preplanning asset", - "itemId": "7ef67d46c6224310b813afcc5f53ae62", + "title": "XBox Premium Preset 11", + "itemId": "a932099785b343b09e63958d11e81a92", "baseAppId": "", - "sku": "pd3_preplanning_branchbank_1", + "sku": "pd3_xbox_wpn_preset_p11", "namespace": "pd3", - "name": "Van Escape Branch Bank Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Premium Preset 11", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-04T15:53:08.699Z", + "discountPurchaseAt": "2024-06-04T15:53:08.699Z" } ], "itemQty": {}, + "boundItemIds": [ + "c23c46f2de894c458dd2f25dd82f75b9" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "Premium", + "XBox", + "ReportsTelemetry" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:15:46.328Z", + "createdAt": "2024-06-04T15:52:32.92Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Vault Code Night Club Preplanning asset", - "itemId": "65a355215bb8473bbf9d3f2661211899", + "title": "XBox Premium Preset 2", + "itemId": "40ccdad3ced74ee99a3acd8795c1ae5c", "baseAppId": "", - "sku": "pd3_preplanning_nightclub_2", + "sku": "pd3_xbox_wpn_preset_p2", "namespace": "pd3", - "name": "Vault Code Night Club Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Premium Preset 2", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-04T15:45:20.061Z", + "discountPurchaseAt": "2024-06-04T15:45:20.061Z" } ], "itemQty": {}, + "boundItemIds": [ + "74f3d0d0708344e199217cdf53fdc5ec" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "Premium", + "XBox", + "ReportsTelemetry" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-08-31T14:16:20.704Z", + "createdAt": "2024-06-04T15:44:44.293Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Vent Secure Point Penthouse Preplanning asset", - "itemId": "86b9d2fede264495a71aac9786b20a45", + "title": "XBox Premium Preset 4", + "itemId": "4b903a585a384f4aa9a8b19b76972fdc", "baseAppId": "", - "sku": "pd3_preplanning_penthouse_4", + "sku": "pd3_xbox_wpn_preset_p4", "namespace": "pd3", - "name": "Vent Secure Point Penthouse Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Premium Preset 4", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2024-06-04T15:50:28.792Z", + "discountPurchaseAt": "2024-06-04T15:50:28.792Z" } ], "itemQty": {}, + "boundItemIds": [ + "74f3d0d0708344e199217cdf53fdc5ec" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium", + "ReportsTelemetry" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:25:18.714Z", + "createdAt": "2024-06-04T15:49:53.02Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm - Nebula Signup", - "itemId": "1330ed7bb5d2480284fc23c0728823dc", + "title": "XBox Premium Preset 6 ", + "itemId": "d8d8793520bb4b96b9b17095c4ad172f", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_nebula", + "sku": "pd3_xbox_wpn_preset_p6", "namespace": "pd3", - "name": "Weapon Charm - Nebula Signup", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/WeaponCharm", + "name": "XBox Premium Preset 6 ", + "entitlementType": "DURABLE", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -32551,1800 +58624,2007 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:08:06.046Z", - "discountPurchaseAt": "2023-03-17T15:08:06.046Z" + "purchaseAt": "2024-06-04T15:43:33.004Z", + "discountPurchaseAt": "2024-06-04T15:43:33.004Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "32a04d6b2fa247b5b15e36bc6a44c919" + ], + "tags": [ + "PlatformOnly", + "Premium", + "XBox", + "ReportsTelemetry" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:08:05.905Z", + "createdAt": "2024-06-04T15:42:57.235Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 1", - "itemId": "3c6da5164d304fdeb2a91c2d43ed1171", + "title": "XBox Revolver Bullkick500", + "itemId": "8cce3615ed2e4dd09769816e95eb3bcf", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm1", + "sku": "pd3_xbox_wpn_revolver_bullkick500", "namespace": "pd3", - "name": "Weapon Charm 1", + "name": "XBox Revolver Bullkick500", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 20, + "price": 100000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20, - "currencyCode": "GOLD", + "discountedPrice": 100000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:37:47.419Z" + "purchaseAt": "2024-02-14T12:20:57.285Z", + "discountPurchaseAt": "2024-02-14T12:20:57.285Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "XBox", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:37:46.769Z", + "createdAt": "2024-02-14T12:20:58.025Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 2", - "itemId": "18824b310a164b22afbb9946aba1c714", + "title": "XBox Revolver Bullkick500 - Vendor Item ", + "itemId": "5a092a60d47c4a80b76a8a294fc307b4", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm2", + "sku": "pd3_xbox_wpn_revolver_bullkick500_vendor", "namespace": "pd3", - "name": "Weapon Charm 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "XBox Revolver Bullkick500 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 30, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 30, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:38:23.475Z" + "purchaseAt": "2024-02-14T12:53:32.984Z", + "discountPurchaseAt": "2024-02-14T12:53:32.984Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel6" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:38:22.824Z", + "createdAt": "2024-02-14T12:53:33.781Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 3", - "itemId": "6d932e970c4e452fbae37ad717f71261", + "title": "XBox SMG ATK7", + "itemId": "f55843504e614ccb8cfbb6987811d03f", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm3", + "sku": "pd3_xbox_wpn_smg_atk7", "namespace": "pd3", - "name": "Weapon Charm 3", + "name": "XBox SMG ATK7", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 30, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 30, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:38:57.319Z" + "purchaseAt": "2024-02-14T11:57:16.052Z", + "discountPurchaseAt": "2024-02-14T11:57:16.052Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel20", + "PlatformOnly", "CombatEquipmentVendor", - "RarityUncommon" + "XBox", + "DLC2Category", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:38:56.665Z", + "createdAt": "2024-02-14T11:57:16.76Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 4", - "itemId": "fe6466068e734fbda997275eeae937b0", + "title": "XBox SMG ATK7 - Vendor Item ", + "itemId": "33a79d2c8ba749db8d2df7fabe7ae820", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm4", + "sku": "pd3_xbox_wpn_smg_atk7_vendor", "namespace": "pd3", - "name": "Weapon Charm 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "XBox SMG ATK7 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:39:36.586Z" + "purchaseAt": "2024-02-14T12:05:48.054Z", + "discountPurchaseAt": "2024-02-14T12:05:48.054Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" + ], "tags": [ - "CombatEquipmentVendor", - "RarityRare", - "InfamyLevel36" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:39:35.937Z", + "createdAt": "2024-02-14T12:05:48.78Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 5", - "itemId": "4ffb858730b5479884e463243ce15b08", + "title": "XBox SMG WAR45 ", + "itemId": "3a473011c14a4727bb7fa960a487eb71", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm5", + "sku": "pd3_xbox_wpn_smg_war45", "namespace": "pd3", - "name": "Weapon Charm 5", + "name": "XBox SMG WAR45 ", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:40:07.282Z" + "purchaseAt": "2023-11-06T16:37:56.761Z" } ], "itemQty": {}, "tags": [ - "InfamyLevel54", + "PlatformOnly", "CombatEquipmentVendor", - "RarityEpic" + "DLC1Category", + "XBox", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:40:06.633Z", + "createdAt": "2023-11-06T16:37:57.288Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm 6", - "itemId": "2c28f77ebd1d434b917e922d135a0015", + "title": "XBox SMG WAR45 - Vendor Item ", + "itemId": "20a03764eebe48e685a8c018945c1b93", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm6", + "sku": "pd3_xbox_wpn_smg_war45_vendor", "namespace": "pd3", - "name": "Weapon Charm 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "name": "XBox SMG WAR45 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 300, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 300, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:40:41.258Z" + "purchaseAt": "2023-11-09T14:27:05.421Z", + "discountPurchaseAt": "2023-11-09T14:27:05.421Z" } ], "itemQty": {}, + "boundItemIds": [ + "44d935b4c568443a8bf7783f15f38711", + "f31457f805b946e49c5ec6f87f688620", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityEpic", - "InfamyLevel78" + "PlatformOnly", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:40:40.607Z", + "createdAt": "2023-11-09T14:27:06.013Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Charm Villa 1", - "itemId": "667246b3d92345e591c906be9c593c8a", + "title": "XBox Shotgun FSA12 ", + "itemId": "e6a921bbbf0d4897bd4680fd6c46d1d6", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_charm_villa1", + "sku": "pd3_xbox_wpn_shotgun_fsa12", "namespace": "pd3", - "name": "Weapon Charm Villa 1", + "name": "XBox Shotgun FSA12 ", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponCharm", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-30T15:19:53.565Z", - "discountPurchaseAt": "2023-10-30T15:19:53.565Z" + "purchaseAt": "2023-11-06T16:48:37.399Z" } ], "itemQty": {}, + "tags": [ + "PlatformOnly", + "CombatEquipmentVendor", + "DLC1Category", + "XBox", + "VendorEntitlementRequired" + ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-30T15:19:53.667Z", + "createdAt": "2023-11-06T16:48:37.945Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 1", - "itemId": "74957f8153db45d6bc7e2f859a8b3f79", + "title": "XBox Shotgun FSA12 - Vendor Item ", + "itemId": "a53796659964479aaac94454ec3f73ef", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern1", + "sku": "pd3_xbox_wpn_shotgun_fsa12_vendor", "namespace": "pd3", - "name": "Weapon Pattern 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Shotgun FSA12 - Vendor Item ", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:05:07.720Z" + "purchaseAt": "2023-11-09T13:24:52.885Z", + "discountPurchaseAt": "2023-11-09T13:24:52.885Z" } ], "itemQty": {}, + "boundItemIds": [ + "44d935b4c568443a8bf7783f15f38711", + "f31457f805b946e49c5ec6f87f688620", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:05:07.083Z", + "createdAt": "2023-11-09T13:24:53.364Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 10", - "itemId": "30cadbc492fa452a93a9e95756b255b1", + "title": "XBox Shotgun M7P", + "itemId": "684964d6ceb6462cb14400c007446b4f", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern10", + "sku": "pd3_xbox_wpn_shotgun_m7p", "namespace": "pd3", - "name": "Weapon Pattern 10", + "name": "XBox Shotgun M7P", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 200000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:10:57.742Z" + "purchaseAt": "2024-06-25T14:57:40.814Z", + "discountPurchaseAt": "2024-06-25T14:57:40.814Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", "CombatEquipmentVendor", - "InfamyLevel94", - "RarityRare" + "DLC3Category", + "XBox", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:10:57.092Z", + "createdAt": "2024-06-25T14:57:20.711Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 11", - "itemId": "3b58e823c5044854bc23b8663e187afc", + "title": "XBox Shotgun M7P - Vendor Item", + "itemId": "cfe133f64eae413dbef6217300628dc1", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern11", + "sku": "pd3_xbox_wpn_shotgun_m7p_vendor", "namespace": "pd3", - "name": "Weapon Pattern 11", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Shotgun M7P - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 20, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:11:34.989Z" + "purchaseAt": "2024-06-25T15:01:54.899Z", + "discountPurchaseAt": "2024-06-25T15:01:54.899Z" } ], "itemQty": {}, + "boundItemIds": [ + "b2c3bbf0dd79408ebaec35eb7e2dc218", + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityEpic", - "InfamyLevel102" + "PlatformOnly", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:11:34.336Z", + "createdAt": "2024-06-25T15:01:34.821Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 12", - "itemId": "a123a93a8500409f9a7d5851aea0d796", + "title": "XBox Shotgun TAS12", + "itemId": "e8c791202c8a4c06993f7bfff1e8fd85", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern12", + "sku": "pd3_xbox_wpn_shotgun_tas12", "namespace": "pd3", - "name": "Weapon Pattern 12", + "name": "XBox Shotgun TAS12", "entitlementType": "CONSUMABLE", "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "stackable": false, + "categoryPath": "/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 20, + "price": 200000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20, - "currencyCode": "GOLD", + "discountedPrice": 200000, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:12:22.069Z" + "purchaseAt": "2024-07-25T11:57:53.49Z", + "discountPurchaseAt": "2024-07-25T11:57:53.49Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", "CombatEquipmentVendor", - "RarityEpic", - "InfamyLevel119" + "DLC4Category", + "XBox", + "VendorEntitlementRequired" ], "features": [], "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:12:21.417Z", + "createdAt": "2024-07-25T11:57:19.34Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 13", - "itemId": "6844ac5f2afb4ae3bd2b7ab587872668", + "title": "XBox Shotgun TAS12 - Vendor Item", + "itemId": "114143ccf88048d19c729563385d8a12", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern13", + "sku": "pd3_xbox_wpn_shotgun_tas12_vendor", "namespace": "pd3", - "name": "Weapon Pattern 13", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Shotgun TAS12 - Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 20, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 20, - "currencyCode": "GOLD", + "discountedPrice": 0, + "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:12:58.356Z" + "purchaseAt": "2024-07-25T12:03:57.909Z", + "discountPurchaseAt": "2024-07-25T12:03:57.909Z" } ], "itemQty": {}, + "boundItemIds": [ + "f63276f952494e2cb512eccef21a2778", + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityEpic", - "InfamyLevel132" + "PlatformOnly", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:12:57.706Z", + "createdAt": "2024-07-25T12:03:23.755Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 2", - "itemId": "29859d7ab1eb4842be1e7819e9f07090", + "title": "XBox Star Weapon Preset", + "itemId": "663f655730554755972f203b27447031", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern2", + "sku": "pd3_xbox_wpn_preset_star", "namespace": "pd3", - "name": "Weapon Pattern 2", + "name": "XBox Star Weapon Preset", "entitlementType": "CONSUMABLE", "useCount": 1, "stackable": true, - "categoryPath": "/WeaponPattern", + "categoryPath": "/WeaponPreset", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15000, + "price": 50, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15000, - "currencyCode": "CASH", + "discountedPrice": 50, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:05:42.747Z" + "purchaseAt": "2024-08-28T09:30:36.001Z", + "discountPurchaseAt": "2024-08-28T09:30:36.001Z" } ], "itemQty": {}, "tags": [ + "PlatformOnly", + "STARCategory", "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "XBox", + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:05:42.103Z", + "createdAt": "2024-08-28T09:30:35.312Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 3", - "itemId": "991a8ccfd75a4934a8b1ccea7fa8f003", + "title": "XBox Tailor Pack 03 Gloves 01", + "itemId": "9338dd9ec7744e4aa1567cd4c8de3b4c", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern3", + "sku": "pd3_xbox_cosmetics_gloves_dlc03_01", "namespace": "pd3", - "name": "Weapon Pattern 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:06:14.416Z" + "purchaseAt": "2024-07-09T07:32:44.759Z", + "discountPurchaseAt": "2024-07-09T07:32:44.759Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:06:13.770Z", + "createdAt": "2024-07-09T07:32:44.273Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 4", - "itemId": "59422b513bee4e5abcb6da0e5df25862", + "title": "XBox Tailor Pack 03 Gloves 02", + "itemId": "b03ef35f557b411b898a27851ca00654", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern4", + "sku": "pd3_xbox_cosmetics_gloves_dlc03_02", "namespace": "pd3", - "name": "Weapon Pattern 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:07:04.703Z" + "purchaseAt": "2024-07-09T07:33:11.62Z", + "discountPurchaseAt": "2024-07-09T07:33:11.62Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:07:04.056Z", + "createdAt": "2024-07-09T07:33:11.092Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 5", - "itemId": "2c20f28b871a45d0a54c2f01dd64896e", + "title": "XBox Tailor Pack 03 Gloves 03", + "itemId": "79ad27f6adb44ec8ba7bd4255b1b87ba", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern5", + "sku": "pd3_xbox_cosmetics_gloves_dlc03_03", "namespace": "pd3", - "name": "Weapon Pattern 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 15000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 15000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:07:43.543Z" + "purchaseAt": "2024-07-09T07:33:41.671Z", + "discountPurchaseAt": "2024-07-09T07:33:41.671Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:07:42.895Z", + "createdAt": "2024-07-09T07:33:41.144Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 6", - "itemId": "3aa895841c444cb3a9d95fd051fc17f3", + "title": "XBox Tailor Pack 03 Gloves 04", + "itemId": "b613af00c59d4e7d932df8dc3f6eaa34", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern6", + "sku": "pd3_xbox_cosmetics_gloves_dlc03_04", "namespace": "pd3", - "name": "Weapon Pattern 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 30000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 30000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:08:22.199Z" + "purchaseAt": "2024-07-09T07:34:06.782Z", + "discountPurchaseAt": "2024-07-09T07:34:06.782Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel14" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:08:21.556Z", + "createdAt": "2024-07-09T07:34:06.249Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 7", - "itemId": "305af2df0a664ee5abfcbfdbb1bfc145", + "title": "XBox Tailor Pack 03 Mask 01", + "itemId": "c17a3919e3154c029b652fad84bca73d", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern7", + "sku": "pd3_xbox_cosmetics_mask_dlc03_01", "namespace": "pd3", - "name": "Weapon Pattern 7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 30000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 30000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:08:57.526Z" + "purchaseAt": "2024-07-05T12:42:52.439Z", + "discountPurchaseAt": "2024-07-05T12:42:52.439Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel27" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:08:56.880Z", + "createdAt": "2024-07-05T12:42:51.912Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 8", - "itemId": "8cf3f2fbffdb4ab4b0889dc346c43840", + "title": "XBox Tailor Pack 03 Mask 02", + "itemId": "0092c6ba19c14fac87d16a5c14141ac0", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern8", + "sku": "pd3_xbox_cosmetics_mask_dlc03_02", "namespace": "pd3", - "name": "Weapon Pattern 8", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 30000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 30000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:09:32.326Z" + "purchaseAt": "2024-07-05T12:43:41.763Z", + "discountPurchaseAt": "2024-07-05T12:43:41.763Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel48" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:09:31.675Z", + "createdAt": "2024-07-05T12:43:41.195Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Pattern 9", - "itemId": "d992b2e53829420bae58a0fb72101fd2", + "title": "XBox Tailor Pack 03 Mask 03", + "itemId": "d39c76d68eb4467bb899b93beae1c4a4", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_pattern9", + "sku": "pd3_xbox_cosmetics_mask_dlc03_03", "namespace": "pd3", - "name": "Weapon Pattern 9", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponPattern", + "name": "XBox Tailor Pack 03 Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 50000, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 50000, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-24T19:10:18.902Z" + "purchaseAt": "2024-07-05T12:44:31.466Z", + "discountPurchaseAt": "2024-07-05T12:44:31.466Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel76", - "CombatEquipmentVendor", - "RarityRare" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-24T19:10:18.252Z", + "createdAt": "2024-07-05T12:44:30.906Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker - Nebula 1", - "itemId": "101d51146a464ea3b244b90658adb5ee", + "title": "XBox Tailor Pack 03 Mask 04", + "itemId": "0c7b6796923a4c77aea54d322b32077f", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker_nebula1", + "sku": "pd3_xbox_cosmetics_mask_dlc03_04", "namespace": "pd3", - "name": "Weapon Sticker - Nebula 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 03 Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 222, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 222, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:17:51.443Z", - "discountPurchaseAt": "2023-03-17T15:17:51.443Z" + "purchaseAt": "2024-07-05T12:45:05.29Z", + "discountPurchaseAt": "2024-07-05T12:45:05.29Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "Premium", + "XBox" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:17:51.325Z", + "createdAt": "2024-07-05T12:45:04.726Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker - Nebula 2", - "itemId": "8460ae65531f49408017d6f2c317af70", + "title": "XBox Tailor Pack 03 Suit 01", + "itemId": "35ff3e808e524055ac78b25acb504b4c", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker_nebula2", + "sku": "pd3_xbox_cosmetics_suit_dlc03_01", "namespace": "pd3", - "name": "Weapon Sticker - Nebula 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 03 Suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-03-17T15:18:32.429Z", - "discountPurchaseAt": "2023-03-17T15:18:32.429Z" + "purchaseAt": "2024-07-09T07:54:26.4Z", + "discountPurchaseAt": "2024-07-09T07:54:26.4Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-03-17T15:18:32.305Z", + "createdAt": "2024-07-09T07:54:25.824Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 1", - "itemId": "1c74036cdac34851bb72b6bf964bda4f", + "title": "XBox Tailor Pack 03 Suit 02", + "itemId": "d3094b084da34611907a6499137f0b64", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker1", + "sku": "pd3_xbox_cosmetics_suit_dlc03_02", "namespace": "pd3", - "name": "Weapon Sticker 1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 03 Suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:08:29.857Z" + "purchaseAt": "2024-07-09T07:55:46.036Z", + "discountPurchaseAt": "2024-07-09T07:55:46.036Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:08:29.470Z", + "createdAt": "2024-07-09T07:55:45.477Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 10", - "itemId": "ee20153594f146e2974d95bf8f67f2d2", + "title": "XBox Tailor Pack 03 Suit 03", + "itemId": "a0468f42095d40cab6cb816de1a67e05", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker10", + "sku": "pd3_xbox_cosmetics_suit_dlc03_03", "namespace": "pd3", - "name": "Weapon Sticker 10", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 03 Suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:14:25.352Z" + "purchaseAt": "2024-07-09T07:56:17.133Z", + "discountPurchaseAt": "2024-07-09T07:56:17.133Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityRare", - "InfamyLevel69" + "PlatformOnly", + "Premium", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:14:24.950Z", + "createdAt": "2024-07-09T07:56:16.555Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 11", - "itemId": "1c8e5e25ef234142ad9fec963fc272e1", - "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker11", - "namespace": "pd3", - "name": "Weapon Sticker 11", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "title": "XBox Tailor Pack 03 Suit 04", + "itemId": "47fbb3e7ecba46b4b7679de3d580d056", + "baseAppId": "", + "sku": "pd3_xbox_cosmetics_suit_dlc03_04", + "namespace": "pd3", + "name": "XBox Tailor Pack 03 Suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 999, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:15:03.505Z" + "purchaseAt": "2024-07-09T07:56:41.509Z", + "discountPurchaseAt": "2024-07-09T07:56:41.509Z" } ], "itemQty": {}, + "boundItemIds": [ + "0f1b52554d8045fcb858d6e7c6b3cfc4", + "b6e32bd5a2684dd7afc141394ddb4bf2", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityRare", - "InfamyLevel79" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:15:03.099Z", + "createdAt": "2024-07-09T07:56:40.905Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 12", - "itemId": "f905566fcb4d4858ab9f9f9f839ec32d", + "title": "XBox Tailor Pack 04 Gloves 01", + "itemId": "2db0a8c8c3f34026b1035e38927a0204", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker12", + "sku": "pd3_xbox_cosmetics_gloves_dlc04_01", "namespace": "pd3", - "name": "Weapon Sticker 12", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:15:41.225Z" + "purchaseAt": "2024-07-25T15:45:28.28Z", + "discountPurchaseAt": "2024-07-25T15:45:28.28Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityRare", - "InfamyLevel88" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:15:40.820Z", + "createdAt": "2024-07-25T15:45:28.32Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 13", - "itemId": "e3b2334c750d4698b3b2a3959dacb3c3", + "title": "XBox Tailor Pack 04 Gloves 02", + "itemId": "057e7112e4ca42bfaf3495bcac16d6c2", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker13", + "sku": "pd3_xbox_cosmetics_gloves_dlc04_02", "namespace": "pd3", - "name": "Weapon Sticker 13", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:16:53.904Z" + "purchaseAt": "2024-07-25T15:50:32.509Z", + "discountPurchaseAt": "2024-07-25T15:50:32.509Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel97", - "CombatEquipmentVendor", - "RarityRare" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:16:53.500Z", + "createdAt": "2024-07-25T15:50:32.542Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 2", - "itemId": "f77b86afcfc146bfab59854048708a0f", + "title": "XBox Tailor Pack 04 Gloves 03", + "itemId": "6dd0f971a218448e99bfe5ec693d8412", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker2", + "sku": "pd3_xbox_cosmetics_gloves_dlc04_03", "namespace": "pd3", - "name": "Weapon Sticker 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:09:09.713Z" + "purchaseAt": "2024-07-25T15:55:23.569Z", + "discountPurchaseAt": "2024-07-25T15:55:23.569Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:09:09.311Z", + "createdAt": "2024-07-25T15:55:23.605Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 3", - "itemId": "d9d865f0c6bd4b4ca22908a9bbffc3de", + "title": "XBox Tailor Pack 04 Gloves 04", + "itemId": "7f47189b58b5464d98c18af8f4703fab", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker3", + "sku": "pd3_xbox_cosmetics_gloves_dlc04_04", "namespace": "pd3", - "name": "Weapon Sticker 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:09:45.273Z" + "purchaseAt": "2024-07-25T16:01:45.125Z", + "discountPurchaseAt": "2024-07-25T16:01:45.125Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityCommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:09:44.874Z", + "createdAt": "2024-07-25T16:01:45.194Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 4", - "itemId": "0d02fcac42344d979f954893267eb01a", + "title": "XBox Tailor Pack 04 Mask 01", + "itemId": "a0ae48651b3745da9189023ced51ee64", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker4", + "sku": "pd3_xbox_cosmetics_mask_dlc04_01", "namespace": "pd3", - "name": "Weapon Sticker 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:10:14.144Z" + "purchaseAt": "2024-07-25T13:55:13.355Z", + "discountPurchaseAt": "2024-07-25T13:55:13.355Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:10:13.744Z", + "createdAt": "2024-07-25T13:55:13.407Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 5", - "itemId": "0b171ed5d95140309c495c208f0e93e8", + "title": "XBox Tailor Pack 04 Mask 02", + "itemId": "52317ec6b84547639010a2f134926a83", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker5", + "sku": "pd3_xbox_cosmetics_mask_dlc04_02", "namespace": "pd3", - "name": "Weapon Sticker 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 3000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 3000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:11:16.449Z" + "purchaseAt": "2024-07-25T13:59:13.359Z", + "discountPurchaseAt": "2024-07-25T13:59:13.359Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:11:16.047Z", + "createdAt": "2024-07-25T13:59:13.42Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 6", - "itemId": "42e0692da47d41baacdf546029339e10", + "title": "XBox Tailor Pack 04 Mask 03", + "itemId": "9beca44b763746d29f51494a8dfd1e93", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker6", + "sku": "pd3_xbox_cosmetics_mask_dlc04_03", "namespace": "pd3", - "name": "Weapon Sticker 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:11:59.504Z" + "purchaseAt": "2024-07-25T14:04:09.795Z", + "discountPurchaseAt": "2024-07-25T14:04:09.795Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel4" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:11:59.104Z", + "createdAt": "2024-07-25T14:04:09.847Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 7", - "itemId": "7e3d27aba12f47e89b8aba3b964a35b5", + "title": "XBox Tailor Pack 04 Mask 04", + "itemId": "025ae6142fae4485ad86d4547997124f", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker7", + "sku": "pd3_xbox_cosmetics_mask_dlc04_04", "namespace": "pd3", - "name": "Weapon Sticker 7", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Mask 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:12:36.456Z" + "purchaseAt": "2024-07-25T15:38:27.691Z", + "discountPurchaseAt": "2024-07-25T15:38:27.691Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "CombatEquipmentVendor", - "RarityUncommon", - "InfamyLevel19" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:12:36.054Z", + "createdAt": "2024-07-25T15:38:27.759Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 8", - "itemId": "135233aff02c48a6b9dffc1668b9d074", + "title": "XBox Tailor Pack 04 Mask 01", + "itemId": "299e1136818348d8b1804981a77d0e18", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker8", + "sku": "pd3_xbox_cosmetics_suit_dlc04_01", "namespace": "pd3", - "name": "Weapon Sticker 8", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Suit 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 5000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 5000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:13:09.884Z" + "purchaseAt": "2024-07-25T12:56:37.027Z", + "discountPurchaseAt": "2024-07-25T12:56:37.027Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel41", - "CombatEquipmentVendor", - "RarityRare" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, + "displayOrder": 0, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:13:09.481Z", + "createdAt": "2024-07-25T12:56:37.093Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker 9", - "itemId": "8b9025e655094f449f3a83f46353220c", + "title": "XBox Tailor Pack 04 Suit 02", + "itemId": "fce96763d35840e6a61605102c417e40", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker9", + "sku": "pd3_xbox_cosmetics_suit_dlc04_02", "namespace": "pd3", - "name": "Weapon Sticker 9", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Suit 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 10000, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 10000, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-25T10:13:47.857Z" + "purchaseAt": "2024-07-25T13:30:58.572Z", + "discountPurchaseAt": "2024-07-25T13:30:58.572Z" } ], "itemQty": {}, + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "InfamyLevel10", - "CombatEquipmentVendor", - "RarityRare" + "PlatformOnly", + "Premium", + "XBox" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-25T10:13:47.455Z", + "createdAt": "2024-07-25T13:30:58.638Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 1 ", - "itemId": "08817173f5794f698ac43aa2e4d19e03", + "title": "XBox Tailor Pack 04 Suit 03", + "itemId": "2f0fd09f60fd42a1af00efb9b1667ceb", "baseAppId": "", - "sku": "pd3_cosmetic_weapon_sticker_remake_1", + "sku": "pd3_xbox_cosmetics_suit_dlc04_03", "namespace": "pd3", - "name": "Weapon Sticker Remake 1 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Suit 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:20:17.573Z", - "discountPurchaseAt": "2023-10-31T15:20:17.573Z" + "purchaseAt": "2024-07-25T13:35:43.83Z", + "discountPurchaseAt": "2024-07-25T13:35:43.83Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-10-31T15:20:15.062Z", + "createdAt": "2024-07-25T13:35:43.889Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 2", - "itemId": "7ef052489333478d8669645c5b1944c9", - "sku": "pd3_cosmetic_weapon_sticker_remake_2", + "title": "XBox Tailor Pack 04 Suit 04", + "itemId": "b9a06fce3ec1425e974f85543eadebc4", + "baseAppId": "", + "sku": "pd3_xbox_cosmetics_suit_dlc04_04", "namespace": "pd3", - "name": "Weapon Sticker Remake 2", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor Pack 04 Suit 04", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 123, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 123, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:23:17.703Z", - "discountPurchaseAt": "2023-10-31T15:23:17.703Z" + "purchaseAt": "2024-07-25T13:42:06.239Z", + "discountPurchaseAt": "2024-07-25T13:42:06.239Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "11f9d8fe7b1e435d8d2ae1bbfb38a4f0", + "cf0797dff7fd42ed86e64a2c1b401f0a", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:55.090Z", + "createdAt": "2024-07-25T13:42:06.29Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 3", - "itemId": "c517e034613b4991914c2af0758ec906", - "sku": "pd3_cosmetic_weapon_sticker_remake_3", + "title": "XBox Tailor pack 01 gloves 01", + "itemId": "ea6694a1157644049052c435ed403ca0", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_01", "namespace": "pd3", - "name": "Weapon Sticker Remake 3", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor pack 01 gloves 01", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:23:58.667Z", - "discountPurchaseAt": "2023-10-31T15:23:58.667Z" + "purchaseAt": "2023-11-15T13:19:07.107Z", + "discountPurchaseAt": "2023-11-15T13:19:07.107Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:55.134Z", + "createdAt": "2023-11-15T13:18:52.872Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 4", - "itemId": "5bb039e640634377b92e985beadefd7e", - "sku": "pd3_cosmetic_weapon_sticker_remake_4", + "title": "XBox Tailor pack 01 gloves 02", + "itemId": "afb59e9b79e94b61b6af5e444b6a9321", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_02", "namespace": "pd3", - "name": "Weapon Sticker Remake 4", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor pack 01 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:24:36.229Z", - "discountPurchaseAt": "2023-10-31T15:24:36.229Z" + "purchaseAt": "2023-11-15T13:13:43.583Z", + "discountPurchaseAt": "2023-11-15T13:13:43.583Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:55.275Z", + "createdAt": "2023-11-15T13:13:29.384Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 5", - "itemId": "f9fd5052483c4218a7b037db7e4836c4", - "sku": "pd3_cosmetic_weapon_sticker_remake_5", + "title": "XBox Tailor pack 01 gloves 03", + "itemId": "180c23749e884bb7838e55d4c7a81eda", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_03", "namespace": "pd3", - "name": "Weapon Sticker Remake 5", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor pack 01 gloves 03", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:25:17.343Z", - "discountPurchaseAt": "2023-10-31T15:25:17.343Z" + "purchaseAt": "2023-11-15T13:07:57.105Z", + "discountPurchaseAt": "2023-11-15T13:07:57.105Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:55.280Z", + "createdAt": "2023-11-15T13:07:42.94Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Weapon Sticker Remake 6", - "itemId": "07483dabfcb74a9e8735fce080d104ae", - "sku": "pd3_cosmetic_weapon_sticker_remake_6", + "title": "XBox Tailor pack 01 gloves 04", + "itemId": "92b670d71861433b822677612f5ed7c1", + "baseAppId": "", + "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_04", "namespace": "pd3", - "name": "Weapon Sticker Remake 6", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "XBox Tailor pack 01 gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 999, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 999, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-10-31T15:26:06.294Z", - "discountPurchaseAt": "2023-10-31T15:26:06.294Z" + "purchaseAt": "2023-11-15T13:03:43.218Z", + "discountPurchaseAt": "2023-11-15T13:03:43.218Z" } ], "itemQty": {}, - "tags": [], + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], + "tags": [ + "PlatformOnly", + "XBox", + "Premium" + ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T05:51:55.356Z", + "createdAt": "2023-11-15T13:03:29.08Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Window Platform Penthouse Preplanning asset", - "itemId": "d953877d2f494605b89f40896fe85781", + "title": "XBox Tailor pack 01 mask 01", + "itemId": "1cc33cfcc89d4031a92f63e2391f8ceb", "baseAppId": "", - "sku": "pd3_preplanning_penthouse_1", + "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_01", "namespace": "pd3", - "name": "Window Platform Penthouse Preplanning asset", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/PreplanningAssets", + "name": "XBox Tailor pack 01 mask 01", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 1000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 1000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", - "currencyNamespace": "pd3" + "currencyNamespace": "pd3", + "purchaseAt": "2023-11-15T12:53:52.936Z", + "discountPurchaseAt": "2023-11-15T12:53:52.936Z" } ], "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "PreplanningAsset", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], - "maxCountPerUser": -1, + "features": [], + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-10-19T13:23:14.655Z", + "createdAt": "2023-11-15T12:53:38.815Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Wolf Mould", - "itemId": "62bc2b010790440fbdadabe3eefa0931", + "title": "XBox Tailor pack 01 mask 02", + "itemId": "68a57501549f4bdfa97df42ffe5d2abe", "baseAppId": "", - "sku": "pd3_cosmetic_mask_mould_wolf", + "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_02", "namespace": "pd3", - "name": "Wolf Mould", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/MaskMould", + "name": "XBox Tailor pack 01 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-02-10T14:59:11.297Z", - "discountPurchaseAt": "2023-02-10T14:59:11.297Z" + "purchaseAt": "2023-11-15T12:46:42.171Z", + "discountPurchaseAt": "2023-11-15T12:46:42.171Z" } ], "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "RarityUncommon", - "CharacterVendor", - "InitialItem" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-02-10T14:59:11.181Z", + "createdAt": "2023-11-15T12:46:28.067Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "Wolf Suit", - "itemId": "ff4d161498414ea2b2e2c79c82215821", + "title": "XBox Tailor pack 01 mask 03", + "itemId": "58a15faf5eea4740b4402ac029395cff", "baseAppId": "", - "sku": "pd3_suit_wolf", + "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_03", "namespace": "pd3", - "name": "Wolf Suit", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Suit", + "name": "XBox Tailor pack 01 mask 03", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2022-11-22T09:45:34.328Z" + "purchaseAt": "2023-11-15T12:42:35.564Z", + "discountPurchaseAt": "2023-11-15T12:42:35.564Z" } ], "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "RarityCommon" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2022-11-22T09:45:34.868Z", + "createdAt": "2023-11-15T12:42:21.454Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "pd3_xbox_dlc01_heist_pack", - "itemId": "dd0800a21b804c27b55ae954de880491", + "title": "XBox Tailor pack 01 mask 04", + "itemId": "aec3a4fb2a8541c5af0953b183953308", "baseAppId": "", - "sku": "pd3_xbox_dlc01_heist_pack", + "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_04", "namespace": "pd3", - "name": "XBox DLC01 Heist pack", + "name": "XBox Tailor pack 01 mask 04", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -34354,41 +60634,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:47:47.832Z", - "discountPurchaseAt": "2023-11-10T13:47:47.832Z" + "purchaseAt": "2023-11-15T12:36:27.944Z", + "discountPurchaseAt": "2023-11-15T12:36:27.944Z" } ], - "itemIds": [ - "31a224936c0846799ce55efaa3245d9d" + "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" ], - "itemQty": { - "31a224936c0846799ce55efaa3245d9d": 1 - }, "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:47:42.965Z", + "createdAt": "2023-11-15T12:36:13.894Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox DLC01 Tailor pack", - "itemId": "4660ba68e21143d79b591c0fefe1923b", + "title": "XBox Tailor pack 01 suit 01", + "itemId": "7cb2d6f92e284381b2a388ef949a121c", "baseAppId": "", - "sku": "pd3_xbox_dlc01_tailor_pack", + "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_01", "namespace": "pd3", - "name": "XBox DLC01 Tailor pack", + "name": "XBox Tailor pack 01 suit 01", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -34398,63 +60679,42 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T15:02:51.612Z", - "discountPurchaseAt": "2023-11-15T15:02:51.612Z" + "purchaseAt": "2023-11-15T13:57:32.401Z", + "discountPurchaseAt": "2023-11-15T13:57:32.401Z" } ], - "itemIds": [ - "ea6694a1157644049052c435ed403ca0", - "afb59e9b79e94b61b6af5e444b6a9321", - "180c23749e884bb7838e55d4c7a81eda", - "92b670d71861433b822677612f5ed7c1", - "1cc33cfcc89d4031a92f63e2391f8ceb", - "68a57501549f4bdfa97df42ffe5d2abe", - "58a15faf5eea4740b4402ac029395cff", - "aec3a4fb2a8541c5af0953b183953308", - "7cb2d6f92e284381b2a388ef949a121c", - "f755783f43eb4643a5477dccec5c5657", - "915e5d4a550b4ff18fc29299f939da14", - "b71e15593d7a4fd1bffa2ec4eccbd8ff" + "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" ], - "itemQty": { - "915e5d4a550b4ff18fc29299f939da14": 1, - "1cc33cfcc89d4031a92f63e2391f8ceb": 1, - "b71e15593d7a4fd1bffa2ec4eccbd8ff": 1, - "aec3a4fb2a8541c5af0953b183953308": 1, - "58a15faf5eea4740b4402ac029395cff": 1, - "68a57501549f4bdfa97df42ffe5d2abe": 1, - "ea6694a1157644049052c435ed403ca0": 1, - "7cb2d6f92e284381b2a388ef949a121c": 1, - "f755783f43eb4643a5477dccec5c5657": 1, - "92b670d71861433b822677612f5ed7c1": 1, - "afb59e9b79e94b61b6af5e444b6a9321": 1, - "180c23749e884bb7838e55d4c7a81eda": 1 - }, "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T15:02:37.085Z", + "createdAt": "2023-11-15T13:57:18.063Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox DLC01 Weapon pack ", - "itemId": "f31457f805b946e49c5ec6f87f688620", + "title": "XBox Tailor pack 01 suit 02 ", + "itemId": "f755783f43eb4643a5477dccec5c5657", "baseAppId": "", - "sku": "pd3_xbox_dlc01_weapon_pack", + "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_02", "namespace": "pd3", - "name": "XBox DLC01 Weapon pack ", + "name": "XBox Tailor pack 01 suit 02 ", "entitlementType": "DURABLE", - "categoryPath": "/Bundle", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "BUNDLE", + "itemType": "INGAMEITEM", "regionData": [ { "price": 0, @@ -34464,201 +60724,218 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T13:24:16.020Z", - "discountPurchaseAt": "2023-11-10T13:24:16.020Z" + "purchaseAt": "2023-11-15T13:53:12.777Z", + "discountPurchaseAt": "2023-11-15T13:53:12.777Z" } ], - "itemIds": [ - "ce78e08b2d9b48d3ab98c6b500715202", - "20a03764eebe48e685a8c018945c1b93", - "a53796659964479aaac94454ec3f73ef", - "def78f77b7fc4f55a32ae0bda68139d0", - "189da92f691c42f5a40b1588343119b0", - "f9a13e6c2a0f4e6d9251347bc63634c7" + "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" ], - "itemQty": { - "def78f77b7fc4f55a32ae0bda68139d0": 1, - "189da92f691c42f5a40b1588343119b0": 1, - "f9a13e6c2a0f4e6d9251347bc63634c7": 3, - "a53796659964479aaac94454ec3f73ef": 1, - "20a03764eebe48e685a8c018945c1b93": 1, - "ce78e08b2d9b48d3ab98c6b500715202": 1 - }, "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T13:24:11.231Z", + "createdAt": "2023-11-15T13:52:58.461Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox MOD Sight LightHolographic ", - "itemId": "117a8f34b32a4776b9ceef08f509f477", + "title": "XBox Tailor pack 01 suit 03", + "itemId": "915e5d4a550b4ff18fc29299f939da14", "baseAppId": "", - "sku": "pd3_xbox_mod_sight_lightholographic", + "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_03", "namespace": "pd3", - "name": "XBox MOD Sight LightHolographic ", + "name": "XBox Tailor pack 01 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Sight", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T09:30:49.692Z" + "purchaseAt": "2023-11-15T13:49:02.062Z", + "discountPurchaseAt": "2023-11-15T13:49:02.062Z" } ], "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T09:30:50.380Z", + "createdAt": "2023-11-15T13:48:47.772Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox MOD Stock MinimizedHook ", - "itemId": "4a7142408644443c9404a80fde446ad9", + "title": "XBox Tailor pack 01 suit 04", + "itemId": "b71e15593d7a4fd1bffa2ec4eccbd8ff", "baseAppId": "", - "sku": "pd3_xbox_mod_stock_minimizedhook", + "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_04", "namespace": "pd3", - "name": "XBox MOD Stock MinimizedHook ", + "name": "XBox Tailor pack 01 suit 04", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/Stock", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:57:50.408Z" + "purchaseAt": "2023-11-15T13:25:09.339Z", + "discountPurchaseAt": "2023-11-15T13:25:09.339Z" } ], "itemQty": {}, + "boundItemIds": [ + "4660ba68e21143d79b591c0fefe1923b", + "44d935b4c568443a8bf7783f15f38711", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:57:51.213Z", + "createdAt": "2023-11-15T13:24:55.117Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox MOD VerticalGrip FlatSideStab ", - "itemId": "ab06e1aad3884a9ca8158f9711b83534", + "title": "XBox Tailor pack 02 gloves 01", + "itemId": "26624844097649068ccc9a9dd8d09e5e", "baseAppId": "", - "sku": "pd3_xbox_mod_verticalgrip_flatsidestab", + "sku": "pd3_xbox_cosmetic_tailorpack_02_gloves_01", "namespace": "pd3", - "name": "XBox MOD VerticalGrip FlatSideStab ", + "name": "XBox Tailor pack 02 gloves 01", "entitlementType": "DURABLE", - "categoryPath": "/WeaponMod/VerticalGrip", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 100000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 100000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-07T10:02:22.366Z" + "purchaseAt": "2024-03-06T12:52:55.357Z", + "discountPurchaseAt": "2024-03-06T12:52:55.357Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ - "WeaponPart" + "PlatformOnly", + "XBox", + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-07T10:02:23.087Z", + "createdAt": "2024-03-06T12:52:55.604Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Marksman FIK22 ", - "itemId": "e984e044bb424d2383461e149a7443b9", + "title": "XBox Tailor pack 02 gloves 02", + "itemId": "8498ec38068a49a8a226472242d21b69", "baseAppId": "", - "sku": "pd3_xbox_wpn_marksman_fik22", + "sku": "pd3_xbox_cosmetic_tailorpack_02_gloves_02", "namespace": "pd3", - "name": "XBox Marksman FIK22 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "XBox Tailor pack 02 gloves 02", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:16:07.575Z" + "purchaseAt": "2024-03-06T12:53:48.421Z", + "discountPurchaseAt": "2024-03-06T12:53:48.421Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ "PlatformOnly", - "CombatEquipmentVendor", - "DLC1Category", "XBox", - "VendorEntitlementRequired" + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:16:08.083Z", + "createdAt": "2024-03-06T12:53:48.679Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Marksman FIK22 - Vendor Item ", - "itemId": "ce78e08b2d9b48d3ab98c6b500715202", + "title": "XBox Tailor pack 02 gloves 03", + "itemId": "714cdfe977c4465f84a91711ff6da51b", "baseAppId": "", - "sku": "pd3_xbox_wpn_marksman_fik22_vendor", + "sku": "pd3_xbox_cosmetic_tailorpack_02_gloves_03", "namespace": "pd3", - "name": "XBox Marksman FIK22 - Vendor Item ", + "name": "XBox Tailor pack 02 gloves 03", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34672,78 +60949,83 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:35:36.529Z", - "discountPurchaseAt": "2023-11-09T14:35:36.529Z" + "purchaseAt": "2024-03-06T12:54:38.863Z", + "discountPurchaseAt": "2024-03-06T12:54:38.863Z" } ], "itemQty": {}, "boundItemIds": [ - "f31457f805b946e49c5ec6f87f688620" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:35:37.095Z", + "createdAt": "2024-03-06T12:54:39.117Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox SMG WAR45 ", - "itemId": "3a473011c14a4727bb7fa960a487eb71", + "title": "XBox Tailor pack 02 gloves 04", + "itemId": "e402377c076e4c4990a8ebce09d408cc", "baseAppId": "", - "sku": "pd3_xbox_wpn_smg_war45", + "sku": "pd3_xbox_cosmetic_tailorpack_02_gloves_04", "namespace": "pd3", - "name": "XBox SMG WAR45 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "XBox Tailor pack 02 gloves 04", + "entitlementType": "DURABLE", + "categoryPath": "/Gloves", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:37:56.761Z" + "purchaseAt": "2024-03-06T12:55:21.734Z", + "discountPurchaseAt": "2024-03-06T12:55:21.734Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ "PlatformOnly", - "CombatEquipmentVendor", - "DLC1Category", "XBox", - "VendorEntitlementRequired" + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:37:57.288Z", + "createdAt": "2024-03-06T12:55:21.978Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox SMG WAR45 - Vendor Item ", - "itemId": "20a03764eebe48e685a8c018945c1b93", + "title": "XBox Tailor pack 02 mask 01", + "itemId": "8f45d034d7b244de81698d001d9c6acf", "baseAppId": "", - "sku": "pd3_xbox_wpn_smg_war45_vendor", + "sku": "pd3_xbox_cosmetic_tailorpack_02_mask_01", "namespace": "pd3", - "name": "XBox SMG WAR45 - Vendor Item ", + "name": "XBox Tailor pack 02 mask 01", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34757,78 +61039,83 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T14:27:05.421Z", - "discountPurchaseAt": "2023-11-09T14:27:05.421Z" + "purchaseAt": "2024-03-06T10:42:25.223Z", + "discountPurchaseAt": "2024-03-06T10:42:25.223Z" } ], "itemQty": {}, "boundItemIds": [ - "f31457f805b946e49c5ec6f87f688620" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T14:27:06.013Z", + "createdAt": "2024-03-06T10:42:25.399Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Shotgun FSA12 ", - "itemId": "e6a921bbbf0d4897bd4680fd6c46d1d6", + "title": "XBox Tailor pack 02 mask 02", + "itemId": "0139ea7db48e41a1bc15ef23cdadebe6", "baseAppId": "", - "sku": "pd3_xbox_wpn_shotgun_fsa12", + "sku": "pd3_xbox_cosmetic_tailorpack_02_mask_02", "namespace": "pd3", - "name": "XBox Shotgun FSA12 ", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": false, - "categoryPath": "/Weapon", + "name": "XBox Tailor pack 02 mask 02", + "entitlementType": "DURABLE", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 200000, + "price": 0, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 200000, + "discountedPrice": 0, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-06T16:48:37.399Z" + "purchaseAt": "2024-03-06T10:44:15.853Z", + "discountPurchaseAt": "2024-03-06T10:44:15.853Z" } ], "itemQty": {}, + "boundItemIds": [ + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" + ], "tags": [ "PlatformOnly", - "CombatEquipmentVendor", - "DLC1Category", "XBox", - "VendorEntitlementRequired" + "Premium" ], "features": [], - "maxCountPerUser": -1, + "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-06T16:48:37.945Z", + "createdAt": "2024-03-06T10:44:16.026Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Shotgun FSA12 - Vendor Item ", - "itemId": "a53796659964479aaac94454ec3f73ef", + "title": "XBox Tailor pack 02 mask 03", + "itemId": "a5b1febd5c1a4994be8e2f92f4f0b84c", "baseAppId": "", - "sku": "pd3_xbox_wpn_shotgun_fsa12_vendor", + "sku": "pd3_xbox_cosmetic_tailorpack_02_mask_03", "namespace": "pd3", - "name": "XBox Shotgun FSA12 - Vendor Item ", + "name": "XBox Tailor pack 02 mask 03", "entitlementType": "DURABLE", - "categoryPath": "/VendorItem/Weapon", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34842,35 +61129,38 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-09T13:24:52.885Z", - "discountPurchaseAt": "2023-11-09T13:24:52.885Z" + "purchaseAt": "2024-03-06T10:45:04.043Z", + "discountPurchaseAt": "2024-03-06T10:45:04.043Z" } ], "itemQty": {}, "boundItemIds": [ - "f31457f805b946e49c5ec6f87f688620" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", - "XBox" + "XBox", + "Premium" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-09T13:24:53.364Z", + "createdAt": "2024-03-06T10:45:04.217Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 gloves 01", - "itemId": "ea6694a1157644049052c435ed403ca0", + "title": "XBox Tailor pack 02 mask 04", + "itemId": "a109f90a664d4b81ad92bd3beb5779c9", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_01", + "sku": "pd3_xbox_cosmetic_tailorpack_02_mask_04", "namespace": "pd3", - "name": "XBox Tailor pack 01 gloves 01", + "name": "XBox Tailor pack 02 mask 04", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/PremiumMask", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34884,13 +61174,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:19:07.107Z", - "discountPurchaseAt": "2023-11-15T13:19:07.107Z" + "purchaseAt": "2024-03-06T10:46:01.1Z", + "discountPurchaseAt": "2024-03-06T10:46:01.1Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", @@ -34902,18 +61194,18 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:18:52.872Z", + "createdAt": "2024-03-06T10:46:01.27Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 gloves 02", - "itemId": "afb59e9b79e94b61b6af5e444b6a9321", + "title": "XBox Tailor pack 02 suit 01", + "itemId": "7ab0d5d464a743cb8994d1c4bd11d032", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_02", + "sku": "pd3_xbox_cosmetic_tailorpack_02_suit_01", "namespace": "pd3", - "name": "XBox Tailor pack 01 gloves 02", + "name": "XBox Tailor pack 02 suit 01", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34927,13 +61219,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:13:43.583Z", - "discountPurchaseAt": "2023-11-15T13:13:43.583Z" + "purchaseAt": "2024-03-06T13:29:44.012Z", + "discountPurchaseAt": "2024-03-06T13:29:44.012Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", @@ -34945,18 +61239,18 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:13:29.384Z", + "createdAt": "2024-03-06T13:29:44.277Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 gloves 03", - "itemId": "180c23749e884bb7838e55d4c7a81eda", + "title": "XBox Tailor pack 02 suit 02", + "itemId": "7cebf855740549c1b458d9a88a8022f9", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_03", + "sku": "pd3_xbox_cosmetic_tailorpack_02_suit_02", "namespace": "pd3", - "name": "XBox Tailor pack 01 gloves 03", + "name": "XBox Tailor pack 02 suit 02", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -34970,13 +61264,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:07:57.105Z", - "discountPurchaseAt": "2023-11-15T13:07:57.105Z" + "purchaseAt": "2024-03-06T13:30:39.372Z", + "discountPurchaseAt": "2024-03-06T13:30:39.372Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", @@ -34988,18 +61284,18 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:07:42.940Z", + "createdAt": "2024-03-06T13:30:39.644Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 gloves 04", - "itemId": "92b670d71861433b822677612f5ed7c1", + "title": "XBox Tailor pack 02 suit 03", + "itemId": "cbd7b9ff26a44ccda324cb2c57981cd0", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_gloves_04", + "sku": "pd3_xbox_cosmetic_tailorpack_02_suit_03", "namespace": "pd3", - "name": "XBox Tailor pack 01 gloves 04", + "name": "XBox Tailor pack 02 suit 03", "entitlementType": "DURABLE", - "categoryPath": "/Gloves", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35013,13 +61309,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:03:43.218Z", - "discountPurchaseAt": "2023-11-15T13:03:43.218Z" + "purchaseAt": "2024-03-06T13:31:41.541Z", + "discountPurchaseAt": "2024-03-06T13:31:41.541Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", @@ -35031,18 +61329,18 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:03:29.080Z", + "createdAt": "2024-03-06T13:31:41.811Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 mask 01", - "itemId": "1cc33cfcc89d4031a92f63e2391f8ceb", + "title": "XBox Tailor pack 02 suit 04", + "itemId": "2fc488b02b444d19909fff6cd7cf4134", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_01", + "sku": "pd3_xbox_cosmetic_tailorpack_02_suit_04", "namespace": "pd3", - "name": "XBox Tailor pack 01 mask 01", + "name": "XBox Tailor pack 02 suit 04", "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "categoryPath": "/PremiumSuit", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35056,13 +61354,15 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:53:52.936Z", - "discountPurchaseAt": "2023-11-15T12:53:52.936Z" + "purchaseAt": "2024-03-06T13:45:40.916Z", + "discountPurchaseAt": "2024-03-06T13:45:40.916Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "ac9e477157d94847b12681a242351b5e", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", @@ -35074,18 +61374,20 @@ "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:53:38.815Z", + "createdAt": "2024-03-06T13:45:41.202Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 mask 02", - "itemId": "68a57501549f4bdfa97df42ffe5d2abe", + "title": "XBox Weapon Charm DLC2", + "itemId": "099cbb6f1694444a9d90c26a8c63f998", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_02", + "sku": "pd3_xbox_cosmetic_weapon_charm_dlc2", "namespace": "pd3", - "name": "XBox Tailor pack 01 mask 02", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "XBox Weapon Charm DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponCharm", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35099,36 +61401,38 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:46:42.171Z", - "discountPurchaseAt": "2023-11-15T12:46:42.171Z" + "purchaseAt": "2024-02-14T16:41:44.064Z", + "discountPurchaseAt": "2024-02-14T16:41:44.064Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:46:28.067Z", + "createdAt": "2024-02-14T16:41:45.239Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 mask 03", - "itemId": "58a15faf5eea4740b4402ac029395cff", + "title": "XBox Weapon Sticker DLC1", + "itemId": "189da92f691c42f5a40b1588343119b0", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_03", + "sku": "pd3_xbox_cosmetic_weapon_sticker_dlc1", "namespace": "pd3", - "name": "XBox Tailor pack 01 mask 03", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "XBox Weapon Sticker DLC1", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35142,36 +61446,40 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:42:35.564Z", - "discountPurchaseAt": "2023-11-15T12:42:35.564Z" + "purchaseAt": "2023-11-10T14:35:22.121Z", + "discountPurchaseAt": "2023-11-10T14:35:22.121Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "44d935b4c568443a8bf7783f15f38711", + "f31457f805b946e49c5ec6f87f688620", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "Inexhaustible", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:42:21.454Z", + "createdAt": "2023-11-10T14:35:17.11Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 mask 04", - "itemId": "aec3a4fb2a8541c5af0953b183953308", + "title": "XBox Weapon Sticker DLC2", + "itemId": "555122dde2bc4191ad07d18587a61e73", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_mask_04", + "sku": "pd3_xbox_cosmetic_weapon_sticker_dlc2", "namespace": "pd3", - "name": "XBox Tailor pack 01 mask 04", - "entitlementType": "DURABLE", - "categoryPath": "/PremiumMask", + "name": "XBox Weapon Sticker DLC2", + "entitlementType": "CONSUMABLE", + "useCount": 1, + "stackable": true, + "categoryPath": "/WeaponSticker", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35185,122 +61493,121 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T12:36:27.944Z", - "discountPurchaseAt": "2023-11-15T12:36:27.944Z" + "purchaseAt": "2024-02-14T16:55:44.383Z", + "discountPurchaseAt": "2024-02-14T16:55:44.383Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "90f80be8a8c84af9a11826eed79d6cdf", + "b02e02d17493407483eed1f4132529a6", + "48e8fc422be24c1a83901db780fe4975" ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "Inexhaustible", + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T12:36:13.894Z", + "createdAt": "2024-02-14T16:55:45.575Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 suit 01", - "itemId": "7cb2d6f92e284381b2a388ef949a121c", + "title": "Xbox Character Star", + "itemId": "c99622fcb3754822be81e88370ef6228", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_01", + "sku": "pd3_xbox_character_star", "namespace": "pd3", - "name": "XBox Tailor pack 01 suit 01", + "name": "Xbox Character Star", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 999, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, - "currencyCode": "CASH", + "discountedPrice": 999, + "currencyCode": "GOLD", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:57:32.401Z", - "discountPurchaseAt": "2023-11-15T13:57:32.401Z" + "purchaseAt": "2024-08-28T13:48:15.274Z", + "discountPurchaseAt": "2024-08-28T13:48:15.274Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "68073a99fd314557bec1a91e31ca006e" ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "XBox" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:57:18.063Z", + "createdAt": "2024-08-28T13:48:13.833Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 suit 02 ", - "itemId": "f755783f43eb4643a5477dccec5c5657", + "title": "Xbox Player Pack 03 Mask Mould 01", + "itemId": "a76e043b07bc47269dbeed7ca578e202", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_02", + "sku": "pd3_xbox_cosmetics_mould_pp03_01", "namespace": "pd3", - "name": "XBox Tailor pack 01 suit 02 ", + "name": "Xbox Player Pack 03 Mask Mould 01", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/MaskMould", "status": "ACTIVE", "listable": true, "purchasable": true, "itemType": "INGAMEITEM", "regionData": [ { - "price": 0, + "price": 350000, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 350000, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:53:12.777Z", - "discountPurchaseAt": "2023-11-15T13:53:12.777Z" + "purchaseAt": "2024-08-27T11:33:31.607Z" } ], "itemQty": {}, - "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" - ], "tags": [ "PlatformOnly", + "STARCategory", + "CharacterVendor", "XBox", - "Premium" + "VendorEntitlementRequired" ], "features": [], - "maxCountPerUser": 1, + "maxCountPerUser": -1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:52:58.461Z", + "createdAt": "2024-08-27T11:33:32.747Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 suit 03", - "itemId": "915e5d4a550b4ff18fc29299f939da14", + "title": "Xbox Player Pack 03 Mask Mould 01 - Vendor Item", + "itemId": "912655981cd941bfb5fa604e5f3ac7ef", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_03", + "sku": "pd3_xbox_cosmetics_mould_pp03_01_vendor", "namespace": "pd3", - "name": "XBox Tailor pack 01 suit 03", + "name": "Xbox Player Pack 03 Mask Mould 01 - Vendor Item", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/VendorItem/Mask", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35314,81 +61621,85 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:49:02.062Z", - "discountPurchaseAt": "2023-11-15T13:49:02.062Z" + "purchaseAt": "2024-08-27T11:43:48.42Z", + "discountPurchaseAt": "2024-08-27T11:43:48.42Z" } ], "itemQty": {}, "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "68073a99fd314557bec1a91e31ca006e" ], "tags": [ "PlatformOnly", - "XBox", - "Premium" + "XBox" ], "features": [], "maxCountPerUser": 1, "maxCount": -1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:48:47.772Z", + "createdAt": "2024-08-27T11:43:49.562Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Tailor pack 01 suit 04", - "itemId": "b71e15593d7a4fd1bffa2ec4eccbd8ff", + "title": "Xbox Star Character Bundle", + "itemId": "68073a99fd314557bec1a91e31ca006e", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_tailorpack_01_suit_04", + "sku": "pd3_xbox_character_bundle_star", "namespace": "pd3", - "name": "XBox Tailor pack 01 suit 04", + "name": "Xbox Star Character Bundle", "entitlementType": "DURABLE", - "categoryPath": "/PremiumSuit", + "categoryPath": "/Character", "status": "ACTIVE", "listable": true, "purchasable": true, - "itemType": "INGAMEITEM", + "itemType": "BUNDLE", "regionData": [ { - "price": 0, + "price": 993, "discountPercentage": 0, "discountAmount": 0, - "discountedPrice": 0, + "discountedPrice": 993, "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-15T13:25:09.339Z", - "discountPurchaseAt": "2023-11-15T13:25:09.339Z" + "purchaseAt": "2024-08-26T14:10:15.376Z", + "discountPurchaseAt": "2024-08-26T14:10:15.376Z" } ], - "itemQty": {}, - "boundItemIds": [ - "4660ba68e21143d79b591c0fefe1923b" + "itemIds": [ + "5cef3f683eb5438bbfb02de20335a47e", + "912655981cd941bfb5fa604e5f3ac7ef", + "c442d54c863849fabf578098d75acc12", + "c99622fcb3754822be81e88370ef6228" ], + "itemQty": { + "c99622fcb3754822be81e88370ef6228": 1, + "c442d54c863849fabf578098d75acc12": 1, + "912655981cd941bfb5fa604e5f3ac7ef": 1, + "5cef3f683eb5438bbfb02de20335a47e": 1 + }, "tags": [ "PlatformOnly", - "XBox", - "Premium" + "XBox" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-15T13:24:55.117Z", + "createdAt": "2024-08-26T14:10:14.375Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { - "title": "XBox Weapon Sticker DLC1", - "itemId": "189da92f691c42f5a40b1588343119b0", + "title": "Xbox Star Preset Vendor Item", + "itemId": "5cef3f683eb5438bbfb02de20335a47e", "baseAppId": "", - "sku": "pd3_xbox_cosmetic_weapon_sticker_dlc1", + "sku": "pd3_xbox_wpn_preset_star_vendor", "namespace": "pd3", - "name": "XBox Weapon Sticker DLC1", - "entitlementType": "CONSUMABLE", - "useCount": 1, - "stackable": true, - "categoryPath": "/WeaponSticker", + "name": "Xbox Star Preset Vendor Item", + "entitlementType": "DURABLE", + "categoryPath": "/VendorItem/Weapon", "status": "ACTIVE", "listable": true, "purchasable": true, @@ -35402,25 +61713,24 @@ "currencyCode": "CASH", "currencyType": "VIRTUAL", "currencyNamespace": "pd3", - "purchaseAt": "2023-11-10T14:35:22.121Z", - "discountPurchaseAt": "2023-11-10T14:35:22.121Z" + "purchaseAt": "2024-08-27T11:34:34.425Z", + "discountPurchaseAt": "2024-08-27T11:34:34.425Z" } ], "itemQty": {}, "boundItemIds": [ - "f31457f805b946e49c5ec6f87f688620" + "68073a99fd314557bec1a91e31ca006e" ], "tags": [ "PlatformOnly", - "Inexhaustible", "XBox" ], "features": [], "maxCountPerUser": 1, - "maxCount": -1, + "maxCount": 1, "region": "SE", "language": "en-US", - "createdAt": "2023-11-10T14:35:17.110Z", + "createdAt": "2024-08-27T11:34:34.415Z", "updatedAt": "updatedattomakegitdiffseasiertoread" }, { @@ -35453,7 +61763,9 @@ ], "itemQty": {}, "boundItemIds": [ - "f31457f805b946e49c5ec6f87f688620" + "44d935b4c568443a8bf7783f15f38711", + "f31457f805b946e49c5ec6f87f688620", + "b02e02d17493407483eed1f4132529a6" ], "tags": [ "PlatformOnly", diff --git a/PayCheckServerLib/Files/Matchmaking.json b/PayCheckServerLib/Files/Matchmaking.json new file mode 100644 index 0000000..0fb68bf --- /dev/null +++ b/PayCheckServerLib/Files/Matchmaking.json @@ -0,0 +1,17 @@ +{ + "namespace": "pd3", + "key": "matchmaking", + "set_by": "SERVER", + "value": { + "BeaconsKey": "edgegap_beacons", + "HostingProvider": "edgegap", + "MatchmakingProvider": "accelbyte", + "edgegap": { + "token": "ABCDEF12345", + "url": "https://slejmur.ddns.net" + }, + "provider": "accelbyte" + }, + "created_at": "2024-05-29T09:02:01.957Z", + "updated_at": "2024-05-29T09:02:01.957Z" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/MetaEvents.json b/PayCheckServerLib/Files/MetaEvents.json index a185b90..428e2a6 100644 --- a/PayCheckServerLib/Files/MetaEvents.json +++ b/PayCheckServerLib/Files/MetaEvents.json @@ -6,68 +6,20 @@ "ActiveEventType": "IncreasedCash", "MetaEvents": [ { - "Description": "Double Cash Month!", + "Description": "50% cash increase", + "EventId": "double_cash", "EventType": "IncreasedCash", "Modifiers": [ { "ModifierType": "Cash", - "Multiplier": 2 - } - ], - "StartDate": "2022.11.09-09.00.00", - "StopDate": "2022.12.06-16.00.00" - }, - { - "Description": "Double XP Week!", - "EventType": "IncreasedXP", - "Modifiers": [ - { - "ModifierType": "XP", - "Multiplier": 2 - } - ], - "StartDate": "2022.11.01-09.00.00", - "StopDate": "2022.11.-7-23.59.59" - }, - { - "Description": "Halloween Week Madness!", - "EventType": "Halloween", - "Modifiers": [ - { - "ModifierType": "Cash", - "Multiplier": 1.5 - }, - { - "ModifierType": "XP", "Multiplier": 1.5 } ], - "StartDate": "2022.09.30-09.00.00", - "StopDate": "2022.09.30-17.00.00" - }, - { - "Description": "April Fool's Day!", - "EventType": "AprilsFool", - "Modifiers": [], - "StartDate": "2022.09.30-09.00.00", - "StopDate": "2022.09.30-17.00.00" - }, - { - "Description": "Midsummer Day Event", - "EventType": "Midsummer", - "Modifiers": [], - "StartDate": "2022.09.30-09.00.00", - "StopDate": "2022.09.30-17.00.00" - }, - { - "Description": "New Year Event", - "EventType": "NewYear", - "Modifiers": [], - "StartDate": "2022.09.30-09.00.00", - "StopDate": "2022.09.30-17.00.00" + "StartDate": "2024.09.26-12.00.00", + "StopDate": "2024.10.01-12.01.00" } ] }, "created_at": "2022-09-30T10:50:29.387Z", - "updated_at": "2023-11-30T11:08:42.971Z" + "updated_at": "2024-09-27T14:22:13.62Z" } \ No newline at end of file diff --git a/PayCheckServerLib/Files/StatItems_pd3.json b/PayCheckServerLib/Files/StatItems_pd3.json index 43d9233..10cb840 100644 --- a/PayCheckServerLib/Files/StatItems_pd3.json +++ b/PayCheckServerLib/Files/StatItems_pd3.json @@ -1,93 +1,93 @@ [ { + "createdAt": "2021-11-01T16:03:01.934Z", + "namespace": "pd3", "statCode": "23cdde1e5cb540a6af317678a824ed49", "statName": "Shotgun R870 progression", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-01T16:03:01.934Z", "updatedAt": "2023-11-02T10:22:11.351Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-20T08:58:10.960Z", + "namespace": "pd3", "statCode": "achievements-rewarded", "statName": "Achievements rewarded", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-20T08:58:10.960Z", "updatedAt": "2023-11-02T10:22:11.377Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:57:28.280Z", + "namespace": "pd3", "statCode": "ammospecialist-progression-code", "statName": "Ammo Specialist Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:57:28.280Z", "updatedAt": "2023-11-02T10:22:11.381Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:56:53.014Z", + "namespace": "pd3", "statCode": "ammospecialist-research-code", "statName": "Ammo Specialist Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:56:53.014Z", "updatedAt": "2023-11-02T10:22:11.384Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:59:16.552Z", + "namespace": "pd3", "statCode": "armoredtransport-civilians-gone", "statName": "Armored Transport Civilians Gone", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:59:16.552Z", "updatedAt": "2023-11-02T10:22:11.388Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.316Z", + "namespace": "pd3", "statCode": "armoredtransport-civilians-gone-epic", "statName": "Armored Transport Civilians Gone Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.316Z", "updatedAt": "2023-11-02T10:22:11.391Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.197Z", + "namespace": "pd3", "statCode": "armoredtransport-civilians-gone-playstation", "statName": "Armored Transport Civilians Gone PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.197Z", "updatedAt": "2023-11-02T10:22:11.395Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.009Z", + "namespace": "pd3", "statCode": "armoredtransport-civilians-gone-steam", "statName": "Armored Transport Civilians Gone Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.009Z", "updatedAt": "2023-11-02T10:22:11.399Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.095Z", + "namespace": "pd3", "statCode": "armoredtransport-civilians-gone-xbox", "statName": "Armored Transport Civilians Gone XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.095Z", "updatedAt": "2023-11-02T10:22:11.402Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T10:52:56.320Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-hard", "statName": "Armored Transport Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T10:52:56.320Z", "updatedAt": "2023-11-02T10:22:11.406Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Hard", @@ -97,22 +97,22 @@ ] }, { + "createdAt": "2022-12-06T13:21:54.568Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-hard-best-time", "statName": "Armored Transport Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:21:54.568Z", "updatedAt": "2023-11-02T10:22:11.409Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T10:43:24.789Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-normal", "statName": "Armored Transport Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T10:43:24.789Z", "updatedAt": "2023-11-02T10:22:11.413Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Transport", @@ -122,22 +122,22 @@ ] }, { + "createdAt": "2022-12-06T13:21:06.877Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-normal-best-time", "statName": "Armored Transport Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:21:06.877Z", "updatedAt": "2023-11-02T10:22:11.417Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T10:56:15.154Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-overkill", "statName": "Armored Transport Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T10:56:15.154Z", "updatedAt": "2023-11-02T10:22:11.421Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Transport", @@ -147,22 +147,22 @@ ] }, { + "createdAt": "2022-12-06T13:22:40.847Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-overkill-best-time", "statName": "Armored Transport Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:22:40.847Z", "updatedAt": "2023-11-02T10:22:11.425Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T10:55:23.456Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-veryhard", "statName": "Armored Transport Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T10:55:23.456Z", "updatedAt": "2023-11-02T10:22:11.428Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Hard", @@ -172,22 +172,22 @@ ] }, { + "createdAt": "2022-12-06T13:22:19.968Z", + "namespace": "pd3", "statCode": "armoredtransport-loud-veryhard-best-time", "statName": "Armored Transport Loud Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:22:19.968Z", "updatedAt": "2023-11-02T10:22:11.432Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-17T13:02:48.369Z", + "namespace": "pd3", "statCode": "armoredtransport-max-payout", "statName": "Armored Transport Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:02:48.369Z", "updatedAt": "2023-11-02T10:22:11.436Z", "userId": "UserId", + "value": 0.0, "tags": [ "Max", "Payout", @@ -197,13 +197,13 @@ ] }, { + "createdAt": "2022-11-17T13:04:50.937Z", + "namespace": "pd3", "statCode": "armoredtransport-no-downs", "statName": "Armored Transport No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:04:50.937Z", "updatedAt": "2023-11-02T10:22:11.439Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -213,13 +213,13 @@ ] }, { + "createdAt": "2023-02-02T09:28:47.411Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-1", "statName": "Armored Transport Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:28:47.411Z", "updatedAt": "2023-11-02T10:22:11.443Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -228,13 +228,13 @@ ] }, { + "createdAt": "2023-02-02T09:36:55.097Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-2", "statName": "Armored Transport Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:36:55.097Z", "updatedAt": "2023-11-02T10:22:11.447Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -243,13 +243,13 @@ ] }, { + "createdAt": "2023-02-02T09:38:38.471Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-3", "statName": "Armored Transport Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:38:38.471Z", "updatedAt": "2023-11-02T10:22:11.451Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -258,13 +258,13 @@ ] }, { + "createdAt": "2023-02-02T09:39:24.120Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-4", "statName": "Armored Transport Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:39:24.120Z", "updatedAt": "2023-11-02T10:22:11.454Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -273,13 +273,13 @@ ] }, { + "createdAt": "2023-02-02T09:40:04.438Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-5", "statName": "Armored Transport Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:40:04.438Z", "updatedAt": "2023-11-02T10:22:11.458Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -288,13 +288,13 @@ ] }, { + "createdAt": "2023-02-02T09:40:50.611Z", + "namespace": "pd3", "statCode": "armoredtransport-optional-objective-6", "statName": "Armored Transport Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:40:50.611Z", "updatedAt": "2023-11-02T10:22:11.462Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Transport", @@ -303,13 +303,13 @@ ] }, { + "createdAt": "2022-11-16T12:51:30.168Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-hard", "statName": "Armored Transport Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T12:51:30.168Z", "updatedAt": "2023-11-02T10:22:11.465Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Hard", @@ -319,22 +319,22 @@ ] }, { + "createdAt": "2022-12-06T13:23:28.147Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-hard-best-time", "statName": "Armored Transport Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:23:28.147Z", "updatedAt": "2023-11-02T10:22:11.469Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T12:50:19.470Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-normal", "statName": "Armored Transport Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T12:50:19.470Z", "updatedAt": "2023-11-02T10:22:11.473Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Transport", @@ -344,22 +344,22 @@ ] }, { + "createdAt": "2022-12-06T13:23:07.836Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-normal-best-time", "statName": "Armored Transport Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:23:07.836Z", "updatedAt": "2023-11-02T10:22:11.477Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T12:53:56.741Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-overkill", "statName": "Armored Transport Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T12:53:56.741Z", "updatedAt": "2023-11-02T10:22:11.481Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Transport", @@ -369,22 +369,22 @@ ] }, { + "createdAt": "2022-12-06T13:24:19.556Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-overkill-best-time", "statName": "Armored Transport Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:24:19.556Z", "updatedAt": "2023-11-02T10:22:11.485Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T12:53:01.785Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-veryhard", "statName": "Armored Transport Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T12:53:01.785Z", "updatedAt": "2023-11-02T10:22:11.489Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Hard", @@ -394,112 +394,112 @@ ] }, { + "createdAt": "2022-12-06T13:23:58.207Z", + "namespace": "pd3", "statCode": "armoredtransport-stealth-veryhard-best-time", "statName": "Armored Transport Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:23:58.207Z", "updatedAt": "2023-11-02T10:22:11.493Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:58:56.376Z", + "namespace": "pd3", "statCode": "armoredtransport-truck-no-stop", "statName": "Armored Transport Truck No Stop", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:58:56.376Z", "updatedAt": "2023-11-02T10:22:11.496Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.506Z", + "namespace": "pd3", "statCode": "armoredtransport-truck-no-stop-epic", "statName": "Armored Transport Truck No Stop Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.506Z", "updatedAt": "2023-11-02T10:22:11.500Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.427Z", + "namespace": "pd3", "statCode": "armoredtransport-truck-no-stop-playstation", "statName": "Armored Transport Truck No Stop PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.427Z", "updatedAt": "2023-11-02T10:22:11.504Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.207Z", + "namespace": "pd3", "statCode": "armoredtransport-truck-no-stop-steam", "statName": "Armored Transport Truck No Stop Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.207Z", "updatedAt": "2023-11-02T10:22:11.508Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.532Z", + "namespace": "pd3", "statCode": "armoredtransport-truck-no-stop-xbox", "statName": "Armored Transport Truck No Stop XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.532Z", "updatedAt": "2023-11-02T10:22:11.511Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T15:00:00.676Z", + "namespace": "pd3", "statCode": "artgallery-exhibition-bags-secured", "statName": "Art Gallery Exhibition Bags Secured", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:00:00.676Z", "updatedAt": "2023-11-02T10:22:11.515Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.113Z", + "namespace": "pd3", "statCode": "artgallery-exhibition-bags-secured-epic", "statName": "Art Gallery Exhibition Bags Secured Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.113Z", "updatedAt": "2023-11-02T10:22:11.519Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.604Z", + "namespace": "pd3", "statCode": "artgallery-exhibition-bags-secured-playstation", "statName": "Art Gallery Exhibition Bags Secured PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.604Z", "updatedAt": "2023-11-02T10:22:11.523Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.596Z", + "namespace": "pd3", "statCode": "artgallery-exhibition-bags-secured-steam", "statName": "Art Gallery Exhibition Bags Secured Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.596Z", "updatedAt": "2023-11-02T10:22:11.526Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.104Z", + "namespace": "pd3", "statCode": "artgallery-exhibition-bags-secured-xbox", "statName": "Art Gallery Exhibition Bags Secured XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.104Z", "updatedAt": "2023-11-02T10:22:11.531Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:01:28.195Z", + "namespace": "pd3", "statCode": "artgallery-loud-hard", "statName": "Art Gallery Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:01:28.195Z", "updatedAt": "2023-11-02T10:22:11.535Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Loud", @@ -509,22 +509,22 @@ ] }, { + "createdAt": "2022-05-23T06:41:22.746Z", + "namespace": "pd3", "statCode": "artgallery-loud-hard-best-time", "statName": "Art Gallery Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:41:22.746Z", "updatedAt": "2023-11-02T10:22:11.538Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:00:12.091Z", + "namespace": "pd3", "statCode": "artgallery-loud-normal", "statName": "Art Gallery Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:00:12.091Z", "updatedAt": "2023-11-02T10:22:11.542Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Loud", @@ -534,22 +534,22 @@ ] }, { + "createdAt": "2022-05-23T06:40:45.744Z", + "namespace": "pd3", "statCode": "artgallery-loud-normal-best-time", "statName": "Art Gallery Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:40:45.744Z", "updatedAt": "2023-11-02T10:22:11.546Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:08:31.159Z", + "namespace": "pd3", "statCode": "artgallery-loud-overkill", "statName": "Art Gallery Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:08:31.159Z", "updatedAt": "2023-11-02T10:22:11.550Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Loud", @@ -559,22 +559,22 @@ ] }, { + "createdAt": "2022-05-23T06:43:34.520Z", + "namespace": "pd3", "statCode": "artgallery-loud-overkill-best-time", "statName": "Art Gallery Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:43:34.520Z", "updatedAt": "2023-11-02T10:22:11.554Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:05:44.193Z", + "namespace": "pd3", "statCode": "artgallery-loud-veryhard", "statName": "Art Gallery Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:05:44.193Z", "updatedAt": "2023-11-02T10:22:11.558Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Loud", @@ -584,22 +584,22 @@ ] }, { + "createdAt": "2022-05-23T06:42:27.295Z", + "namespace": "pd3", "statCode": "artgallery-loud-veryhard-best-time", "statName": "Art Gallery Loud Very hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:42:27.295Z", "updatedAt": "2023-11-02T10:22:11.561Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T12:38:29.721Z", + "namespace": "pd3", "statCode": "artgallery-max-payout", "statName": "Art Gallery Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:38:29.721Z", "updatedAt": "2023-11-02T10:22:11.565Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Max", @@ -609,13 +609,13 @@ ] }, { + "createdAt": "2022-06-16T12:39:31.420Z", + "namespace": "pd3", "statCode": "artgallery-no-downs", "statName": "Art Gallery No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:39:31.420Z", "updatedAt": "2023-11-02T10:22:11.569Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Art", @@ -625,13 +625,13 @@ ] }, { + "createdAt": "2023-02-02T10:06:59.161Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-1", "statName": "Art Gallery Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:06:59.161Z", "updatedAt": "2023-11-02T10:22:11.573Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -640,13 +640,13 @@ ] }, { + "createdAt": "2023-02-02T10:07:42.918Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-2", "statName": "Art Gallery Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:07:42.918Z", "updatedAt": "2023-11-02T10:22:11.577Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -655,13 +655,13 @@ ] }, { + "createdAt": "2023-02-02T10:08:19.910Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-3", "statName": "Art Gallery Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:08:19.910Z", "updatedAt": "2023-11-02T10:22:11.581Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -670,13 +670,13 @@ ] }, { + "createdAt": "2023-02-02T10:09:01.260Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-4", "statName": "Art Gallery Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:09:01.260Z", "updatedAt": "2023-11-02T10:22:11.585Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -685,13 +685,13 @@ ] }, { + "createdAt": "2023-02-02T10:09:38.064Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-5", "statName": "Art Gallery Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:09:38.064Z", "updatedAt": "2023-11-02T10:22:11.588Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -700,13 +700,13 @@ ] }, { + "createdAt": "2023-02-02T10:10:19.688Z", + "namespace": "pd3", "statCode": "artgallery-optional-objective-6", "statName": "Art Gallery Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:10:19.688Z", "updatedAt": "2023-11-02T10:22:11.592Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Optional", @@ -715,58 +715,58 @@ ] }, { + "createdAt": "2023-02-14T14:59:39.945Z", + "namespace": "pd3", "statCode": "artgallery-shanda-painting-secured", "statName": "Art Gallery Shanda Panting Secured", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:59:39.945Z", "updatedAt": "2023-11-02T10:22:11.596Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.135Z", + "namespace": "pd3", "statCode": "artgallery-shanda-painting-secured-epic", "statName": "Art Gallery Shanda Painting Secured Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.135Z", "updatedAt": "2023-11-02T10:22:11.600Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.622Z", + "namespace": "pd3", "statCode": "artgallery-shanda-painting-secured-playstation", "statName": "Art Gallery Shanda Painting Secured Play Station", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.622Z", "updatedAt": "2023-11-02T10:22:11.604Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.612Z", + "namespace": "pd3", "statCode": "artgallery-shanda-painting-secured-steam", "statName": "Art Gallery Shanda Painting Secured Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.612Z", "updatedAt": "2023-11-02T10:22:11.607Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.121Z", + "namespace": "pd3", "statCode": "artgallery-shanda-painting-secured-xbox", "statName": "Art Gallery Shanda Painting Secured XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.121Z", "updatedAt": "2023-11-02T10:22:11.611Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:10:53.310Z", + "namespace": "pd3", "statCode": "artgallery-stealth-hard", "statName": "Art Gallery Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:10:53.310Z", "updatedAt": "2023-11-02T10:22:11.614Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Gallery", @@ -776,22 +776,22 @@ ] }, { + "createdAt": "2022-05-23T06:35:54.756Z", + "namespace": "pd3", "statCode": "artgallery-stealth-hard-best-time", "statName": "Art Gallery best time on hard and stealth", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:35:54.756Z", "updatedAt": "2023-11-02T10:22:11.618Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:09:52.671Z", + "namespace": "pd3", "statCode": "artgallery-stealth-normal", "statName": "Art Gallery Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:09:52.671Z", "updatedAt": "2023-11-02T10:22:11.622Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Gallery", @@ -801,22 +801,22 @@ ] }, { + "createdAt": "2022-05-19T12:47:59.358Z", + "namespace": "pd3", "statCode": "artgallery-stealth-normal-best-time", "statName": "Art Gallery Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-19T12:47:59.358Z", "updatedAt": "2023-11-02T10:22:11.625Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:13:21.875Z", + "namespace": "pd3", "statCode": "artgallery-stealth-overkill", "statName": "Art Gallery Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:13:21.875Z", "updatedAt": "2023-11-02T10:22:11.629Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Gallery", @@ -826,22 +826,22 @@ ] }, { + "createdAt": "2022-05-23T06:38:24.336Z", + "namespace": "pd3", "statCode": "artgallery-stealth-overkill-best-time", "statName": "Art Gallery Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:38:24.336Z", "updatedAt": "2023-11-02T10:22:11.633Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T12:12:20.356Z", + "namespace": "pd3", "statCode": "artgallery-stealth-veryhard", "statName": "Art Gallery Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T12:12:20.356Z", "updatedAt": "2023-11-02T10:22:11.637Z", "userId": "UserId", + "value": 0.0, "tags": [ "Art", "Stealth", @@ -851,22 +851,22 @@ ] }, { + "createdAt": "2022-05-23T06:37:33.437Z", + "namespace": "pd3", "statCode": "artgallery-stealth-veryhard-best-time", "statName": "Art Gallery Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:37:33.437Z", "updatedAt": "2023-11-02T10:22:11.641Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T15:12:19.576Z", + "namespace": "pd3", "statCode": "assault-human-shield-time", "statName": "Assault Human Shield Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:12:19.576Z", "updatedAt": "2023-11-02T10:22:11.645Z", "userId": "UserId", + "value": 0.0, "tags": [ "Human", "Shield", @@ -875,13 +875,13 @@ ] }, { + "createdAt": "2022-06-20T12:19:06.780Z", + "namespace": "pd3", "statCode": "assaultrifle-akm-headshot-kills", "statName": "Deprecated AKM Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:19:06.780Z", "updatedAt": "2023-11-02T10:22:11.648Z", "userId": "UserId", + "value": 0.0, "tags": [ "AKM", "Combat", @@ -890,13 +890,13 @@ ] }, { + "createdAt": "2022-06-20T11:30:07.547Z", + "namespace": "pd3", "statCode": "assaultrifle-akm-kills", "statName": "Deprecated AKM Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:30:07.547Z", "updatedAt": "2023-11-02T10:22:11.652Z", "userId": "UserId", + "value": 0.0, "tags": [ "AKM", "Combat", @@ -904,31 +904,31 @@ ] }, { + "createdAt": "2022-06-27T06:53:28.584Z", + "namespace": "pd3", "statCode": "assaultrifle-akm-weapon-level", "statName": "AKM Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:53:28.584Z", "updatedAt": "2023-11-02T10:22:11.656Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T06:52:24.220Z", + "namespace": "pd3", "statCode": "assaultrifle-akm-weapon-points", "statName": "AKM Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:52:24.220Z", "updatedAt": "2023-11-02T10:22:11.660Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:49:08.686Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-ads-kills", "statName": "CAR4 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:49:08.686Z", "updatedAt": "2023-11-02T10:22:11.664Z", "userId": "UserId", + "value": 0.0, "tags": [ "ADS", "Combat", @@ -937,31 +937,31 @@ ] }, { + "createdAt": "2023-03-06T14:58:10.251Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-armored-headshot-kills", "statName": "CAR4 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:58:10.251Z", "updatedAt": "2023-11-02T10:22:11.667Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:05:18.365Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-four-mods-equipped", "statName": "CAR4 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:05:18.365Z", "updatedAt": "2023-11-02T10:22:11.671Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:46:39.019Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-full-mod-unlock", "statName": "CAR4 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:46:39.019Z", "updatedAt": "2023-11-02T10:22:11.675Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -970,13 +970,13 @@ ] }, { + "createdAt": "2022-11-15T14:43:46.581Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-headshot-kills", "statName": "CAR4 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:43:46.581Z", "updatedAt": "2023-11-02T10:22:11.679Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -985,22 +985,22 @@ ] }, { + "createdAt": "2023-03-06T14:46:00.071Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-hipfire-kills", "statName": "CAR4 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:46:00.071Z", "updatedAt": "2023-11-02T10:22:11.683Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T13:53:47.919Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-kills", "statName": "CAR4 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T13:53:47.919Z", "updatedAt": "2023-11-02T10:22:11.686Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -1008,22 +1008,22 @@ ] }, { + "createdAt": "2023-03-06T15:11:15.423Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-longrange-kills", "statName": "CAR4 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:11:15.423Z", "updatedAt": "2023-11-02T10:22:11.690Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:25:53.725Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-mod-equipped", "statName": "CAR4 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:25:53.725Z", "updatedAt": "2023-11-02T10:22:11.694Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -1032,94 +1032,94 @@ ] }, { + "createdAt": "2023-02-02T12:46:17.964Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-noreload-kills", "statName": "CAR4 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T12:46:17.964Z", "updatedAt": "2023-11-02T10:22:11.698Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:38:58.326Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-specialenemies-kills", "statName": "CAR4 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:38:58.326Z", "updatedAt": "2023-11-02T10:22:11.701Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:20:25.943Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-suppressor-kills", "statName": "CAR4 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:20:25.943Z", "updatedAt": "2023-11-02T10:22:11.705Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:30:05.722Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-twoenemies-kills", "statName": "CAR4 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:30:05.722Z", "updatedAt": "2023-11-02T10:22:11.709Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:12:17.115Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-weapon-level", "statName": "CAR4 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:12:17.115Z", "updatedAt": "2023-11-02T10:22:11.713Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T15:45:12.615Z", + "namespace": "pd3", "statCode": "assaultrifle-car4-weapon-points", "statName": "CAR4 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T15:45:12.615Z", "updatedAt": "2023-11-02T10:22:11.717Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:11:29.320Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-ads-kills", "statName": "KU59 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:11:29.320Z", "updatedAt": "2023-11-02T10:22:11.720Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T14:58:45.179Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-armored-headshot-kills", "statName": "KU59 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:58:45.179Z", "updatedAt": "2023-11-02T10:22:11.724Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:06:03.573Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-four-mods-equipped", "statName": "KU59 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:06:03.573Z", "updatedAt": "2023-11-02T10:22:11.728Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:48:18.779Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-full-mod-unlock", "statName": "KU59 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:48:18.779Z", "updatedAt": "2023-11-02T10:22:11.731Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -1128,13 +1128,13 @@ ] }, { + "createdAt": "2022-11-15T14:46:43.460Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-headshot-kills", "statName": "KU59 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:46:43.460Z", "updatedAt": "2023-11-02T10:22:11.735Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -1143,13 +1143,13 @@ ] }, { + "createdAt": "2023-01-13T17:51:12.801Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-hipfire-kills", "statName": "KU59 Hip Fire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:51:12.801Z", "updatedAt": "2023-11-02T10:22:11.739Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -1158,13 +1158,13 @@ ] }, { + "createdAt": "2022-11-15T13:58:20.777Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-kills", "statName": "KU59 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T13:58:20.777Z", "updatedAt": "2023-11-02T10:22:11.743Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -1172,22 +1172,22 @@ ] }, { + "createdAt": "2023-03-06T15:11:59.446Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-longrange-kills", "statName": "KU59 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:11:59.446Z", "updatedAt": "2023-11-02T10:22:11.747Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:27:57.880Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-mod-equipped", "statName": "KU59 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:27:57.880Z", "updatedAt": "2023-11-02T10:22:11.750Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -1196,67 +1196,67 @@ ] }, { + "createdAt": "2023-03-06T14:32:56.515Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-noreload-kills", "statName": "KU59 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:32:56.515Z", "updatedAt": "2023-11-02T10:22:11.754Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:39:33.279Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-specialenemies-kills", "statName": "KU59 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:39:33.279Z", "updatedAt": "2023-11-02T10:22:11.758Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:21:10.086Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-suppressor-kills", "statName": "KU59 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:21:10.086Z", "updatedAt": "2023-11-02T10:22:11.762Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:30:34.496Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-twoenemies-kills", "statName": "KU59 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:30:34.496Z", "updatedAt": "2023-11-02T10:22:11.765Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:15:02.456Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-weapon-level", "statName": "KU59 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:15:02.456Z", "updatedAt": "2023-11-02T10:22:11.769Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:01:28.394Z", + "namespace": "pd3", "statCode": "assaultrifle-ku59-weapon-points", "statName": "KU59 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:01:28.394Z", "updatedAt": "2023-11-02T10:22:11.773Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:16:51.041Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-headshot-kills", "statName": "Deprecated M4A1 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:16:51.041Z", "updatedAt": "2023-11-02T10:22:11.776Z", "userId": "UserId", + "value": 0.0, "tags": [ "M4A1", "Combat", @@ -1265,13 +1265,13 @@ ] }, { + "createdAt": "2022-06-20T11:27:59.190Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-kills", "statName": "Deprecated M4A1 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:27:59.190Z", "updatedAt": "2023-11-02T10:22:11.780Z", "userId": "UserId", + "value": 0.0, "tags": [ "M4A1", "Combat", @@ -1279,94 +1279,94 @@ ] }, { + "createdAt": "2022-06-27T06:54:38.183Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-weapon-level", "statName": "M4A1 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:54:38.183Z", "updatedAt": "2023-11-02T10:22:11.784Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T06:54:06.499Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-weapon-points", "statName": "M4A1 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:54:06.499Z", "updatedAt": "2023-11-02T10:22:11.788Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-10-05T11:20:26.318Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-weapon-points-level-up", "statName": "Not Used", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-10-05T11:20:26.318Z", "updatedAt": "2023-11-02T10:22:11.791Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-10-05T13:21:51.750Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-wp-level-up", "statName": "AssaultRifle M4A1 points required to level up", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-10-05T13:21:51.750Z", "updatedAt": "2023-11-02T10:22:11.795Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-10-05T13:19:40.846Z", + "namespace": "pd3", "statCode": "assaultrifle-m4a1-wp-pre-level-up", "statName": "AssaultReifle M4A1 previous level up points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-10-05T13:19:40.846Z", "updatedAt": "2023-11-02T10:22:11.799Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:11:01.269Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-ads-kills", "statName": "NWB9 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:11:01.269Z", "updatedAt": "2023-11-02T10:22:11.802Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T14:57:42.870Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-armored-headshot-kills", "statName": "NWB9 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:57:42.870Z", "updatedAt": "2023-11-02T10:22:11.806Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-02T15:41:35.032Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-four-mods-equipped", "statName": "NWB9 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-02T15:41:35.032Z", "updatedAt": "2023-11-02T10:22:11.810Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-02T15:40:42.154Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-full-mod-unlock", "statName": "NWB9 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-02T15:40:42.154Z", "updatedAt": "2023-11-02T10:22:11.815Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:41:30.350Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-headshot-kills", "statName": "NWB9 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:41:30.350Z", "updatedAt": "2023-11-02T10:22:11.819Z", "userId": "UserId", + "value": 0.0, "tags": [ "NWB9", "Combat", @@ -1375,22 +1375,22 @@ ] }, { + "createdAt": "2023-03-06T14:45:37.455Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-hipfire-kills", "statName": "NWB9 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:45:37.455Z", "updatedAt": "2023-11-02T10:22:11.822Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T13:51:41.666Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-kills", "statName": "NWB9 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T13:51:41.666Z", "updatedAt": "2023-11-02T10:22:11.826Z", "userId": "UserId", + "value": 0.0, "tags": [ "NWB9", "Combat", @@ -1398,22 +1398,22 @@ ] }, { + "createdAt": "2023-03-06T15:10:58.834Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-longrange-kills", "statName": "NWB9 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:10:58.834Z", "updatedAt": "2023-11-02T10:22:11.830Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-21T10:13:43.109Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-mod-equipped", "statName": "NWB9 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-21T10:13:43.109Z", "updatedAt": "2023-11-02T10:22:11.833Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -1422,13 +1422,13 @@ ] }, { + "createdAt": "2023-01-13T17:47:52.231Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-noreload-kills", "statName": "NWB9 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:47:52.231Z", "updatedAt": "2023-11-02T10:22:11.837Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "NWB9", @@ -1438,58 +1438,58 @@ ] }, { + "createdAt": "2023-03-06T15:38:42.716Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-specialenemies-kills", "statName": "NWB9 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:38:42.716Z", "updatedAt": "2023-11-02T10:22:11.841Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:20:09.692Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-suppressor-kills", "statName": "NWB9 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:20:09.692Z", "updatedAt": "2023-11-02T10:22:11.845Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:29:51.257Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-twoenemies-kills", "statName": "NWB9 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:29:51.257Z", "updatedAt": "2023-11-02T10:22:11.849Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T13:17:20.184Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-weapon-level", "statName": "NWB9 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T13:17:20.184Z", "updatedAt": "2023-11-02T10:22:11.852Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T13:16:53.575Z", + "namespace": "pd3", "statCode": "assaultrifle-nwb9-weapon-points", "statName": "NWBP Weapon points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T13:16:53.575Z", "updatedAt": "2023-11-02T10:22:11.856Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:15:49.826Z", + "namespace": "pd3", "statCode": "assaultrifle-qbz191-headshot-kills", "statName": "Deprecated QBZ 191 Carbine Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:15:49.826Z", "updatedAt": "2023-11-02T10:22:11.860Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -1498,13 +1498,13 @@ ] }, { + "createdAt": "2022-06-20T11:26:14.369Z", + "namespace": "pd3", "statCode": "assaultrifle-qbz191-kills", "statName": "Deprecated QBZ 191 Carbine Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:26:14.369Z", "updatedAt": "2023-11-02T10:22:11.863Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -1512,31 +1512,31 @@ ] }, { + "createdAt": "2022-06-27T06:56:06.921Z", + "namespace": "pd3", "statCode": "assaultrifle-qbz191-weapon-level", "statName": "QBZ 191 Carbine Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:56:06.921Z", "updatedAt": "2023-11-02T10:22:11.867Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T06:55:31.760Z", + "namespace": "pd3", "statCode": "assaultrifle-qbz191-weapon-points", "statName": "QBZ 191 Carbine Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:55:31.760Z", "updatedAt": "2023-11-02T10:22:11.871Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:18:14.742Z", + "namespace": "pd3", "statCode": "assaultrifle-scarh-headshot-kills", "statName": "Deprecated SCAR-H Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:18:14.742Z", "updatedAt": "2023-11-02T10:22:11.875Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SCAR", @@ -1545,13 +1545,13 @@ ] }, { + "createdAt": "2022-06-20T11:29:14.005Z", + "namespace": "pd3", "statCode": "assaultrifle-scarh-kills", "statName": "Deprecated SCAR-H Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:29:14.005Z", "updatedAt": "2023-11-02T10:22:11.879Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SCAR", @@ -1559,31 +1559,31 @@ ] }, { + "createdAt": "2022-06-27T06:57:22.044Z", + "namespace": "pd3", "statCode": "assaultrifle-scarh-weapon-level", "statName": "SCAR-H Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:57:22.044Z", "updatedAt": "2023-11-02T10:22:11.883Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T06:56:41.722Z", + "namespace": "pd3", "statCode": "assaultrifle-scarh-weapon-points", "statName": "SCZR-H Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:56:41.722Z", "updatedAt": "2023-11-02T10:22:11.887Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:50:06.221Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-ads-kills", "statName": "VF7S Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:50:06.221Z", "updatedAt": "2023-11-02T10:22:11.890Z", "userId": "UserId", + "value": 0.0, "tags": [ "ADS", "VF7S", @@ -1592,31 +1592,31 @@ ] }, { + "createdAt": "2023-03-06T14:58:26.880Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-armored-headshot-kills", "statName": "VF7S Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:58:26.880Z", "updatedAt": "2023-11-02T10:22:11.894Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:05:39.720Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-four-mods-equipped", "statName": "VF7S Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:05:39.720Z", "updatedAt": "2023-11-02T10:22:11.897Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:47:29.053Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-full-mod-unlock", "statName": "VF7S Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:47:29.053Z", "updatedAt": "2023-11-02T10:22:11.901Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "VF7S", @@ -1625,13 +1625,13 @@ ] }, { + "createdAt": "2022-11-15T14:44:53.431Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-headshot-kills", "statName": "VF7S Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:44:53.431Z", "updatedAt": "2023-11-02T10:22:11.905Z", "userId": "UserId", + "value": 0.0, "tags": [ "VF7S", "Combat", @@ -1640,22 +1640,22 @@ ] }, { + "createdAt": "2023-03-06T14:46:21.962Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-hipfire-kills", "statName": "VF7S Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:46:21.962Z", "updatedAt": "2023-11-02T10:22:11.909Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T13:56:46.566Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-kills", "statName": "VF7S Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T13:56:46.566Z", "updatedAt": "2023-11-02T10:22:11.913Z", "userId": "UserId", + "value": 0.0, "tags": [ "VF7S", "Combat", @@ -1663,22 +1663,22 @@ ] }, { + "createdAt": "2023-03-06T15:11:42.290Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-longrange-kills", "statName": "VF7S Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:11:42.290Z", "updatedAt": "2023-11-02T10:22:11.916Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:27:10.730Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-mod-equipped", "statName": "VF7S Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:27:10.730Z", "updatedAt": "2023-11-02T10:22:11.920Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -1687,67 +1687,67 @@ ] }, { + "createdAt": "2023-03-06T14:31:53.735Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-noreload-kills", "statName": "VF7S No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:31:53.735Z", "updatedAt": "2023-11-02T10:22:11.924Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:39:15.495Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-specialenemies-kills", "statName": "VF7S Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:39:15.495Z", "updatedAt": "2023-11-02T10:22:11.928Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:20:46.584Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-suppressor-kills", "statName": "VF7S Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:20:46.584Z", "updatedAt": "2023-11-02T10:22:11.932Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:30:20.811Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-twoenemies-kills", "statName": "VF7S Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:30:20.811Z", "updatedAt": "2023-11-02T10:22:11.935Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:14:26.519Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-weapon-level", "statName": "VF7S Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:14:26.519Z", "updatedAt": "2023-11-02T10:22:11.939Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T15:55:31.075Z", + "namespace": "pd3", "statCode": "assaultrifle-vf7s-weapon-points", "statName": "VF7S Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T15:55:31.075Z", "updatedAt": "2023-11-02T10:22:11.943Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:44:35.836Z", + "namespace": "pd3", "statCode": "branchbank-loud-hard", "statName": "Branch Bank Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:44:35.836Z", "updatedAt": "2023-11-02T10:22:11.947Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -1757,22 +1757,22 @@ ] }, { + "createdAt": "2022-12-06T13:25:11.199Z", + "namespace": "pd3", "statCode": "branchbank-loud-hard-best-time", "statName": "Branch Bank Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:25:11.199Z", "updatedAt": "2023-11-02T10:22:11.951Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:40:47.667Z", + "namespace": "pd3", "statCode": "branchbank-loud-normal", "statName": "Branch Bank Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:40:47.667Z", "updatedAt": "2023-11-02T10:22:11.954Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -1782,22 +1782,22 @@ ] }, { + "createdAt": "2022-12-06T13:24:46.687Z", + "namespace": "pd3", "statCode": "branchbank-loud-normal-best-time", "statName": "Branch Bank Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:24:46.687Z", "updatedAt": "2023-11-02T10:22:11.958Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:48:18.634Z", + "namespace": "pd3", "statCode": "branchbank-loud-overkill", "statName": "Branch Bank Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:48:18.634Z", "updatedAt": "2023-11-02T10:22:11.962Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -1807,22 +1807,22 @@ ] }, { + "createdAt": "2022-12-06T13:26:15.827Z", + "namespace": "pd3", "statCode": "branchbank-loud-overkill-best-time", "statName": "Branch Bank Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:26:15.827Z", "updatedAt": "2023-11-02T10:22:11.965Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:46:12.293Z", + "namespace": "pd3", "statCode": "branchbank-loud-veryhard", "statName": "Branch Bank Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:46:12.293Z", "updatedAt": "2023-11-02T10:22:11.969Z", "userId": "UserId", + "value": 0.0, "tags": [ "Branch", "Loud", @@ -1832,22 +1832,22 @@ ] }, { + "createdAt": "2022-12-06T13:25:42.638Z", + "namespace": "pd3", "statCode": "branchbank-loud-veryhard-best-time", "statName": "Branch Bank Loud Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:25:42.638Z", "updatedAt": "2023-11-02T10:22:11.973Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T09:36:58.559Z", + "namespace": "pd3", "statCode": "branchbank-max-payout", "statName": "Branch Bank Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T09:36:58.559Z", "updatedAt": "2023-11-02T10:22:11.976Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Max", @@ -1857,13 +1857,13 @@ ] }, { + "createdAt": "2022-06-16T09:38:46.596Z", + "namespace": "pd3", "statCode": "branchbank-no-downs", "statName": "Branch Bank No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T09:38:46.596Z", "updatedAt": "2023-11-02T10:22:11.980Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -1873,103 +1873,103 @@ ] }, { + "createdAt": "2023-02-14T15:00:25.231Z", + "namespace": "pd3", "statCode": "branchbank-no-dye-packs-exploded", "statName": "Branch Bank No Dye Packs Exploded", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:00:25.231Z", "updatedAt": "2023-11-02T10:22:11.984Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.685Z", + "namespace": "pd3", "statCode": "branchbank-no-dye-packs-exploded-epic", "statName": "Branch Bank No Dye Packs Exploded Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.685Z", "updatedAt": "2023-11-02T10:22:11.987Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.630Z", + "namespace": "pd3", "statCode": "branchbank-no-dye-packs-exploded-playstation", "statName": "Branch Bank No Dye Packs Exploded PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.630Z", "updatedAt": "2023-11-02T10:22:11.991Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.693Z", + "namespace": "pd3", "statCode": "branchbank-no-dye-packs-exploded-steam", "statName": "Branch Bank No Dye Packs Exploded Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.693Z", "updatedAt": "2023-11-02T10:22:11.995Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.187Z", + "namespace": "pd3", "statCode": "branchbank-no-dye-packs-exploded-xbox", "statName": "Branch Bank No Dye Packs Exploded XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.187Z", "updatedAt": "2023-11-02T10:22:11.998Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T15:00:47.280Z", + "namespace": "pd3", "statCode": "branchbank-open-deposit-boxes", "statName": "Branch Bank Open Deposit Boxes", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:00:47.280Z", "updatedAt": "2023-11-02T10:22:12.002Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.724Z", + "namespace": "pd3", "statCode": "branchbank-open-deposit-boxes-epic", "statName": "Branch Bank Open Deposit Boxes Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.724Z", "updatedAt": "2023-11-02T10:22:12.006Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.717Z", + "namespace": "pd3", "statCode": "branchbank-open-deposit-boxes-playstation", "statName": "Branch Bank open Deposit Boxes PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.717Z", "updatedAt": "2023-11-02T10:22:12.010Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.601Z", + "namespace": "pd3", "statCode": "branchbank-open-deposit-boxes-steam", "statName": "Branch Bank Open Deposit Boxes Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.601Z", "updatedAt": "2023-11-02T10:22:12.013Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.709Z", + "namespace": "pd3", "statCode": "branchbank-open-deposit-boxes-xbox", "statName": "Branch Bank Open Deposit Boxes XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.709Z", "updatedAt": "2023-11-02T10:22:12.017Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-02T09:41:41.502Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-1", "statName": "Branch Bank Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:41:41.502Z", "updatedAt": "2023-11-02T10:22:12.021Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -1978,13 +1978,13 @@ ] }, { + "createdAt": "2023-02-02T09:42:38.172Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-2", "statName": "Branch Bank Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:42:38.172Z", "updatedAt": "2023-11-02T10:22:12.027Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -1993,13 +1993,13 @@ ] }, { + "createdAt": "2023-02-02T09:43:30.284Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-3", "statName": "Branch Bank Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:43:30.284Z", "updatedAt": "2023-11-02T10:22:12.031Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -2008,13 +2008,13 @@ ] }, { + "createdAt": "2023-02-02T09:44:27.189Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-4", "statName": "Branch Bank Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:44:27.189Z", "updatedAt": "2023-11-02T10:22:12.034Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -2023,13 +2023,13 @@ ] }, { + "createdAt": "2023-02-02T09:45:09.371Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-5", "statName": "Branch Bank Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:45:09.371Z", "updatedAt": "2023-11-02T10:22:12.038Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -2038,13 +2038,13 @@ ] }, { + "createdAt": "2023-02-02T09:45:52.306Z", + "namespace": "pd3", "statCode": "branchbank-optional-objective-6", "statName": "Branch Bank Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:45:52.306Z", "updatedAt": "2023-11-02T10:22:12.041Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -2053,13 +2053,13 @@ ] }, { + "createdAt": "2022-06-13T14:51:36.970Z", + "namespace": "pd3", "statCode": "branchbank-stealth-hard", "statName": "Branch Bank Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:51:36.970Z", "updatedAt": "2023-11-02T10:22:12.045Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -2069,22 +2069,22 @@ ] }, { + "createdAt": "2022-12-06T13:27:07.374Z", + "namespace": "pd3", "statCode": "branchbank-stealth-hard-best-time", "statName": "Branch Bank Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:27:07.374Z", "updatedAt": "2023-11-02T10:22:12.049Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:50:28.940Z", + "namespace": "pd3", "statCode": "branchbank-stealth-normal", "statName": "Branch Bank Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:50:28.940Z", "updatedAt": "2023-11-02T10:22:12.053Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -2094,22 +2094,22 @@ ] }, { + "createdAt": "2022-12-06T13:26:43.016Z", + "namespace": "pd3", "statCode": "branchbank-stealth-normal-best-time", "statName": "Branch Bank Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:26:43.016Z", "updatedAt": "2023-11-02T10:22:12.057Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:53:38.951Z", + "namespace": "pd3", "statCode": "branchbank-stealth-overkill", "statName": "Branch Bank Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:53:38.951Z", "updatedAt": "2023-11-02T10:22:12.060Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Branch", @@ -2119,22 +2119,22 @@ ] }, { + "createdAt": "2022-12-06T13:27:57.896Z", + "namespace": "pd3", "statCode": "branchbank-stealth-overkill-best-time", "statName": "Branch Bank Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:27:57.896Z", "updatedAt": "2023-11-02T10:22:12.064Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:52:38.508Z", + "namespace": "pd3", "statCode": "branchbank-stealth-veryhard", "statName": "Branch Bank Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:52:38.508Z", "updatedAt": "2023-11-02T10:22:12.068Z", "userId": "UserId", + "value": 0.0, "tags": [ "Branch", "Stealth", @@ -2144,48 +2144,48 @@ ] }, { + "createdAt": "2022-12-06T13:27:32.808Z", + "namespace": "pd3", "statCode": "branchbank-stealth-veryhard-best-time", "statName": "Branch Bank Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:27:32.808Z", "updatedAt": "2023-11-02T10:22:12.072Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:33:56.544Z", + "namespace": "pd3", "statCode": "break-case", "statName": "Break Display Cases", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:33:56.544Z", "updatedAt": "2023-11-02T10:22:12.075Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Display" ] }, { + "createdAt": "2023-01-13T14:35:27.471Z", + "namespace": "pd3", "statCode": "break-window", "statName": "Break Windows", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:35:27.471Z", "updatedAt": "2023-11-02T10:22:12.079Z", "userId": "UserId", + "value": 0.0, "tags": [ "Window", "Heist" ] }, { + "createdAt": "2022-11-16T13:47:35.286Z", + "namespace": "pd3", "statCode": "cargodock-loud-hard", "statName": "Cargo Dock Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:47:35.286Z", "updatedAt": "2023-11-02T10:22:12.083Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2195,22 +2195,22 @@ ] }, { + "createdAt": "2022-12-06T13:28:54.860Z", + "namespace": "pd3", "statCode": "cargodock-loud-hard-best-time", "statName": "Cargo Dock Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:28:54.860Z", "updatedAt": "2023-11-02T10:22:12.087Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:46:34.528Z", + "namespace": "pd3", "statCode": "cargodock-loud-normal", "statName": "Cargo Dock Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:46:34.528Z", "updatedAt": "2023-11-02T10:22:12.090Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2220,22 +2220,22 @@ ] }, { + "createdAt": "2022-12-06T13:28:34.055Z", + "namespace": "pd3", "statCode": "cargodock-loud-normal-best-time", "statName": "Cargo Dock Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:28:34.055Z", "updatedAt": "2023-11-02T10:22:12.094Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:49:44.096Z", + "namespace": "pd3", "statCode": "cargodock-loud-overkill", "statName": "Cargo Dock Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:49:44.096Z", "updatedAt": "2023-11-02T10:22:12.098Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2245,22 +2245,22 @@ ] }, { + "createdAt": "2022-12-06T13:30:18.293Z", + "namespace": "pd3", "statCode": "cargodock-loud-overkill-best-time", "statName": "Cargo Dock Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:30:18.293Z", "updatedAt": "2023-11-02T10:22:12.102Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:48:55.410Z", + "namespace": "pd3", "statCode": "cargodock-loud-veryhard", "statName": "Cargo Dock Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:48:55.410Z", "updatedAt": "2023-11-02T10:22:12.105Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Loud", @@ -2270,67 +2270,67 @@ ] }, { + "createdAt": "2022-12-06T13:29:44.980Z", + "namespace": "pd3", "statCode": "cargodock-loud-veryhard-best-time", "statName": "Cargo Dock Loud Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:29:44.980Z", "updatedAt": "2023-11-02T10:22:12.109Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T15:01:06.239Z", + "namespace": "pd3", "statCode": "cargodock-max-hi-tech-secured", "statName": "Cargo Dock Max Hi Tech Secured", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:01:06.239Z", "updatedAt": "2023-11-02T10:22:12.113Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.799Z", + "namespace": "pd3", "statCode": "cargodock-max-hi-tech-secured-epic", "statName": "Cargo Dock Max Hi Tech Secured Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.799Z", "updatedAt": "2023-11-02T10:22:12.117Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.701Z", + "namespace": "pd3", "statCode": "cargodock-max-hi-tech-secured-playstation", "statName": "Cargo Dock Max Hi Tech Secured Play Station", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.701Z", "updatedAt": "2023-11-02T10:22:12.121Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.791Z", + "namespace": "pd3", "statCode": "cargodock-max-hi-tech-secured-steam", "statName": "Cargo Dock Hi Tech Secured Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.791Z", "updatedAt": "2023-11-02T10:22:12.124Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.733Z", + "namespace": "pd3", "statCode": "cargodock-max-hi-tech-secured-xbox", "statName": "Cargo Dock Max Hi Tech Secured XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.733Z", "updatedAt": "2023-11-02T10:22:12.128Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-17T13:06:50.582Z", + "namespace": "pd3", "statCode": "cargodock-max-payout", "statName": "Cargo Dock Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:06:50.582Z", "updatedAt": "2023-11-02T10:22:12.132Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2340,61 +2340,61 @@ ] }, { + "createdAt": "2023-05-24T07:06:07.954Z", + "namespace": "pd3", "statCode": "cargodock-max-payout-achievement", "statName": "Cargo Dock Max Payout Achievement", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-05-24T07:06:07.954Z", "updatedAt": "2023-11-02T10:22:12.135Z", "userId": "UserId", + "value": 0.0, "tags": [ "Achievement" ] }, { + "createdAt": "2023-09-05T07:11:20.829Z", + "namespace": "pd3", "statCode": "cargodock-max-payout-achievement-epic", "statName": "Cargo Dock Max Payout Achievement Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.829Z", "updatedAt": "2023-11-02T10:22:12.139Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.821Z", + "namespace": "pd3", "statCode": "cargodock-max-payout-achievement-playstation", "statName": "Cargo Dock Max Payout Achievement Play Station", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.821Z", "updatedAt": "2023-11-02T10:22:12.143Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.806Z", + "namespace": "pd3", "statCode": "cargodock-max-payout-achievement-steam", "statName": "Cargo Dock Max Payout Achievement Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.806Z", "updatedAt": "2023-11-02T10:22:12.147Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.814Z", + "namespace": "pd3", "statCode": "cargodock-max-payout-achievement-xbox", "statName": "Cargo Dock Max Payout Achievement XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.814Z", "updatedAt": "2023-11-02T10:22:12.151Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-17T13:08:24.855Z", + "namespace": "pd3", "statCode": "cargodock-no-downs", "statName": "Cargo Dock No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:08:24.855Z", "updatedAt": "2023-11-02T10:22:12.155Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "No", @@ -2404,13 +2404,13 @@ ] }, { + "createdAt": "2023-02-02T10:20:12.577Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-1", "statName": "Cargo Dock Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:20:12.577Z", "updatedAt": "2023-11-02T10:22:12.158Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2419,13 +2419,13 @@ ] }, { + "createdAt": "2023-02-02T10:20:49.315Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-2", "statName": "Cargo Dock Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:20:49.315Z", "updatedAt": "2023-11-02T10:22:12.162Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2434,13 +2434,13 @@ ] }, { + "createdAt": "2023-02-02T10:21:25.916Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-3", "statName": "Cargo Dock Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:21:25.916Z", "updatedAt": "2023-11-02T10:22:12.166Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2449,13 +2449,13 @@ ] }, { + "createdAt": "2023-02-02T10:22:03.139Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-4", "statName": "Cargo Dock Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:22:03.139Z", "updatedAt": "2023-11-02T10:22:12.170Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2464,13 +2464,13 @@ ] }, { + "createdAt": "2023-02-02T10:22:39.760Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-5", "statName": "Cargo Dock Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:22:39.760Z", "updatedAt": "2023-11-02T10:22:12.174Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2479,13 +2479,13 @@ ] }, { + "createdAt": "2023-02-02T10:23:14.386Z", + "namespace": "pd3", "statCode": "cargodock-optional-objective-6", "statName": "Cargo Dock Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:23:14.386Z", "updatedAt": "2023-11-02T10:22:12.177Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2494,13 +2494,13 @@ ] }, { + "createdAt": "2022-11-16T13:51:40.429Z", + "namespace": "pd3", "statCode": "cargodock-stealth-hard", "statName": "Cargo Dock Stealth Hard", + "updatedAt": "2023-11-02T10:22:12.181Z", + "userId": "UserId", "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:51:40.429Z", - "updatedAt": "2023-11-02T10:22:12.181Z", - "userId": "UserId", "tags": [ "Cargo", "Dock", @@ -2510,22 +2510,22 @@ ] }, { + "createdAt": "2022-12-06T13:31:10.867Z", + "namespace": "pd3", "statCode": "cargodock-stealth-hard-best-time", "statName": "Cargo Dock Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:31:10.867Z", "updatedAt": "2023-11-02T10:22:12.185Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:50:47.904Z", + "namespace": "pd3", "statCode": "cargodock-stealth-normal", "statName": "Cargo Dock Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:50:47.904Z", "updatedAt": "2023-11-02T10:22:12.189Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2535,22 +2535,22 @@ ] }, { + "createdAt": "2022-12-06T13:30:49.209Z", + "namespace": "pd3", "statCode": "cargodock-stealth-normal-best-time", "statName": "Cargo Dock Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:30:49.209Z", "updatedAt": "2023-11-02T10:22:12.193Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:53:55.041Z", + "namespace": "pd3", "statCode": "cargodock-stealth-overkill", "statName": "Cargo Dock Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:53:55.041Z", "updatedAt": "2023-11-02T10:22:12.196Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Dock", @@ -2560,22 +2560,22 @@ ] }, { + "createdAt": "2022-12-06T13:32:03.257Z", + "namespace": "pd3", "statCode": "cargodock-stealth-overkill-best-time", "statName": "Cargo Dock Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:32:03.257Z", "updatedAt": "2023-11-02T10:22:12.200Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:52:30.405Z", + "namespace": "pd3", "statCode": "cargodock-stealth-veryhard", "statName": "Cargo Dock Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:52:30.405Z", "updatedAt": "2023-11-02T10:22:12.204Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cargo", "Stealth", @@ -2585,22 +2585,22 @@ ] }, { + "createdAt": "2022-12-06T13:31:32.996Z", + "namespace": "pd3", "statCode": "cargodock-stealth-veryhard-best-time", "statName": "Cargo Dock Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:31:32.996Z", "updatedAt": "2023-11-02T10:22:12.208Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T14:40:18.651Z", + "namespace": "pd3", "statCode": "cloaker-kills", "statName": "Cloaker Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:40:18.651Z", "updatedAt": "2023-11-02T10:22:12.211Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Cloaker", @@ -2608,13 +2608,13 @@ ] }, { + "createdAt": "2023-01-13T14:57:04.046Z", + "namespace": "pd3", "statCode": "cloaker-save", "statName": "Cloaker Save", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:57:04.046Z", "updatedAt": "2023-11-02T10:22:12.215Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Save", @@ -2622,215 +2622,215 @@ ] }, { + "createdAt": "2023-04-04T09:33:07.891Z", + "namespace": "pd3", "statCode": "complete-crowdcontrol", "statName": "Tutorial Crowd Control", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-04-04T09:33:07.891Z", "updatedAt": "2023-11-02T10:22:12.218Z", "userId": "UserId", + "value": 0.0, "tags": [ "Tutorial" ] }, { + "createdAt": "2023-04-04T09:33:47.769Z", + "namespace": "pd3", "statCode": "complete-loudcombat", "statName": "Tutorial Loud Combat", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-04-04T09:33:47.769Z", "updatedAt": "2023-11-02T10:22:12.222Z", "userId": "UserId", + "value": 0.0, "tags": [ "Tutorial" ] }, { + "createdAt": "2023-04-04T09:36:01.625Z", + "namespace": "pd3", "statCode": "complete-socialstealth", "statName": "Tutorial Social Stealth", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-04-04T09:36:01.625Z", "updatedAt": "2023-11-02T10:22:12.225Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-04-04T09:34:58.604Z", + "namespace": "pd3", "statCode": "complete-stealthdetection", "statName": "Tutorial Stealth Detection", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-04-04T09:34:58.604Z", "updatedAt": "2023-11-02T10:22:12.229Z", "userId": "UserId", + "value": 0.0, "tags": [ "Tutorial" ] }, { + "createdAt": "2023-02-14T14:55:44.822Z", + "namespace": "pd3", "statCode": "core-buffs-active", "statName": "Core Buffs Active", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:55:44.822Z", "updatedAt": "2023-11-02T10:22:12.233Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.003Z", + "namespace": "pd3", "statCode": "core-buffs-active-epic", "statName": "Core Buffs Active Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.003Z", "updatedAt": "2023-11-02T10:22:12.236Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.023Z", + "namespace": "pd3", "statCode": "core-buffs-active-playstation", "statName": "Core Buffs Active PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.023Z", "updatedAt": "2023-11-02T10:22:12.239Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.594Z", + "namespace": "pd3", "statCode": "core-buffs-active-steam", "statName": "Core Buffs Active Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.594Z", "updatedAt": "2023-11-02T10:22:12.243Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.888Z", + "namespace": "pd3", "statCode": "core-buffs-active-xbox", "statName": "Core Buffs Active XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.888Z", "updatedAt": "2023-11-02T10:22:12.246Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:00:24.513Z", + "namespace": "pd3", "statCode": "cqcspecialist-progression-code", "statName": "CQC Specialist Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:00:24.513Z", "updatedAt": "2023-11-02T10:22:12.250Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:59:56.194Z", + "namespace": "pd3", "statCode": "cqcspecialist-research-code", "statName": "CQC Specialist Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:59:56.194Z", "updatedAt": "2023-11-02T10:22:12.254Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-21T09:40:54.708Z", + "namespace": "pd3", "statCode": "customize-mask", "statName": "Customize Mask", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-21T09:40:54.708Z", "updatedAt": "2023-11-02T10:22:12.257Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.189Z", + "namespace": "pd3", "statCode": "customize-mask-epic", "statName": "Customize Mask Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.189Z", "updatedAt": "2023-11-02T10:22:12.261Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.021Z", + "namespace": "pd3", "statCode": "customize-mask-playstation", "statName": "Customize Mask PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.021Z", "updatedAt": "2023-11-02T10:22:12.264Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.587Z", + "namespace": "pd3", "statCode": "customize-mask-steam", "statName": "Customize Mask Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.587Z", "updatedAt": "2023-11-02T10:22:12.268Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.011Z", + "namespace": "pd3", "statCode": "customize-mask-xbox", "statName": "Customize Mask XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.011Z", "updatedAt": "2023-11-02T10:22:12.271Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-30T09:45:00.348Z", + "namespace": "pd3", "statCode": "cut-objects", "statName": "Cut Objects", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-30T09:45:00.348Z", "updatedAt": "2023-11-02T10:22:12.275Z", "userId": "UserId", + "value": 0.0, "tags": [ "Cut", "Heist" ] }, { + "createdAt": "2022-06-13T13:50:28.509Z", + "namespace": "pd3", "statCode": "cutter-progression-code", "statName": "Cutter Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:50:28.509Z", "updatedAt": "2023-11-02T10:22:12.279Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:49:55.810Z", + "namespace": "pd3", "statCode": "cutter-research-code", "statName": "Cutter Research Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:49:55.810Z", "updatedAt": "2023-11-02T10:22:12.283Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:59:26.140Z", + "namespace": "pd3", "statCode": "demolitionist-progression-code", "statName": "Demolitionist Progress Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:59:26.140Z", "updatedAt": "2023-11-02T10:22:12.287Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:58:56.642Z", + "namespace": "pd3", "statCode": "demolitionist-research-code", "statName": "Demolitionist Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:58:56.642Z", "updatedAt": "2023-11-02T10:22:12.291Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T15:08:09.523Z", + "namespace": "pd3", "statCode": "deploy-ammo-bag", "statName": "Deploy Ammo Bag", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:08:09.523Z", "updatedAt": "2023-11-02T10:22:12.295Z", "userId": "UserId", + "value": 0.0, "tags": [ "Ammo", "Combat", @@ -2838,13 +2838,13 @@ ] }, { + "createdAt": "2023-01-13T15:06:02.366Z", + "namespace": "pd3", "statCode": "deploy-armor-bag", "statName": "Deploy Armor Bag", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:06:02.366Z", "updatedAt": "2023-11-02T10:22:12.299Z", "userId": "UserId", + "value": 0.0, "tags": [ "Armor", "Combat", @@ -2852,13 +2852,13 @@ ] }, { + "createdAt": "2023-01-13T15:04:06.961Z", + "namespace": "pd3", "statCode": "deploy-medic-bag", "statName": "Deploy Medic Bag", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:04:06.961Z", "updatedAt": "2023-11-02T10:22:12.303Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Deploy", @@ -2866,13 +2866,13 @@ ] }, { + "createdAt": "2023-01-13T15:10:07.348Z", + "namespace": "pd3", "statCode": "deploy-sentry-turret", "statName": "Deploy Sentry Turret", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:10:07.348Z", "updatedAt": "2023-11-02T10:22:12.308Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Deploy", @@ -2880,13 +2880,13 @@ ] }, { + "createdAt": "2023-01-13T17:06:28.294Z", + "namespace": "pd3", "statCode": "destroy-choker-belt", "statName": "Destroy Choker Belt", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:06:28.294Z", "updatedAt": "2023-11-02T10:22:12.312Z", "userId": "UserId", + "value": 0.0, "tags": [ "Belt", "Destroy", @@ -2895,13 +2895,13 @@ ] }, { + "createdAt": "2023-01-13T17:00:30.408Z", + "namespace": "pd3", "statCode": "destroy-taser-battery", "statName": "Destroy Taser Battery", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:00:30.408Z", "updatedAt": "2023-11-02T10:22:12.316Z", "userId": "UserId", + "value": 0.0, "tags": [ "Destroy", "Combat", @@ -2910,13 +2910,13 @@ ] }, { + "createdAt": "2023-01-13T17:30:21.706Z", + "namespace": "pd3", "statCode": "detected-kills", "statName": "Detected Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:30:21.706Z", "updatedAt": "2023-11-02T10:22:12.320Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Detect", @@ -2924,26 +2924,26 @@ ] }, { + "createdAt": "2023-01-13T14:24:15.857Z", + "namespace": "pd3", "statCode": "devices-hacked", "statName": "Devices Hacked", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:24:15.857Z", "updatedAt": "2023-11-02T10:22:12.324Z", "userId": "UserId", + "value": 0.0, "tags": [ "Hack", "Heist" ] }, { + "createdAt": "2023-01-13T14:34:50.926Z", + "namespace": "pd3", "statCode": "door-sprint", "statName": "Door Sprint", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:34:50.926Z", "updatedAt": "2023-11-02T10:22:12.328Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Sprint", @@ -2951,13 +2951,13 @@ ] }, { + "createdAt": "2023-01-13T17:07:23.455Z", + "namespace": "pd3", "statCode": "dozer-faceplate", "statName": "Dozer Faceplate", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:07:23.455Z", "updatedAt": "2023-11-02T10:22:12.332Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Dozer", @@ -2965,13 +2965,13 @@ ] }, { + "createdAt": "2022-06-22T14:21:30.593Z", + "namespace": "pd3", "statCode": "dozer-kills", "statName": "Dozer Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-22T14:21:30.593Z", "updatedAt": "2023-11-02T10:22:12.336Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -2979,13 +2979,13 @@ ] }, { + "createdAt": "2022-06-16T14:41:17.121Z", + "namespace": "pd3", "statCode": "droner-kills", "statName": "Droner Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:41:17.121Z", "updatedAt": "2023-11-02T10:22:12.340Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -2993,94 +2993,94 @@ ] }, { + "createdAt": "2022-09-17T07:58:26.993Z", + "namespace": "pd3", "statCode": "enforcer-progression-code", "statName": "Enforcer Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:58:26.993Z", "updatedAt": "2023-11-02T10:22:12.343Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T07:58:01.707Z", + "namespace": "pd3", "statCode": "enforcer-research-code", "statName": "Enforcer Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T07:58:01.707Z", "updatedAt": "2023-11-02T10:22:12.347Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:01:16.452Z", + "namespace": "pd3", "statCode": "engineer-progression-code", "statName": "Engineer Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:01:16.452Z", "updatedAt": "2023-11-02T10:22:12.350Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:00:49.766Z", + "namespace": "pd3", "statCode": "engineer-research-code", "statName": "Engineer Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:00:49.766Z", "updatedAt": "2023-11-02T10:22:12.354Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:06:02.168Z", + "namespace": "pd3", "statCode": "escapist-progression-code", "statName": "Escapist Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:06:02.168Z", "updatedAt": "2023-11-02T10:22:12.358Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:05:36.499Z", + "namespace": "pd3", "statCode": "escapist-research-code", "statName": "Escapist Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:05:36.499Z", "updatedAt": "2023-11-02T10:22:12.362Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-11T08:48:47.277Z", + "namespace": "pd3", "statCode": "field-medic-progression-code", "statName": "Field Medic Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-11T08:48:47.277Z", "updatedAt": "2023-11-02T10:22:12.365Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-11T11:43:08.789Z", + "namespace": "pd3", "statCode": "field-medic-research-code", "statName": "Field Medic Research Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-11T11:43:08.789Z", "updatedAt": "2023-11-02T10:22:12.369Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-10T16:35:58.254Z", + "namespace": "pd3", "statCode": "fieldmedic", "statName": "Field Medic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-10T16:35:58.254Z", "updatedAt": "2023-11-02T10:22:12.373Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:07:34.029Z", + "namespace": "pd3", "statCode": "firstplayable-loud-hard", "statName": "Sharke Bank Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:07:34.029Z", "updatedAt": "2023-11-02T10:22:12.377Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Loud", @@ -3090,22 +3090,22 @@ ] }, { + "createdAt": "2022-05-23T06:49:00.779Z", + "namespace": "pd3", "statCode": "firstplayable-loud-hard-best-time", "statName": "First Playable Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:49:00.779Z", "updatedAt": "2023-11-02T10:22:12.380Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:05:25.656Z", + "namespace": "pd3", "statCode": "firstplayable-loud-normal", "statName": "Sharke Bank Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:05:25.656Z", "updatedAt": "2023-11-02T10:22:12.384Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Loud", @@ -3115,22 +3115,22 @@ ] }, { + "createdAt": "2022-05-23T06:47:58.915Z", + "namespace": "pd3", "statCode": "firstplayable-loud-normal-best-time", "statName": "First Playable Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:47:58.915Z", "updatedAt": "2023-11-02T10:22:12.388Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:14:33.302Z", + "namespace": "pd3", "statCode": "firstplayable-loud-overkill", "statName": "Sharke Bank Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:14:33.302Z", "updatedAt": "2023-11-02T10:22:12.392Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Loud", @@ -3140,22 +3140,22 @@ ] }, { + "createdAt": "2022-05-23T06:51:01.203Z", + "namespace": "pd3", "statCode": "firstplayable-loud-overkill-best-time", "statName": "First Playable Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:51:01.203Z", "updatedAt": "2023-11-02T10:22:12.396Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:11:55.599Z", + "namespace": "pd3", "statCode": "firstplayable-loud-veryhard", "statName": "Sharke Bank Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:11:55.599Z", "updatedAt": "2023-11-02T10:22:12.399Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Sharke", @@ -3165,22 +3165,22 @@ ] }, { + "createdAt": "2022-05-23T06:49:52.560Z", + "namespace": "pd3", "statCode": "firstplayable-loud-veryhard-best-time", "statName": "First Playable Loud Very hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:49:52.560Z", "updatedAt": "2023-11-02T10:22:12.403Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-07-07T11:53:20.678Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout", "statName": "Sharke Bank Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-07-07T11:53:20.678Z", "updatedAt": "2023-11-02T10:22:12.407Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Max", @@ -3189,61 +3189,61 @@ ] }, { + "createdAt": "2023-05-24T07:07:15.888Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout-achievement", "statName": "Sharke Bank Max Payout Achievement", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-05-24T07:07:15.888Z", "updatedAt": "2023-11-02T10:22:12.410Z", "userId": "UserId", + "value": 0.0, "tags": [ "Achievement" ] }, { + "createdAt": "2023-09-05T07:11:21.214Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout-achievement-epic", "statName": "Sharke Bank Max Payout Achievement Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.214Z", "updatedAt": "2023-11-02T10:22:12.414Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.616Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout-achievement-playstation", "statName": "Sharke Bank Max Payout Achievement PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.616Z", "updatedAt": "2023-11-02T10:22:12.418Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.288Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout-achievement-steam", "statName": "Sharke Bank Max Payout Achievement Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.288Z", "updatedAt": "2023-11-02T10:22:12.422Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.296Z", + "namespace": "pd3", "statCode": "firstplayable-max-payout-achievement-xbox", "statName": "Sharke Bank Max Payout Achievement XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.296Z", "updatedAt": "2023-11-02T10:22:12.425Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-07-07T11:57:46.949Z", + "namespace": "pd3", "statCode": "firstplayable-no-downs", "statName": "Sharke Bank No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-07-07T11:57:46.949Z", "updatedAt": "2023-11-02T10:22:12.429Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -3253,58 +3253,58 @@ ] }, { + "createdAt": "2023-02-14T15:02:30.675Z", + "namespace": "pd3", "statCode": "firstplayable-no-hr-computer", "statName": "Sharke Bank No HR Computer", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:02:30.675Z", "updatedAt": "2023-11-02T10:22:12.433Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.987Z", + "namespace": "pd3", "statCode": "firstplayable-no-hr-computer-epic", "statName": "Sharke Bank No HR computer Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.987Z", "updatedAt": "2023-11-02T10:22:12.437Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.623Z", + "namespace": "pd3", "statCode": "firstplayable-no-hr-computer-playstation", "statName": "Sharke Bank No HR computer PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.623Z", "updatedAt": "2023-11-02T10:22:12.440Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.503Z", + "namespace": "pd3", "statCode": "firstplayable-no-hr-computer-steam", "statName": "Sharke Bank No HR Computer Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.503Z", "updatedAt": "2023-11-02T10:22:12.444Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.510Z", + "namespace": "pd3", "statCode": "firstplayable-no-hr-computer-xbox", "statName": "Sharke Bank No HR Computer XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.510Z", "updatedAt": "2023-11-02T10:22:12.448Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-02T10:16:26.723Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-1", "statName": "First Playable Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:16:26.723Z", "updatedAt": "2023-11-02T10:22:12.451Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3313,13 +3313,13 @@ ] }, { + "createdAt": "2023-02-02T10:17:03.236Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-2", "statName": "First Playable Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:17:03.236Z", "updatedAt": "2023-11-02T10:22:12.455Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3328,13 +3328,13 @@ ] }, { + "createdAt": "2023-02-02T10:17:38.663Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-3", "statName": "First Playable Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:17:38.663Z", "updatedAt": "2023-11-02T10:22:12.459Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3343,13 +3343,13 @@ ] }, { + "createdAt": "2023-02-02T10:18:14.983Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-4", "statName": "First Playable Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:18:14.983Z", "updatedAt": "2023-11-02T10:22:12.462Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3358,13 +3358,13 @@ ] }, { + "createdAt": "2023-02-02T10:18:53.164Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-5", "statName": "First Playable Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:18:53.164Z", "updatedAt": "2023-11-02T10:22:12.466Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3373,13 +3373,13 @@ ] }, { + "createdAt": "2023-02-02T10:19:34.735Z", + "namespace": "pd3", "statCode": "firstplayable-optional-objective-6", "statName": "First Playable Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:19:34.735Z", "updatedAt": "2023-11-02T10:22:12.470Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Optional", @@ -3388,13 +3388,13 @@ ] }, { + "createdAt": "2022-05-10T12:17:22.720Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-hard", "statName": "Sharke Bank Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:17:22.720Z", "updatedAt": "2023-11-02T10:22:12.473Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Stealth", @@ -3404,22 +3404,22 @@ ] }, { + "createdAt": "2022-05-23T06:53:01.770Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-hard-best-time", "statName": "First Playable Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:53:01.770Z", "updatedAt": "2023-11-02T10:22:12.477Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:16:05.799Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-normal", "statName": "Sharke Bank Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:16:05.799Z", "updatedAt": "2023-11-02T10:22:12.481Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Stealth", @@ -3429,22 +3429,22 @@ ] }, { + "createdAt": "2022-05-23T06:52:01.070Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-normal-best-time", "statName": "First Playable Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:52:01.070Z", "updatedAt": "2023-11-02T10:22:12.485Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:20:25.601Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-overkill", "statName": "Sharke Bank Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:20:25.601Z", "updatedAt": "2023-11-02T10:22:12.490Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Stealth", @@ -3454,22 +3454,22 @@ ] }, { + "createdAt": "2022-05-23T06:55:42.778Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-overkill-best-time", "statName": "First Playable Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:55:42.778Z", "updatedAt": "2023-11-02T10:22:12.494Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-10T12:19:02.591Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-veryhard", "statName": "Sharke Bank Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-10T12:19:02.591Z", "updatedAt": "2023-11-02T10:22:12.498Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Sharke", @@ -3479,35 +3479,35 @@ ] }, { + "createdAt": "2022-05-23T06:54:43.458Z", + "namespace": "pd3", "statCode": "firstplayable-stealth-veryhard-best-time", "statName": "First Playable Stealth Very hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:54:43.458Z", "updatedAt": "2023-11-02T10:22:12.502Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:04:49.858Z", + "namespace": "pd3", "statCode": "flashbang-affected-enemies", "statName": "Flashbang Affected Enemies", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:04:49.858Z", "updatedAt": "2023-11-02T10:22:12.505Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Flashbang" ] }, { + "createdAt": "2023-01-13T17:03:47.140Z", + "namespace": "pd3", "statCode": "frag-grenade-kills", "statName": "Frag Grenade Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:03:47.140Z", "updatedAt": "2023-11-02T10:22:12.509Z", "userId": "UserId", + "value": 0.0, "tags": [ "Frag", "Combat", @@ -3516,58 +3516,58 @@ ] }, { + "createdAt": "2022-03-22T12:32:24.399Z", + "namespace": "pd3", "statCode": "game-started", "statName": "Game Started", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-03-22T12:32:24.399Z", "updatedAt": "2023-11-02T10:22:12.512Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-11-02T10:19:49.460Z", + "namespace": "pd3", "statCode": "game-started-epic", "statName": "Game Stared Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-11-02T10:19:49.460Z", "updatedAt": "2023-11-02T11:19:18.241Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-11-02T10:19:49.464Z", + "namespace": "pd3", "statCode": "game-started-playstation", "statName": "Game Started PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-11-02T10:19:49.464Z", "updatedAt": "2023-11-02T11:22:32.705Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-11-02T10:19:49.468Z", + "namespace": "pd3", "statCode": "game-started-steam", "statName": "Game Started Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-11-02T10:19:49.468Z", "updatedAt": "2023-11-02T11:21:33.466Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-11-02T10:19:49.472Z", + "namespace": "pd3", "statCode": "game-started-xbox", "statName": "Game Started XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-11-02T10:19:49.472Z", "updatedAt": "2023-11-02T11:19:32.030Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T14:37:19.954Z", + "namespace": "pd3", "statCode": "grenadier-kills", "statName": "Grenadier Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:37:19.954Z", "updatedAt": "2023-11-02T10:22:12.530Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -3575,125 +3575,125 @@ ] }, { + "createdAt": "2022-09-17T08:06:54.193Z", + "namespace": "pd3", "statCode": "grifter-progression-code", "statName": "Grifter Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:06:54.193Z", "updatedAt": "2023-11-02T10:22:12.534Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:06:28.281Z", + "namespace": "pd3", "statCode": "grifter-research-code", "statName": "Grifter Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:06:28.281Z", "updatedAt": "2023-11-02T10:22:12.537Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:07:47.713Z", + "namespace": "pd3", "statCode": "gunslinger-progression-code", "statName": "Gunslinger Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:07:47.713Z", "updatedAt": "2023-11-02T10:22:12.541Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:07:21.634Z", + "namespace": "pd3", "statCode": "gunslinger-research-code", "statName": "Gunslinger Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:07:21.634Z", "updatedAt": "2023-11-02T10:22:12.545Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:42:51.827Z", + "namespace": "pd3", "statCode": "hacker-progression-code", "statName": "Hacker Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:42:51.827Z", "updatedAt": "2023-11-02T10:22:12.549Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:42:07.108Z", + "namespace": "pd3", "statCode": "hacker-research-code", "statName": "Hacker Research Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:42:07.108Z", "updatedAt": "2023-11-02T10:22:12.552Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:45:14.117Z", + "namespace": "pd3", "statCode": "heist-sentry-turret-kills", "statName": "Heist Kill Sentry Turret", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:45:14.117Z", "updatedAt": "2023-11-02T10:22:12.556Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.096Z", + "namespace": "pd3", "statCode": "heist-sentry-turret-kills-epic", "statName": "Heist Sentry Turret Kills Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.096Z", "updatedAt": "2023-11-02T10:22:12.559Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.089Z", + "namespace": "pd3", "statCode": "heist-sentry-turret-kills-playstation", "statName": "Heist Sentry Turret Kills PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.089Z", "updatedAt": "2023-11-02T10:22:12.563Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.030Z", + "namespace": "pd3", "statCode": "heist-sentry-turret-kills-steam", "statName": "Heist Sentry Turrent Kills Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.030Z", "updatedAt": "2023-11-02T10:22:12.566Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.038Z", + "namespace": "pd3", "statCode": "heist-sentry-turret-kills-xbox", "statName": "Heist Sentry Turrent Kills XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.038Z", "updatedAt": "2023-11-02T10:22:12.570Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:25:32.948Z", + "namespace": "pd3", "statCode": "hostages-traded", "statName": "Hostages Traded", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:25:32.948Z", "updatedAt": "2023-11-02T10:22:12.573Z", "userId": "UserId", + "value": 0.0, "tags": [ "Hostage", "Heist" ] }, { + "createdAt": "2023-01-13T16:52:19.583Z", + "namespace": "pd3", "statCode": "human-shield-headshot-kills", "statName": "Human Shield Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T16:52:19.583Z", "updatedAt": "2023-11-02T10:22:12.577Z", "userId": "UserId", + "value": 0.0, "tags": [ "Human", "Shield", @@ -3703,13 +3703,13 @@ ] }, { + "createdAt": "2023-01-13T16:51:21.714Z", + "namespace": "pd3", "statCode": "human-shield-kills", "statName": "Human Shield Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T16:51:21.714Z", "updatedAt": "2023-11-02T10:22:12.581Z", "userId": "UserId", + "value": 0.0, "tags": [ "Human", "Shield", @@ -3718,64 +3718,64 @@ ] }, { + "createdAt": "2022-06-07T11:59:21.134Z", + "namespace": "pd3", "statCode": "infamy-point", "statName": "Infamy Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-07T11:59:21.134Z", "updatedAt": "2023-11-02T10:22:12.584Z", "userId": "UserId", + "value": 0.0, "tags": [ "Infamy" ] }, { + "createdAt": "2022-02-24T14:00:20.717Z", + "namespace": "pd3", "statCode": "infamy-points", "statName": "LEGACY Infamy Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-02-24T14:00:20.717Z", "updatedAt": "2023-11-02T10:22:12.588Z", "userId": "UserId", + "value": 0.0, "tags": [ "Infamy" ] }, { + "createdAt": "2021-10-20T10:50:45.788Z", + "namespace": "pd3", "statCode": "infamylevel", "statName": "Infamy Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2021-10-20T10:50:45.788Z", "updatedAt": "2023-11-02T10:22:12.591Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-09-17T08:09:03.301Z", + "namespace": "pd3", "statCode": "infiltrator-progression-code", "statName": "Infiltrator Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:09:03.301Z", "updatedAt": "2023-11-02T10:22:12.595Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:08:38.667Z", + "namespace": "pd3", "statCode": "infiltrator-research-code", "statName": "Infiltrator Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:08:38.667Z", "updatedAt": "2023-11-02T10:22:12.599Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:17:07.759Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-hard", "statName": "Jewelry Store Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:17:07.759Z", "updatedAt": "2023-11-02T10:22:12.602Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Jewelry", @@ -3784,22 +3784,22 @@ ] }, { + "createdAt": "2022-05-23T06:59:54.363Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-hard-best-time", "statName": "Jewelry Store Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:59:54.363Z", "updatedAt": "2023-11-02T10:22:12.606Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:14:06.591Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-normal", "statName": "Jewelry Store Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:14:06.591Z", "updatedAt": "2023-11-02T10:22:12.609Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Jewelry", @@ -3808,22 +3808,22 @@ ] }, { + "createdAt": "2022-05-23T06:58:48.867Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-normal-best-time", "statName": "Jewelry Store Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T06:58:48.867Z", "updatedAt": "2023-11-02T10:22:12.613Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:21:44.287Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-overkill", "statName": "Jewelry Store Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:21:44.287Z", "updatedAt": "2023-11-02T10:22:12.617Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Jewelry", @@ -3832,22 +3832,22 @@ ] }, { + "createdAt": "2022-05-23T07:02:05.904Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-overkill-best-time", "statName": "Jewelry Store Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:02:05.904Z", "updatedAt": "2023-11-02T10:22:12.620Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:18:38.180Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-veryhard", "statName": "Jewelry Store Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:18:38.180Z", "updatedAt": "2023-11-02T10:22:12.624Z", "userId": "UserId", + "value": 0.0, "tags": [ "Loud", "Jewelry", @@ -3857,22 +3857,22 @@ ] }, { + "createdAt": "2022-05-23T07:01:11.949Z", + "namespace": "pd3", "statCode": "jewelrystore-loud-veryhard-best-time", "statName": "Jewelry Store Loud Very hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:01:11.949Z", "updatedAt": "2023-11-02T10:22:12.628Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T09:41:20.842Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout", "statName": "Jewelry Store Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T09:41:20.842Z", "updatedAt": "2023-11-02T10:22:12.631Z", "userId": "UserId", + "value": 0.0, "tags": [ "Max", "Payout", @@ -3881,61 +3881,61 @@ ] }, { + "createdAt": "2023-05-24T07:05:03.188Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout-achievement", "statName": "Jewelry Store Max Payout Achievement", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-05-24T07:05:03.188Z", "updatedAt": "2023-11-02T10:22:12.635Z", "userId": "UserId", + "value": 0.0, "tags": [ "Achievement" ] }, { + "createdAt": "2023-09-05T07:11:21.119Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout-achievement-epic", "statName": "Jewelry Store Max Payout Achievement Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.119Z", "updatedAt": "2023-11-02T10:22:12.639Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.895Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout-achievement-playstation", "statName": "Jewelry Store Max Payout Achievement PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.895Z", "updatedAt": "2023-11-02T10:22:12.643Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.104Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout-achievement-steam", "statName": "Jewelry Store Max Payout Achievement Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.104Z", "updatedAt": "2023-11-02T10:22:12.646Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.112Z", + "namespace": "pd3", "statCode": "jewelrystore-max-payout-achievement-xbox", "statName": "Jewelry Store Max Payout Achievement XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.112Z", "updatedAt": "2023-11-02T10:22:12.650Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T10:35:51.757Z", + "namespace": "pd3", "statCode": "jewelrystore-no-downs", "statName": "Jewelry Store No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T10:35:51.757Z", "updatedAt": "2023-11-02T10:22:12.654Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -3944,13 +3944,13 @@ ] }, { + "createdAt": "2023-02-02T09:48:53.726Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-1", "statName": "Jewelry Store Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:48:53.726Z", "updatedAt": "2023-11-02T10:22:12.658Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -3958,13 +3958,13 @@ ] }, { + "createdAt": "2023-02-02T09:49:35.289Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-2", "statName": "Jewelry Store Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:49:35.289Z", "updatedAt": "2023-11-02T10:22:12.662Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -3972,13 +3972,13 @@ ] }, { + "createdAt": "2023-02-02T09:50:11.199Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-3", "statName": "Jewelry Store Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:50:11.199Z", "updatedAt": "2023-11-02T10:22:12.665Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -3986,13 +3986,13 @@ ] }, { + "createdAt": "2023-02-02T09:50:46.949Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-4", "statName": "Jewelry Store Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:50:46.949Z", "updatedAt": "2023-11-02T10:22:12.669Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -4000,13 +4000,13 @@ ] }, { + "createdAt": "2023-02-02T09:51:30.556Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-5", "statName": "Jewelry Store Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:51:30.556Z", "updatedAt": "2023-11-02T10:22:12.672Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -4014,13 +4014,13 @@ ] }, { + "createdAt": "2023-02-02T09:52:08.056Z", + "namespace": "pd3", "statCode": "jewelrystore-optional-objective-6", "statName": "Jewelry Store Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T09:52:08.056Z", "updatedAt": "2023-11-02T10:22:12.676Z", "userId": "UserId", + "value": 0.0, "tags": [ "Optional", "Jewelry", @@ -4028,58 +4028,58 @@ ] }, { + "createdAt": "2023-02-14T15:03:05.958Z", + "namespace": "pd3", "statCode": "jewelrystore-speed-run", "statName": "Jewelry Store Speed Run", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:03:05.958Z", "updatedAt": "2023-11-02T10:22:12.680Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.206Z", + "namespace": "pd3", "statCode": "jewelrystore-speed-run-epic", "statName": "Jewelry Store Speed Run Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.206Z", "updatedAt": "2023-11-02T10:22:12.683Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.197Z", + "namespace": "pd3", "statCode": "jewelrystore-speed-run-playstation", "statName": "Jewelry Store Speed Run PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.197Z", "updatedAt": "2023-11-02T10:22:12.687Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.126Z", + "namespace": "pd3", "statCode": "jewelrystore-speed-run-steam", "statName": "Jewelry Store Speed Run Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.126Z", "updatedAt": "2023-11-02T10:22:12.690Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.133Z", + "namespace": "pd3", "statCode": "jewelrystore-speed-run-xbox", "statName": "Jewelry Store Speed Run XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.133Z", "updatedAt": "2023-11-02T10:22:12.694Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:53:00.767Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-hard", "statName": "Jewelry Store Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:53:00.767Z", "updatedAt": "2023-11-02T10:22:12.697Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Jewelry", @@ -4088,22 +4088,22 @@ ] }, { + "createdAt": "2022-05-23T07:06:00.336Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-hard-best-time", "statName": "Jewelry Store Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:06:00.336Z", "updatedAt": "2023-11-02T10:22:12.701Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:51:31.644Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-normal", "statName": "Jewelry Store Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:51:31.644Z", "updatedAt": "2023-11-02T10:22:12.705Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Jewelry", @@ -4112,22 +4112,22 @@ ] }, { + "createdAt": "2022-05-23T07:04:58.966Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-normal-best-time", "statName": "Jewelry Store Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:04:58.966Z", "updatedAt": "2023-11-02T10:22:12.709Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:57:48.336Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-overkill", "statName": "Jewelry Store Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:57:48.336Z", "updatedAt": "2023-11-02T10:22:12.712Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Jewelry", @@ -4136,22 +4136,22 @@ ] }, { + "createdAt": "2022-05-23T07:08:29.865Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-overkill-best-time", "statName": "Jewelry Store Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:08:29.865Z", "updatedAt": "2023-11-02T10:22:12.716Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-04-14T11:56:45.146Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-veryhard", "statName": "Jewelry Store Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-04-14T11:56:45.146Z", "updatedAt": "2023-11-02T10:22:12.720Z", "userId": "UserId", + "value": 0.0, "tags": [ "Stealth", "Jewelry", @@ -4161,22 +4161,22 @@ ] }, { + "createdAt": "2022-05-23T07:07:25.167Z", + "namespace": "pd3", "statCode": "jewelrystore-stealth-veryhard-best-time", "statName": "Jewelry Store Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T07:07:25.167Z", "updatedAt": "2023-11-02T10:22:12.726Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:27:32.086Z", + "namespace": "pd3", "statCode": "jump-headshot-kills", "statName": "Jump Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:27:32.086Z", "updatedAt": "2023-11-02T10:22:12.729Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -4185,13 +4185,13 @@ ] }, { + "createdAt": "2023-01-13T15:01:47.819Z", + "namespace": "pd3", "statCode": "jump-kills", "statName": "Jump Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:01:47.819Z", "updatedAt": "2023-11-02T10:22:12.733Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Jump", @@ -4199,114 +4199,114 @@ ] }, { + "createdAt": "2022-02-11T16:47:51.159Z", + "namespace": "pd3", "statCode": "local-exp-for-test", "statName": "local exp val", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-02-11T16:47:51.159Z", "updatedAt": "2023-11-02T10:22:12.737Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-21T15:15:16.461Z", + "namespace": "pd3", "statCode": "lock-picked", "statName": "Locks Picked", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-21T15:15:16.461Z", "updatedAt": "2023-11-02T10:22:12.741Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Lock" ] }, { + "createdAt": "2022-02-24T10:38:54.745Z", + "namespace": "pd3", "statCode": "locks-picked", "statName": "DEPRECATED Locks Picked", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-02-24T10:38:54.745Z", "updatedAt": "2023-11-02T10:22:12.744Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Lock" ] }, { + "createdAt": "2022-09-17T08:09:57.196Z", + "namespace": "pd3", "statCode": "manipulator-progression-code", "statName": "Manipulator Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:09:57.196Z", "updatedAt": "2023-11-02T10:22:12.748Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:09:33.634Z", + "namespace": "pd3", "statCode": "manipulator-research-code", "statName": "Manipulator Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:09:33.634Z", "updatedAt": "2023-11-02T10:22:12.752Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:30:35.603Z", + "namespace": "pd3", "statCode": "mark-camera", "statName": "Mark Security Cameras", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:30:35.603Z", "updatedAt": "2023-11-02T10:22:12.756Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Camera" ] }, { + "createdAt": "2023-01-13T14:31:49.546Z", + "namespace": "pd3", "statCode": "mark-guard", "statName": "Mark Security Guards", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:31:49.546Z", "updatedAt": "2023-11-02T10:22:12.760Z", "userId": "UserId", + "value": 0.0, "tags": [ "Guard", "Heist" ] }, { + "createdAt": "2023-01-13T14:33:03.502Z", + "namespace": "pd3", "statCode": "mark-sensor", "statName": "Mark Using Sensor", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:33:03.502Z", "updatedAt": "2023-11-02T10:22:12.763Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Sensor" ] }, { + "createdAt": "2023-01-23T09:13:41.751Z", + "namespace": "pd3", "statCode": "marksman-a114-ads-kills", "statName": "A114 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:13:41.751Z", "updatedAt": "2023-11-02T10:22:12.767Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:13:19.117Z", + "namespace": "pd3", "statCode": "marksman-a114-armored-headshot-kills", "statName": "A114 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:13:19.117Z", "updatedAt": "2023-11-02T10:22:12.770Z", "userId": "UserId", + "value": 0.0, "tags": [ "Armor", "Combat", @@ -4316,22 +4316,22 @@ ] }, { + "createdAt": "2023-02-08T16:08:31.043Z", + "namespace": "pd3", "statCode": "marksman-a114-four-mods-equipped", "statName": "A114 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:08:31.043Z", "updatedAt": "2023-11-02T10:22:12.774Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:52:49.655Z", + "namespace": "pd3", "statCode": "marksman-a114-full-mod-unlock", "statName": "A114 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:52:49.655Z", "updatedAt": "2023-11-02T10:22:12.778Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -4340,13 +4340,13 @@ ] }, { + "createdAt": "2022-11-15T14:55:07.756Z", + "namespace": "pd3", "statCode": "marksman-a114-headshot-kills", "statName": "A114 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:55:07.756Z", "updatedAt": "2023-11-02T10:22:12.782Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -4355,22 +4355,22 @@ ] }, { + "createdAt": "2023-03-06T14:48:04.730Z", + "namespace": "pd3", "statCode": "marksman-a114-hipfire-kills", "statName": "A114 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:48:04.730Z", "updatedAt": "2023-11-02T10:22:12.785Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:13:05.272Z", + "namespace": "pd3", "statCode": "marksman-a114-kills", "statName": "A114 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:13:05.272Z", "updatedAt": "2023-11-02T10:22:12.789Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -4378,22 +4378,22 @@ ] }, { + "createdAt": "2023-03-06T15:14:13.138Z", + "namespace": "pd3", "statCode": "marksman-a114-longrange-kills", "statName": "A114 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:14:13.138Z", "updatedAt": "2023-11-02T10:22:12.793Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:32:44.663Z", + "namespace": "pd3", "statCode": "marksman-a114-mod-equipped", "statName": "A114 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:32:44.663Z", "updatedAt": "2023-11-02T10:22:12.797Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -4402,67 +4402,67 @@ ] }, { + "createdAt": "2023-03-06T14:37:33.153Z", + "namespace": "pd3", "statCode": "marksman-a114-noreload-kills", "statName": "A114 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:37:33.153Z", "updatedAt": "2023-11-02T10:22:12.801Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:41:25.554Z", + "namespace": "pd3", "statCode": "marksman-a114-specialenemies-kills", "statName": "A114 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:41:25.554Z", "updatedAt": "2023-11-02T10:22:12.805Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:23:17.916Z", + "namespace": "pd3", "statCode": "marksman-a114-suppressor-kills", "statName": "A114 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:23:17.916Z", "updatedAt": "2023-11-02T10:22:12.809Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:32:22.279Z", + "namespace": "pd3", "statCode": "marksman-a114-twoenemies-kills", "statName": "A114 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:32:22.279Z", "updatedAt": "2023-11-02T10:22:12.813Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:19:12.101Z", + "namespace": "pd3", "statCode": "marksman-a114-weapon-level", "statName": "A114 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:19:12.101Z", "updatedAt": "2023-11-02T10:22:12.817Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:06:42.121Z", + "namespace": "pd3", "statCode": "marksman-a114-weapon-points", "statName": "A114 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:06:42.121Z", "updatedAt": "2023-11-02T10:22:12.821Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:27:48.360Z", + "namespace": "pd3", "statCode": "marksman-m14-headshot-kills", "statName": "Deprecated M14 EBR Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:27:48.360Z", "updatedAt": "2023-11-02T10:22:12.825Z", "userId": "UserId", + "value": 0.0, "tags": [ "M14", "EBR", @@ -4472,13 +4472,13 @@ ] }, { + "createdAt": "2022-06-20T11:38:12.021Z", + "namespace": "pd3", "statCode": "marksman-m14-kills", "statName": "Deprecated M14 EBR Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:38:12.021Z", "updatedAt": "2023-11-02T10:22:12.828Z", "userId": "UserId", + "value": 0.0, "tags": [ "M14", "EBR", @@ -4487,31 +4487,31 @@ ] }, { + "createdAt": "2022-06-27T07:00:26.609Z", + "namespace": "pd3", "statCode": "marksman-m14-weapon-level", "statName": "M14 EBR Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:00:26.609Z", "updatedAt": "2023-11-02T10:22:12.832Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T06:59:41.033Z", + "namespace": "pd3", "statCode": "marksman-m14-weapon-points", "statName": "M14 EBR Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T06:59:41.033Z", "updatedAt": "2023-11-02T10:22:12.836Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:30:12.466Z", + "namespace": "pd3", "statCode": "marksman-r700-headshot-kills", "statName": "Deprecated Remington R700 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:30:12.466Z", "updatedAt": "2023-11-02T10:22:12.840Z", "userId": "UserId", + "value": 0.0, "tags": [ "R700", "Combat", @@ -4521,13 +4521,13 @@ ] }, { + "createdAt": "2022-06-20T11:41:49.348Z", + "namespace": "pd3", "statCode": "marksman-r700-kills", "statName": "Deprecated Remingtion R700 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:41:49.348Z", "updatedAt": "2023-11-02T10:22:12.844Z", "userId": "UserId", + "value": 0.0, "tags": [ "R700", "Combat", @@ -4536,58 +4536,58 @@ ] }, { + "createdAt": "2022-06-27T07:01:50.447Z", + "namespace": "pd3", "statCode": "marksman-r700-weapon-level", "statName": "Remington R700 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:01:50.447Z", "updatedAt": "2023-11-02T10:22:12.847Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:01:08.813Z", + "namespace": "pd3", "statCode": "marksman-r700-weapon-points", "statName": "Remington R700 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:01:08.813Z", "updatedAt": "2023-11-02T10:22:12.851Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:14:09.024Z", + "namespace": "pd3", "statCode": "marksman-r900s-ads-kills", "statName": "R900S Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:14:09.024Z", "updatedAt": "2023-11-02T10:22:12.855Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:00:24.601Z", + "namespace": "pd3", "statCode": "marksman-r900s-armored-headshot-kills", "statName": "R900S Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:00:24.601Z", "updatedAt": "2023-11-02T10:22:12.859Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:08:56.187Z", + "namespace": "pd3", "statCode": "marksman-r900s-four-mods-equipped", "statName": "R900S Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:08:56.187Z", "updatedAt": "2023-11-02T10:22:12.863Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:53:44.787Z", + "namespace": "pd3", "statCode": "marksman-r900s-full-mod-unlock", "statName": "R900S Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:53:44.787Z", "updatedAt": "2023-11-02T10:22:12.867Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "R900S", @@ -4596,13 +4596,13 @@ ] }, { + "createdAt": "2022-11-15T14:56:16.417Z", + "namespace": "pd3", "statCode": "marksman-r900s-headshot-kills", "statName": "R900S Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:56:16.417Z", "updatedAt": "2023-11-02T10:22:12.871Z", "userId": "UserId", + "value": 0.0, "tags": [ "R900S", "Combat", @@ -4611,22 +4611,22 @@ ] }, { + "createdAt": "2023-03-06T14:48:30.791Z", + "namespace": "pd3", "statCode": "marksman-r900s-hipfire-kills", "statName": "R900S Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:48:30.791Z", "updatedAt": "2023-11-02T10:22:12.875Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:14:12.568Z", + "namespace": "pd3", "statCode": "marksman-r900s-kills", "statName": "R900S Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:14:12.568Z", "updatedAt": "2023-11-02T10:22:12.879Z", "userId": "UserId", + "value": 0.0, "tags": [ "R900S", "Combat", @@ -4634,13 +4634,13 @@ ] }, { + "createdAt": "2023-01-13T18:14:15.146Z", + "namespace": "pd3", "statCode": "marksman-r900s-longrange-kills", "statName": "R900S Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:14:15.146Z", "updatedAt": "2023-11-02T10:22:12.883Z", "userId": "UserId", + "value": 0.0, "tags": [ "R900S", "Combat", @@ -4650,13 +4650,13 @@ ] }, { + "createdAt": "2023-01-16T08:34:12.956Z", + "namespace": "pd3", "statCode": "marksman-r900s-mod-equipped", "statName": "R900S Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:34:12.956Z", "updatedAt": "2023-11-02T10:22:12.887Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -4665,67 +4665,67 @@ ] }, { + "createdAt": "2023-03-06T14:39:16.271Z", + "namespace": "pd3", "statCode": "marksman-r900s-noreload-kills", "statName": "R900S No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:39:16.271Z", "updatedAt": "2023-11-02T10:22:12.891Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:41:42.108Z", + "namespace": "pd3", "statCode": "marksman-r900s-specialenemies-kills", "statName": "R900S Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:41:42.108Z", "updatedAt": "2023-11-02T10:22:12.895Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:23:39.779Z", + "namespace": "pd3", "statCode": "marksman-r900s-suppressor-kills", "statName": "R900S Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:23:39.779Z", "updatedAt": "2023-11-02T10:22:12.899Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:32:38.533Z", + "namespace": "pd3", "statCode": "marksman-r900s-twoenemies-kills", "statName": "R900S Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:32:38.533Z", "updatedAt": "2023-11-02T10:22:12.902Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:19:44.064Z", + "namespace": "pd3", "statCode": "marksman-r900s-weapon-level", "statName": "R900S Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:19:44.064Z", "updatedAt": "2023-11-02T10:22:12.906Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:07:23.008Z", + "namespace": "pd3", "statCode": "marksman-r900s-weapon-points", "statName": "R900S Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:07:23.008Z", "updatedAt": "2023-11-02T10:22:12.910Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:29:10.787Z", + "namespace": "pd3", "statCode": "marksman-svdm-headshot-kills", "statName": "Deprecated SVDM 7.62 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:29:10.787Z", "updatedAt": "2023-11-02T10:22:12.914Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SVDM", @@ -4734,13 +4734,13 @@ ] }, { + "createdAt": "2022-06-20T11:39:08.000Z", + "namespace": "pd3", "statCode": "marksman-svdm-kills", "statName": "Deprecated SVDM 7.62 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:39:08.000Z", "updatedAt": "2023-11-02T10:22:12.917Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SVDM", @@ -4748,130 +4748,130 @@ ] }, { + "createdAt": "2022-06-27T07:03:35.624Z", + "namespace": "pd3", "statCode": "marksman-svdm-weapon-level", "statName": "SVDM 7.62 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:03:35.624Z", "updatedAt": "2023-11-02T10:22:12.921Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:03:01.160Z", + "namespace": "pd3", "statCode": "marksman-svdm-weapon-points", "statName": "SVDM 7.62 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:03:01.160Z", "updatedAt": "2023-11-02T10:22:12.925Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:44:30.839Z", + "namespace": "pd3", "statCode": "mask-on", "statName": "Mask On", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:44:30.839Z", "updatedAt": "2023-11-02T10:22:12.928Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:19.920Z", + "namespace": "pd3", "statCode": "mask-on-epic", "statName": "Mask On Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:19.920Z", "updatedAt": "2023-11-02T10:22:12.932Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.608Z", + "namespace": "pd3", "statCode": "mask-on-playstation", "statName": "Mask On PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.608Z", "updatedAt": "2023-11-02T10:22:12.936Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.586Z", + "namespace": "pd3", "statCode": "mask-on-steam", "statName": "Mask On Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.586Z", "updatedAt": "2023-11-02T10:22:12.940Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.300Z", + "namespace": "pd3", "statCode": "mask-on-xbox", "statName": "Mask On XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.300Z", "updatedAt": "2023-11-02T10:22:12.943Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:10:44.832Z", + "namespace": "pd3", "statCode": "medic-progression-code", "statName": "Medic Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:10:44.832Z", "updatedAt": "2023-11-02T10:22:12.947Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:10:20.683Z", + "namespace": "pd3", "statCode": "medic-research-code", "statName": "Medic Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:10:20.683Z", "updatedAt": "2023-11-02T10:22:12.951Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:49:15.710Z", + "namespace": "pd3", "statCode": "micro-camera-progression-code", "statName": "Micro Camera Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:49:15.710Z", "updatedAt": "2023-11-02T10:22:12.955Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:48:42.411Z", + "namespace": "pd3", "statCode": "micro-camera-research-code", "statName": "Micro Camera Research Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:48:42.411Z", "updatedAt": "2023-11-02T10:22:12.959Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:11:31.110Z", + "namespace": "pd3", "statCode": "mower-progression-code", "statName": "Mower Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:11:31.110Z", "updatedAt": "2023-11-02T10:22:12.963Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:11:07.553Z", + "namespace": "pd3", "statCode": "mower-research-code", "statName": "Mower Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:11:07.553Z", "updatedAt": "2023-11-02T10:22:12.966Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:18:26.185Z", + "namespace": "pd3", "statCode": "nightclub-loud-hard", "statName": "Night Club Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:18:26.185Z", "updatedAt": "2023-11-02T10:22:12.970Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Club", @@ -4881,22 +4881,22 @@ ] }, { + "createdAt": "2022-12-06T13:32:43.785Z", + "namespace": "pd3", "statCode": "nightclub-loud-hard-best-time", "statName": "Night Club Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:32:43.785Z", "updatedAt": "2023-11-02T10:22:12.974Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T13:17:00.387Z", + "namespace": "pd3", "statCode": "nightclub-loud-normal", "statName": "Night Club Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T13:17:00.387Z", "updatedAt": "2023-11-02T10:22:12.978Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Club", @@ -4906,22 +4906,22 @@ ] }, { + "createdAt": "2022-12-06T13:32:24.792Z", + "namespace": "pd3", "statCode": "nightclub-loud-normal-best-time", "statName": "Night Club Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:32:24.792Z", "updatedAt": "2023-11-02T10:22:12.982Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:28:52.957Z", + "namespace": "pd3", "statCode": "nightclub-loud-overkill", "statName": "Night Club Loud Overkill", + "updatedAt": "2023-11-02T10:22:12.986Z", + "userId": "UserId", "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:28:52.957Z", - "updatedAt": "2023-11-02T10:22:12.986Z", - "userId": "UserId", "tags": [ "Night", "Club", @@ -4931,22 +4931,22 @@ ] }, { + "createdAt": "2022-12-06T13:33:27.507Z", + "namespace": "pd3", "statCode": "nightclub-loud-overkill-best-time", "statName": "Night Club Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:33:27.507Z", "updatedAt": "2023-11-02T10:22:12.989Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:26:16.475Z", + "namespace": "pd3", "statCode": "nightclub-loud-veryhard", "statName": "Night Club Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:26:16.475Z", "updatedAt": "2023-11-02T10:22:12.993Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Loud", @@ -4956,22 +4956,22 @@ ] }, { + "createdAt": "2022-12-06T13:33:05.993Z", + "namespace": "pd3", "statCode": "nightclub-loud-veryhard-best-time", "statName": "Night Club Loud Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:33:05.993Z", "updatedAt": "2023-11-02T10:22:12.997Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T12:41:16.865Z", + "namespace": "pd3", "statCode": "nightclub-max-payout", "statName": "Night Club Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:41:16.865Z", "updatedAt": "2023-11-02T10:22:13.001Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Max", @@ -4981,13 +4981,13 @@ ] }, { + "createdAt": "2022-06-16T12:42:31.818Z", + "namespace": "pd3", "statCode": "nightclub-no-downs", "statName": "Night Club No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:42:31.818Z", "updatedAt": "2023-11-02T10:22:13.006Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -4997,58 +4997,58 @@ ] }, { + "createdAt": "2023-02-14T15:03:29.768Z", + "namespace": "pd3", "statCode": "nightclub-no-id-vip-area", "statName": "Night Club No ID VIP Area", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:03:29.768Z", "updatedAt": "2023-11-02T10:22:13.010Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.310Z", + "namespace": "pd3", "statCode": "nightclub-no-id-vip-area-epic", "statName": "Night Club No ID VIP Area Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.310Z", "updatedAt": "2023-11-02T10:22:13.014Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.904Z", + "namespace": "pd3", "statCode": "nightclub-no-id-vip-area-playstation", "statName": "Night Club No ID VIP Area PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.904Z", "updatedAt": "2023-11-02T10:22:13.018Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.225Z", + "namespace": "pd3", "statCode": "nightclub-no-id-vip-area-steam", "statName": "Night Club No ID VIP Area Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.225Z", "updatedAt": "2023-11-02T10:22:13.021Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.303Z", + "namespace": "pd3", "statCode": "nightclub-no-id-vip-area-xbox", "statName": "Night Club No ID Vip Area XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.303Z", "updatedAt": "2023-11-02T10:22:13.025Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-02T10:11:17.552Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-1", "statName": "Nightclub Optional Objective 1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:11:17.552Z", "updatedAt": "2023-11-02T10:22:13.029Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5057,13 +5057,13 @@ ] }, { + "createdAt": "2023-02-02T10:13:08.052Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-2", "statName": "Nightclub Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:13:08.052Z", "updatedAt": "2023-11-02T10:22:13.033Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5072,13 +5072,13 @@ ] }, { + "createdAt": "2023-02-02T10:13:49.653Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-3", "statName": "Nightclub Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:13:49.653Z", "updatedAt": "2023-11-02T10:22:13.037Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5087,13 +5087,13 @@ ] }, { + "createdAt": "2023-02-02T10:14:30.572Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-4", "statName": "Nightclub Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:14:30.572Z", "updatedAt": "2023-11-02T10:22:13.041Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5102,13 +5102,13 @@ ] }, { + "createdAt": "2023-02-02T10:15:11.219Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-5", "statName": "Nightclub Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:15:11.219Z", "updatedAt": "2023-11-02T10:22:13.045Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5117,13 +5117,13 @@ ] }, { + "createdAt": "2023-02-02T10:15:49.042Z", + "namespace": "pd3", "statCode": "nightclub-optional-objective-6", "statName": "Nightclub Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:15:49.042Z", "updatedAt": "2023-11-02T10:22:13.049Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Optional", @@ -5132,13 +5132,13 @@ ] }, { + "createdAt": "2022-06-13T14:34:46.933Z", + "namespace": "pd3", "statCode": "nightclub-stealth-hard", "statName": "Night Club Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:34:46.933Z", "updatedAt": "2023-11-02T10:22:13.052Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Club", @@ -5148,22 +5148,22 @@ ] }, { + "createdAt": "2022-12-06T13:34:30.906Z", + "namespace": "pd3", "statCode": "nightclub-stealth-hard-best-time", "statName": "Night Club Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:34:30.906Z", "updatedAt": "2023-11-02T10:22:13.056Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:32:01.191Z", + "namespace": "pd3", "statCode": "nightclub-stealth-normal", "statName": "Night Club Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:32:01.191Z", "updatedAt": "2023-11-02T10:22:13.060Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Club", @@ -5173,22 +5173,22 @@ ] }, { + "createdAt": "2022-12-06T13:33:56.169Z", + "namespace": "pd3", "statCode": "nightclub-stealth-normal-best-time", "statName": "Night Club Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:33:56.169Z", "updatedAt": "2023-11-02T10:22:13.064Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:37:09.928Z", + "namespace": "pd3", "statCode": "nightclub-stealth-overkill", "statName": "Night Club Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:37:09.928Z", "updatedAt": "2023-11-02T10:22:13.068Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Club", @@ -5198,22 +5198,22 @@ ] }, { + "createdAt": "2022-12-06T13:35:12.814Z", + "namespace": "pd3", "statCode": "nightclub-stealth-overkill-best-time", "statName": "Night Club Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:35:12.814Z", "updatedAt": "2023-11-02T10:22:13.072Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T14:36:03.274Z", + "namespace": "pd3", "statCode": "nightclub-stealth-veryhard", "statName": "Night Club Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T14:36:03.274Z", "updatedAt": "2023-11-02T10:22:13.076Z", "userId": "UserId", + "value": 0.0, "tags": [ "Night", "Stealth", @@ -5223,67 +5223,67 @@ ] }, { + "createdAt": "2022-12-06T13:34:52.447Z", + "namespace": "pd3", "statCode": "nightclub-stealth-veryhard-best-time", "statName": "Night Club Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:34:52.447Z", "updatedAt": "2023-11-02T10:22:13.080Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T15:03:49.756Z", + "namespace": "pd3", "statCode": "nightclub-survived-assaults", "statName": "Night Club Survived Assaults", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:03:49.756Z", "updatedAt": "2023-11-02T10:22:13.084Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.425Z", + "namespace": "pd3", "statCode": "nightclub-survived-assaults-epic", "statName": "Night Club Survived Assaults Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.425Z", "updatedAt": "2023-11-02T10:22:13.087Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.403Z", + "namespace": "pd3", "statCode": "nightclub-survived-assaults-playstation", "statName": "Night Club Survived Assaults PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.403Z", "updatedAt": "2023-11-02T10:22:13.091Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.316Z", + "namespace": "pd3", "statCode": "nightclub-survived-assaults-steam", "statName": "Night Club Survived Assaults Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.316Z", "updatedAt": "2023-11-02T10:22:13.095Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.324Z", + "namespace": "pd3", "statCode": "nightclub-survived-assaults-xbox", "statName": "Night Club Survived Assaults XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.324Z", "updatedAt": "2023-11-02T10:22:13.100Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:41:16.006Z", + "namespace": "pd3", "statCode": "overkill-cgm4-headshot-kills", "statName": "Deprecated GRG M86 M4 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:41:16.006Z", "updatedAt": "2023-11-02T10:22:13.104Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "GRG", @@ -5292,13 +5292,13 @@ ] }, { + "createdAt": "2022-06-20T11:55:21.029Z", + "namespace": "pd3", "statCode": "overkill-cgm4-kills", "statName": "Deprecated GRG M86 M4 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:55:21.029Z", "updatedAt": "2023-11-02T10:22:13.107Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "GRG", @@ -5306,31 +5306,31 @@ ] }, { + "createdAt": "2022-06-27T07:05:55.316Z", + "namespace": "pd3", "statCode": "overkill-cgm4-weapon-level", "statName": "GRG M86 M4 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:05:55.316Z", "updatedAt": "2023-11-02T10:22:13.111Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:04:59.106Z", + "namespace": "pd3", "statCode": "overkill-cgm4-weapon-points", "statName": "GRG M86 M4 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:04:59.106Z", "updatedAt": "2023-11-02T10:22:13.115Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:42:10.580Z", + "namespace": "pd3", "statCode": "overkill-gm6-headshot-kills", "statName": "Deprecated GM6 Lynx Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:42:10.580Z", "updatedAt": "2023-11-02T10:22:13.119Z", "userId": "UserId", + "value": 0.0, "tags": [ "GM6", "Lynx", @@ -5340,13 +5340,13 @@ ] }, { + "createdAt": "2022-06-20T11:56:40.754Z", + "namespace": "pd3", "statCode": "overkill-gm6-kills", "statName": "Deprecated GM6 Lynx Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:56:40.754Z", "updatedAt": "2023-11-02T10:22:13.123Z", "userId": "UserId", + "value": 0.0, "tags": [ "GM6", "Lynx", @@ -5355,49 +5355,49 @@ ] }, { + "createdAt": "2022-06-27T07:08:11.032Z", + "namespace": "pd3", "statCode": "overkill-gm6-weapon-level", "statName": "GM6 Lynx Weapon Points", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:08:11.032Z", "updatedAt": "2023-11-02T10:22:13.127Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:07:17.798Z", + "namespace": "pd3", "statCode": "overkill-gm6-weapon-points", "statName": "GM6 Lynx Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:07:17.798Z", "updatedAt": "2023-11-02T10:22:13.130Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:17:34.128Z", + "namespace": "pd3", "statCode": "overkill-het5-ads-kills", "statName": "HET5 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:17:34.128Z", "updatedAt": "2023-11-02T10:22:13.134Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:04:09.298Z", + "namespace": "pd3", "statCode": "overkill-het5-armored-headshot-kills", "statName": "HET5 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:04:09.298Z", "updatedAt": "2023-11-02T10:22:13.138Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T15:08:22.100Z", + "namespace": "pd3", "statCode": "overkill-het5-headshot-kills", "statName": "HET5 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:08:22.100Z", "updatedAt": "2023-11-02T10:22:13.142Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -5406,22 +5406,22 @@ ] }, { + "createdAt": "2023-03-06T14:51:44.750Z", + "namespace": "pd3", "statCode": "overkill-het5-hipfire-kills", "statName": "HET5 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:51:44.750Z", "updatedAt": "2023-11-02T10:22:13.145Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:35:31.200Z", + "namespace": "pd3", "statCode": "overkill-het5-kills", "statName": "HET5 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:35:31.200Z", "updatedAt": "2023-11-02T10:22:13.149Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -5429,31 +5429,31 @@ ] }, { + "createdAt": "2023-03-06T15:16:53.944Z", + "namespace": "pd3", "statCode": "overkill-het5-longrange-kills", "statName": "HET5 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:16:53.944Z", "updatedAt": "2023-11-02T10:22:13.153Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T14:43:52.020Z", + "namespace": "pd3", "statCode": "overkill-het5-noreload-kills", "statName": "HET5 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:43:52.020Z", "updatedAt": "2023-11-02T10:22:13.156Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:22:22.636Z", + "namespace": "pd3", "statCode": "overkill-het5-specialenemies-kills", "statName": "HET5 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:22:22.636Z", "updatedAt": "2023-11-02T10:22:13.160Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Special", @@ -5462,40 +5462,40 @@ ] }, { + "createdAt": "2023-03-06T15:24:56.538Z", + "namespace": "pd3", "statCode": "overkill-het5-suppressor-kills", "statName": "HET5 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:24:56.538Z", "updatedAt": "2023-11-02T10:22:13.164Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:34:35.374Z", + "namespace": "pd3", "statCode": "overkill-het5-twoenemies-kills", "statName": "HET5 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:34:35.374Z", "updatedAt": "2023-11-02T10:22:13.168Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-08T10:04:49.479Z", + "namespace": "pd3", "statCode": "overkill-het5-weapon-points", "statName": "HET5 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-08T10:04:49.479Z", "updatedAt": "2023-11-02T10:22:13.171Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:40:28.630Z", + "namespace": "pd3", "statCode": "overkill-m32a1-headshot-kills", "statName": "Deprecated M32 MGL Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:40:28.630Z", "updatedAt": "2023-11-02T10:22:13.175Z", "userId": "UserId", + "value": 0.0, "tags": [ "MGL", "Combat", @@ -5505,13 +5505,13 @@ ] }, { + "createdAt": "2022-06-20T11:54:29.011Z", + "namespace": "pd3", "statCode": "overkill-m32a1-kills", "statName": "Deprecated M32 MGL Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:54:29.011Z", "updatedAt": "2023-11-02T10:22:13.178Z", "userId": "UserId", + "value": 0.0, "tags": [ "MGL", "Combat", @@ -5520,31 +5520,31 @@ ] }, { + "createdAt": "2022-06-27T07:09:34.411Z", + "namespace": "pd3", "statCode": "overkill-m32a1-weapon-level", "statName": "M32 MGL Weapon level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:09:34.411Z", "updatedAt": "2023-11-02T10:22:13.182Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:08:51.353Z", + "namespace": "pd3", "statCode": "overkill-m32a1-weapon-points", "statName": "M32 MGL", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:08:51.353Z", "updatedAt": "2023-11-02T10:22:13.186Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T15:07:31.446Z", + "namespace": "pd3", "statCode": "overkill-m606-headshot-kills", "statName": "M606 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:07:31.446Z", "updatedAt": "2023-11-02T10:22:13.189Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "M606", @@ -5553,13 +5553,13 @@ ] }, { + "createdAt": "2022-11-15T14:34:31.855Z", + "namespace": "pd3", "statCode": "overkill-m606-kills", "statName": "M606 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:34:31.855Z", "updatedAt": "2023-11-02T10:22:13.193Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "M606", @@ -5567,31 +5567,31 @@ ] }, { + "createdAt": "2023-01-23T09:17:07.001Z", + "namespace": "pd3", "statCode": "overkill-mamba-ads-kills", "statName": "Mamba Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:17:07.001Z", "updatedAt": "2023-11-02T10:22:13.197Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:03:42.235Z", + "namespace": "pd3", "statCode": "overkill-mamba-armored-headshot-kills", "statName": "Mamba Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:03:42.235Z", "updatedAt": "2023-11-02T10:22:13.200Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T15:06:20.766Z", + "namespace": "pd3", "statCode": "overkill-mamba-headshot-kills", "statName": "Mamba Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:06:20.766Z", "updatedAt": "2023-11-02T10:22:13.204Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mamba", "Combat", @@ -5600,22 +5600,22 @@ ] }, { + "createdAt": "2023-03-06T14:51:28.126Z", + "namespace": "pd3", "statCode": "overkill-mamba-hipfire-kills", "statName": "Mamba Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:51:28.126Z", "updatedAt": "2023-11-02T10:22:13.208Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:24:39.928Z", + "namespace": "pd3", "statCode": "overkill-mamba-kills", "statName": "Mamba Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:24:39.928Z", "updatedAt": "2023-11-02T10:22:13.211Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mamba", "Combat", @@ -5623,49 +5623,49 @@ ] }, { + "createdAt": "2023-03-06T15:16:30.098Z", + "namespace": "pd3", "statCode": "overkill-mamba-longrange-kills", "statName": "Mamba Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:16:30.098Z", "updatedAt": "2023-11-02T10:22:13.215Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T14:43:25.045Z", + "namespace": "pd3", "statCode": "overkill-mamba-noreload-kills", "statName": "Mamba No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:43:25.045Z", "updatedAt": "2023-11-02T10:22:13.219Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:43:38.579Z", + "namespace": "pd3", "statCode": "overkill-mamba-specialenemies-kills", "statName": "Mamba Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:43:38.579Z", "updatedAt": "2023-11-02T10:22:13.223Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:24:36.928Z", + "namespace": "pd3", "statCode": "overkill-mamba-suppressor-kills", "statName": "Mamba Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:24:36.928Z", "updatedAt": "2023-11-02T10:22:13.226Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:21:28.079Z", + "namespace": "pd3", "statCode": "overkill-mamba-twoenemies-kills", "statName": "Mamba Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:21:28.079Z", "updatedAt": "2023-11-02T10:22:13.230Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mamba", "Combat", @@ -5675,67 +5675,67 @@ ] }, { + "createdAt": "2023-03-08T10:03:59.934Z", + "namespace": "pd3", "statCode": "overkill-mamba-weapon-points", "statName": "Mamba Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-08T10:03:59.934Z", "updatedAt": "2023-11-02T10:22:13.234Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T15:04:27.675Z", + "namespace": "pd3", "statCode": "penthouse-human-shield-extract", "statName": "Penthouse Human Shield Extract", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:04:27.675Z", "updatedAt": "2023-11-02T10:22:13.237Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.418Z", + "namespace": "pd3", "statCode": "penthouse-human-shield-extract-epic", "statName": "Penthouse Human Shield Extract Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.418Z", "updatedAt": "2023-11-02T10:22:13.241Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.411Z", + "namespace": "pd3", "statCode": "penthouse-human-shield-extract-playstation", "statName": "Penthouse Human Shield Extract PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.411Z", "updatedAt": "2023-11-02T10:22:13.245Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.431Z", + "namespace": "pd3", "statCode": "penthouse-human-shield-extract-steam", "statName": "Penthouse Human Shield Extract Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.431Z", "updatedAt": "2023-11-02T10:22:13.249Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.331Z", + "namespace": "pd3", "statCode": "penthouse-human-shield-extract-xbox", "statName": "Penthouse Human Shield Extract XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.331Z", "updatedAt": "2023-11-02T10:22:13.252Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:59:58.463Z", + "namespace": "pd3", "statCode": "penthouse-loud-hard", "statName": "Penthouse Loud Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:59:58.463Z", "updatedAt": "2023-11-02T10:22:13.256Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Loud", @@ -5744,22 +5744,22 @@ ] }, { + "createdAt": "2022-12-06T13:35:57.445Z", + "namespace": "pd3", "statCode": "penthouse-loud-hard-best-time", "statName": "Penthouse Loud Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:35:57.445Z", "updatedAt": "2023-11-02T10:22:13.259Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T13:58:08.542Z", + "namespace": "pd3", "statCode": "penthouse-loud-normal", "statName": "Penthouse Loud Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T13:58:08.542Z", "updatedAt": "2023-11-02T10:22:13.263Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Loud", @@ -5768,22 +5768,22 @@ ] }, { + "createdAt": "2022-12-06T13:35:36.665Z", + "namespace": "pd3", "statCode": "penthouse-loud-normal-best-time", "statName": "Penthouse Loud Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:35:36.665Z", "updatedAt": "2023-11-02T10:22:13.267Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T14:17:29.523Z", + "namespace": "pd3", "statCode": "penthouse-loud-overkill", "statName": "Penthouse Loud Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:17:29.523Z", "updatedAt": "2023-11-02T10:22:13.271Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Loud", @@ -5792,22 +5792,22 @@ ] }, { + "createdAt": "2022-12-06T13:37:11.629Z", + "namespace": "pd3", "statCode": "penthouse-loud-overkill-best-time", "statName": "Penthouse Loud Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:37:11.629Z", "updatedAt": "2023-11-02T10:22:13.275Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T14:16:34.355Z", + "namespace": "pd3", "statCode": "penthouse-loud-veryhard", "statName": "Penthouse Loud Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:16:34.355Z", "updatedAt": "2023-11-02T10:22:13.278Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Loud", @@ -5817,22 +5817,22 @@ ] }, { + "createdAt": "2022-12-06T13:36:45.695Z", + "namespace": "pd3", "statCode": "penthouse-loud-veryhard-best-time", "statName": "Penthouse Loud Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:36:45.695Z", "updatedAt": "2023-11-02T10:22:13.282Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-17T13:09:38.772Z", + "namespace": "pd3", "statCode": "penthouse-max-payout", "statName": "Penthouse Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:09:38.772Z", "updatedAt": "2023-11-02T10:22:13.286Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Max", @@ -5841,13 +5841,13 @@ ] }, { + "createdAt": "2022-11-17T13:10:35.040Z", + "namespace": "pd3", "statCode": "penthouse-no-downs", "statName": "Penthouse No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-17T13:10:35.040Z", "updatedAt": "2023-11-02T10:22:13.290Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -5856,58 +5856,58 @@ ] }, { + "createdAt": "2023-02-14T15:04:09.664Z", + "namespace": "pd3", "statCode": "penthouse-no-guard-kills", "statName": "Penthouse No Guard Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T15:04:09.664Z", "updatedAt": "2023-11-02T10:22:13.294Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.489Z", + "namespace": "pd3", "statCode": "penthouse-no-guard-kills-epic", "statName": "Penthouse No Guard Kills Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.489Z", "updatedAt": "2023-11-02T10:22:13.298Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.387Z", + "namespace": "pd3", "statCode": "penthouse-no-guard-kills-playstation", "statName": "Penthouse No Guard Kills PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.387Z", "updatedAt": "2023-11-02T10:22:13.301Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.912Z", + "namespace": "pd3", "statCode": "penthouse-no-guard-kills-steam", "statName": "Penthouse No Guard Kills Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.912Z", "updatedAt": "2023-11-02T10:22:13.305Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.921Z", + "namespace": "pd3", "statCode": "penthouse-no-guard-kills-xbox", "statName": "Penthouse No Guard Kills XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.921Z", "updatedAt": "2023-11-02T10:22:13.309Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { - "statCode": "penthouse-optional-objective-1", - "statName": "Penthouse Optional Objective 1", - "value": 0.0, - "namespace": "pd3", "createdAt": "2023-02-02T10:23:46.074Z", + "namespace": "pd3", + "statCode": "penthouse-optional-objective-1", + "statName": "Penthouse Optional Objective 1", "updatedAt": "2023-11-02T10:22:13.313Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5915,13 +5915,13 @@ ] }, { + "createdAt": "2023-02-02T10:24:16.937Z", + "namespace": "pd3", "statCode": "penthouse-optional-objective-2", "statName": "Penthouse Optional Objective 2", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:24:16.937Z", "updatedAt": "2023-11-02T10:22:13.317Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5929,13 +5929,13 @@ ] }, { + "createdAt": "2023-02-02T10:24:49.876Z", + "namespace": "pd3", "statCode": "penthouse-optional-objective-3", "statName": "Penthouse Optional Objective 3", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:24:49.876Z", "updatedAt": "2023-11-02T10:22:13.320Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5943,13 +5943,13 @@ ] }, { + "createdAt": "2023-02-02T10:25:20.205Z", + "namespace": "pd3", "statCode": "penthouse-optional-objective-4", "statName": "Penthouse Optional Objective 4", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:25:20.205Z", "updatedAt": "2023-11-02T10:22:13.325Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5957,13 +5957,13 @@ ] }, { + "createdAt": "2023-02-02T10:26:07.455Z", + "namespace": "pd3", "statCode": "penthouse-optional-objective-5", "statName": "Penthouse Optional Objective 5", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:26:07.455Z", "updatedAt": "2023-11-02T10:22:13.328Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5971,13 +5971,13 @@ ] }, { + "createdAt": "2023-02-02T10:26:39.129Z", + "namespace": "pd3", "statCode": "penthouse-optional-objective-6", "statName": "Penthouse Optional Objective 6", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T10:26:39.129Z", "updatedAt": "2023-11-02T10:22:13.332Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Optional", @@ -5985,13 +5985,13 @@ ] }, { + "createdAt": "2022-11-16T14:53:21.509Z", + "namespace": "pd3", "statCode": "penthouse-stealth-hard", "statName": "Penthouse Stealth Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:53:21.509Z", "updatedAt": "2023-11-02T10:22:13.336Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Stealth", @@ -6000,22 +6000,22 @@ ] }, { + "createdAt": "2022-12-06T13:38:10.797Z", + "namespace": "pd3", "statCode": "penthouse-stealth-hard-best-time", "statName": "Penthouse Stealth Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:38:10.797Z", "updatedAt": "2023-11-02T10:22:13.340Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T14:50:09.047Z", + "namespace": "pd3", "statCode": "penthouse-stealth-normal", "statName": "Penthouse Stealth Normal", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:50:09.047Z", "updatedAt": "2023-11-02T10:22:13.344Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Stealth", @@ -6024,22 +6024,22 @@ ] }, { + "createdAt": "2022-12-06T13:37:40.629Z", + "namespace": "pd3", "statCode": "penthouse-stealth-normal-best-time", "statName": "Penthouse Stealth Normal Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:37:40.629Z", "updatedAt": "2023-11-02T10:22:13.347Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T14:54:55.340Z", + "namespace": "pd3", "statCode": "penthouse-stealth-overkill", "statName": "Penthouse Stealth Overkill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:54:55.340Z", "updatedAt": "2023-11-02T10:22:13.351Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Stealth", @@ -6048,22 +6048,22 @@ ] }, { + "createdAt": "2022-12-06T13:38:51.395Z", + "namespace": "pd3", "statCode": "penthouse-stealth-overkill-best-time", "statName": "Penthouse Stealth Overkill Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:38:51.395Z", "updatedAt": "2023-11-02T10:22:13.355Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-16T14:54:13.064Z", + "namespace": "pd3", "statCode": "penthouse-stealth-veryhard", "statName": "Penthouse Stealth Very Hard", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-16T14:54:13.064Z", "updatedAt": "2023-11-02T10:22:13.359Z", "userId": "UserId", + "value": 0.0, "tags": [ "Penthouse", "Stealth", @@ -6073,22 +6073,22 @@ ] }, { + "createdAt": "2022-12-06T13:38:32.802Z", + "namespace": "pd3", "statCode": "penthouse-stealth-veryhard-best-time", "statName": "Penthouse Stealth Very Hard Best Time", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-12-06T13:38:32.802Z", "updatedAt": "2023-11-02T10:22:13.365Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:32:35.407Z", + "namespace": "pd3", "statCode": "pistol-g17-headshot-kills", "statName": "Deprecated Glock 17 Gen 5 MOS Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:32:35.407Z", "updatedAt": "2023-11-02T10:22:13.368Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Glock", @@ -6097,13 +6097,13 @@ ] }, { + "createdAt": "2022-06-20T11:44:01.474Z", + "namespace": "pd3", "statCode": "pistol-g17-kills", "statName": "Deprecated Glock 17 Gen 5 MOS Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:44:01.474Z", "updatedAt": "2023-11-02T10:22:13.372Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Glock", @@ -6111,31 +6111,31 @@ ] }, { + "createdAt": "2022-06-27T07:11:07.416Z", + "namespace": "pd3", "statCode": "pistol-g17-weapon-level", "statName": "Glock 17 Gen 5 MOS Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:11:07.416Z", "updatedAt": "2023-11-02T10:22:13.376Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:10:23.079Z", + "namespace": "pd3", "statCode": "pistol-g17-weapon-points", "statName": "Glock 17 Gen 5 MOS Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:10:23.079Z", "updatedAt": "2023-11-02T10:22:13.380Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:36:41.333Z", + "namespace": "pd3", "statCode": "pistol-p226-headshot-kills", "statName": "Deprecated P226 Legion Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:36:41.333Z", "updatedAt": "2023-11-02T10:22:13.384Z", "userId": "UserId", + "value": 0.0, "tags": [ "P226", "Legion", @@ -6145,13 +6145,13 @@ ] }, { + "createdAt": "2022-06-20T11:48:05.629Z", + "namespace": "pd3", "statCode": "pistol-p226-kills", "statName": "Deprecated P226 Legion Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:48:05.629Z", "updatedAt": "2023-11-02T10:22:13.387Z", "userId": "UserId", + "value": 0.0, "tags": [ "P226", "Legion", @@ -6160,31 +6160,31 @@ ] }, { + "createdAt": "2022-06-27T07:14:12.421Z", + "namespace": "pd3", "statCode": "pistol-p226-weapon-level", "statName": "P226 Legion Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:14:12.421Z", "updatedAt": "2023-11-02T10:22:13.391Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:13:24.483Z", + "namespace": "pd3", "statCode": "pistol-p226-weapon-points", "statName": "P226 Legion Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:13:24.483Z", "updatedAt": "2023-11-02T10:22:13.395Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:34:59.790Z", + "namespace": "pd3", "statCode": "pistol-p320-headshot-kills", "statName": "Deprecated P320 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:34:59.790Z", "updatedAt": "2023-11-02T10:22:13.399Z", "userId": "UserId", + "value": 0.0, "tags": [ "P320", "Combat", @@ -6193,13 +6193,13 @@ ] }, { + "createdAt": "2022-06-20T11:46:36.144Z", + "namespace": "pd3", "statCode": "pistol-p320-kills", "statName": "Deprecated P320 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:46:36.144Z", "updatedAt": "2023-11-02T10:22:13.403Z", "userId": "UserId", + "value": 0.0, "tags": [ "P320", "Combat", @@ -6207,58 +6207,58 @@ ] }, { + "createdAt": "2022-06-27T07:15:14.379Z", + "namespace": "pd3", "statCode": "pistol-p320-weapon-level", "statName": "P320 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:15:14.379Z", "updatedAt": "2023-11-02T10:22:13.406Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:14:48.378Z", + "namespace": "pd3", "statCode": "pistol-p320-weapon-points", "statName": "P320 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:14:48.378Z", "updatedAt": "2023-11-02T10:22:13.410Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:15:41.452Z", + "namespace": "pd3", "statCode": "pistol-s40-ads-kills", "statName": "S40 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:15:41.452Z", "updatedAt": "2023-11-02T10:22:13.414Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:01:29.073Z", + "namespace": "pd3", "statCode": "pistol-s40-armored-headshot-kills", "statName": "S40 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:01:29.073Z", "updatedAt": "2023-11-02T10:22:13.418Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:10:04.118Z", + "namespace": "pd3", "statCode": "pistol-s40-four-mods-equipped", "statName": "S40 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:10:04.118Z", "updatedAt": "2023-11-02T10:22:13.421Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:58:44.127Z", + "namespace": "pd3", "statCode": "pistol-s40-full-mod-unlock", "statName": "S40 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:58:44.127Z", "updatedAt": "2023-11-02T10:22:13.425Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -6267,13 +6267,13 @@ ] }, { + "createdAt": "2022-11-15T15:02:21.130Z", + "namespace": "pd3", "statCode": "pistol-s40-headshot-kills", "statName": "S40 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:02:21.130Z", "updatedAt": "2023-11-02T10:22:13.429Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -6282,22 +6282,22 @@ ] }, { + "createdAt": "2023-03-06T14:49:33.059Z", + "namespace": "pd3", "statCode": "pistol-s40-hipfire-kills", "statName": "S40 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:49:33.059Z", "updatedAt": "2023-11-02T10:22:13.432Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:17:16.291Z", + "namespace": "pd3", "statCode": "pistol-s40-kills", "statName": "S40 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:17:16.291Z", "updatedAt": "2023-11-02T10:22:13.436Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -6305,22 +6305,22 @@ ] }, { + "createdAt": "2023-03-06T15:15:08.626Z", + "namespace": "pd3", "statCode": "pistol-s40-longrange-kills", "statName": "S40 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:15:08.626Z", "updatedAt": "2023-11-02T10:22:13.440Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:36:28.589Z", + "namespace": "pd3", "statCode": "pistol-s40-mod-equipped", "statName": "S40 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:36:28.589Z", "updatedAt": "2023-11-02T10:22:13.443Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -6329,31 +6329,31 @@ ] }, { + "createdAt": "2023-03-06T14:41:53.864Z", + "namespace": "pd3", "statCode": "pistol-s40-noreload-kills", "statName": "S40 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:41:53.864Z", "updatedAt": "2023-11-02T10:22:13.447Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-02T12:44:55.068Z", + "namespace": "pd3", "statCode": "pistol-s40-specialenemies-kills", "statName": "s40 Special Enemy Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-02T12:44:55.068Z", "updatedAt": "2023-11-02T10:22:13.451Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:17:32.416Z", + "namespace": "pd3", "statCode": "pistol-s40-suppressor-kills", "statName": "S40 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:17:32.416Z", "updatedAt": "2023-11-02T10:22:13.455Z", "userId": "UserId", + "value": 0.0, "tags": [ "Legion", "Combat", @@ -6363,67 +6363,67 @@ ] }, { + "createdAt": "2023-03-06T15:33:25.443Z", + "namespace": "pd3", "statCode": "pistol-s40-twoenemies-kills", "statName": "S40 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:33:25.443Z", "updatedAt": "2023-11-02T10:22:13.458Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:21:23.155Z", + "namespace": "pd3", "statCode": "pistol-s40-weapon-level", "statName": "S40 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:21:23.155Z", "updatedAt": "2023-11-02T10:22:13.462Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:09:24.838Z", + "namespace": "pd3", "statCode": "pistol-s40-weapon-points", "statName": "S40 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:09:24.838Z", "updatedAt": "2023-11-02T10:22:13.466Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:15:08.216Z", + "namespace": "pd3", "statCode": "pistol-s403-ads-kills", "statName": "S403 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:15:08.216Z", "updatedAt": "2023-11-02T10:22:13.469Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:01:08.958Z", + "namespace": "pd3", "statCode": "pistol-s403-armored-headshot-kills", "statName": "S403 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:01:08.958Z", "updatedAt": "2023-11-02T10:22:13.473Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { - "statCode": "pistol-s403-four-mods-equipped", - "statName": "S403 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", "createdAt": "2023-02-08T16:09:39.533Z", + "namespace": "pd3", + "statCode": "pistol-s403-four-mods-equipped", + "statName": "S403 Four Mods Equipped", "updatedAt": "2023-11-02T10:22:13.477Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:57:32.619Z", + "namespace": "pd3", "statCode": "pistol-s403-full-mod-unlock", "statName": "S403 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:57:32.619Z", "updatedAt": "2023-11-02T10:22:13.481Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "S403", @@ -6432,13 +6432,13 @@ ] }, { + "createdAt": "2022-11-15T14:59:21.328Z", + "namespace": "pd3", "statCode": "pistol-s403-headshot-kills", "statName": "S403 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:59:21.328Z", "updatedAt": "2023-11-02T10:22:13.485Z", "userId": "UserId", + "value": 0.0, "tags": [ "S403", "Combat", @@ -6447,22 +6447,22 @@ ] }, { + "createdAt": "2023-03-06T14:49:09.326Z", + "namespace": "pd3", "statCode": "pistol-s403-hipfire-kills", "statName": "S403 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:49:09.326Z", "updatedAt": "2023-11-02T10:22:13.488Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:16:27.311Z", + "namespace": "pd3", "statCode": "pistol-s403-kills", "statName": "S403 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:16:27.311Z", "updatedAt": "2023-11-02T10:22:13.492Z", "userId": "UserId", + "value": 0.0, "tags": [ "S403", "Combat", @@ -6470,22 +6470,22 @@ ] }, { + "createdAt": "2023-03-06T15:14:48.557Z", + "namespace": "pd3", "statCode": "pistol-s403-longrange-kills", "statName": "S403 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:14:48.557Z", "updatedAt": "2023-11-02T10:22:13.496Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:35:42.791Z", + "namespace": "pd3", "statCode": "pistol-s403-mod-equipped", "statName": "S403 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:35:42.791Z", "updatedAt": "2023-11-02T10:22:13.500Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -6494,31 +6494,31 @@ ] }, { + "createdAt": "2023-03-06T14:40:41.843Z", + "namespace": "pd3", "statCode": "pistol-s403-noreload-kills", "statName": "S403 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:40:41.843Z", "updatedAt": "2023-11-02T10:22:13.504Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:42:20.534Z", + "namespace": "pd3", "statCode": "pistol-s403-specialenemies-kills", "statName": "S403 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:42:20.534Z", "updatedAt": "2023-11-02T10:22:13.507Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:16:44.242Z", + "namespace": "pd3", "statCode": "pistol-s403-suppressor-kills", "statName": "S403 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:16:44.242Z", "updatedAt": "2023-11-02T10:22:13.511Z", "userId": "UserId", + "value": 0.0, "tags": [ "S403", "Combat", @@ -6527,67 +6527,67 @@ ] }, { + "createdAt": "2023-03-06T15:33:10.328Z", + "namespace": "pd3", "statCode": "pistol-s403-twoenemies-kills", "statName": "S403 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:33:10.328Z", "updatedAt": "2023-11-02T10:22:13.515Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:20:49.022Z", + "namespace": "pd3", "statCode": "pistol-s403-weapon-level", "statName": "S403 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:20:49.022Z", "updatedAt": "2023-11-02T10:22:13.519Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:08:54.905Z", + "namespace": "pd3", "statCode": "pistol-s403-weapon-points", "statName": "S403 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:08:54.905Z", "updatedAt": "2023-11-02T10:22:13.522Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:16:09.589Z", + "namespace": "pd3", "statCode": "pistol-spm11-ads-kills", "statName": "SPM11 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:16:09.589Z", "updatedAt": "2023-11-02T10:22:13.526Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:02:00.618Z", + "namespace": "pd3", "statCode": "pistol-spm11-armored-headshot-kills", "statName": "SPM11 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:02:00.618Z", "updatedAt": "2023-11-02T10:22:13.530Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:10:24.122Z", + "namespace": "pd3", "statCode": "pistol-spm11-four-mods-equipped", "statName": "SPM11 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:10:24.122Z", "updatedAt": "2023-11-02T10:22:13.533Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:59:55.559Z", + "namespace": "pd3", "statCode": "pistol-spm11-full-mod-unlock", "statName": "SPM11 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:59:55.559Z", "updatedAt": "2023-11-02T10:22:13.537Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "SPM11", @@ -6596,13 +6596,13 @@ ] }, { + "createdAt": "2022-11-15T15:03:31.809Z", + "namespace": "pd3", "statCode": "pistol-spm11-headshot-kills", "statName": "SPM11 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:03:31.809Z", "updatedAt": "2023-11-02T10:22:13.541Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SPM11", @@ -6611,22 +6611,22 @@ ] }, { + "createdAt": "2023-03-06T14:50:05.259Z", + "namespace": "pd3", "statCode": "pistol-spm11-hipfire-kills", "statName": "SPM11 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:50:05.259Z", "updatedAt": "2023-11-02T10:22:13.544Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:19:21.198Z", + "namespace": "pd3", "statCode": "pistol-spm11-kills", "statName": "SPM11 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:19:21.198Z", "updatedAt": "2023-11-02T10:22:13.548Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SPM11", @@ -6634,22 +6634,22 @@ ] }, { + "createdAt": "2023-03-06T15:15:33.797Z", + "namespace": "pd3", "statCode": "pistol-spm11-longrange-kills", "statName": "SPM11 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:15:33.797Z", "updatedAt": "2023-11-02T10:22:13.552Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:37:17.377Z", + "namespace": "pd3", "statCode": "pistol-spm11-mod-equipped", "statName": "SPM11 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:37:17.377Z", "updatedAt": "2023-11-02T10:22:13.556Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -6658,31 +6658,31 @@ ] }, { + "createdAt": "2023-03-06T14:42:20.742Z", + "namespace": "pd3", "statCode": "pistol-spm11-noreload-kills", "statName": "SPM11 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:42:20.742Z", "updatedAt": "2023-11-02T10:22:13.559Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:42:37.961Z", + "namespace": "pd3", "statCode": "pistol-spm11-specialenemies-kills", "statName": "SPM11 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:42:37.961Z", "updatedAt": "2023-11-02T10:22:13.563Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:18:39.633Z", + "namespace": "pd3", "statCode": "pistol-spm11-suppressor-kills", "statName": "SPM11 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:18:39.633Z", "updatedAt": "2023-11-02T10:22:13.567Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "SPM11", @@ -6691,40 +6691,40 @@ ] }, { + "createdAt": "2023-03-06T15:33:43.978Z", + "namespace": "pd3", "statCode": "pistol-spm11-twoenemies-kills", "statName": "SPM11 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:33:43.978Z", "updatedAt": "2023-11-02T10:22:13.571Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:21:54.395Z", + "namespace": "pd3", "statCode": "pistol-spm11-weapon-level", "statName": "SPM11 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:21:54.395Z", "updatedAt": "2023-11-02T10:22:13.574Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:09:52.622Z", + "namespace": "pd3", "statCode": "pistol-spm11-weapon-points", "statName": "SPM11 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:09:52.622Z", "updatedAt": "2023-11-02T10:22:13.578Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:37:32.449Z", + "namespace": "pd3", "statCode": "pistol-sti10-headshot-kills", "statName": "Deprecated STI Perfect 10 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:37:32.449Z", "updatedAt": "2023-11-02T10:22:13.582Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "STI", @@ -6734,13 +6734,13 @@ ] }, { + "createdAt": "2022-06-20T11:50:00.640Z", + "namespace": "pd3", "statCode": "pistol-sti10-kills", "statName": "Deprecated STI Perfect 10 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:50:00.640Z", "updatedAt": "2023-11-02T10:22:13.585Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "STI", @@ -6748,58 +6748,58 @@ ] }, { + "createdAt": "2022-06-27T07:16:50.115Z", + "namespace": "pd3", "statCode": "pistol-sti10-weapon-level", "statName": "STI Perfect 10 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:16:50.115Z", "updatedAt": "2023-11-02T10:22:13.589Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:16:08.629Z", + "namespace": "pd3", "statCode": "pistol-sti10-weapon-points", "statName": "STI Perfect 10 Weapon points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:16:08.629Z", "updatedAt": "2023-11-02T10:22:13.593Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:14:44.009Z", + "namespace": "pd3", "statCode": "pistol-stryk7-ads-kills", "statName": "Stryk7 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:14:44.009Z", "updatedAt": "2023-11-02T10:22:13.596Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:00:43.596Z", + "namespace": "pd3", "statCode": "pistol-stryk7-armored-headshot-kills", "statName": "Stryk7 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:00:43.596Z", "updatedAt": "2023-11-02T10:22:13.600Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:09:17.126Z", + "namespace": "pd3", "statCode": "pistol-stryk7-four-mods-equipped", "statName": "Stryk7 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:09:17.126Z", "updatedAt": "2023-11-02T10:22:13.604Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:55:53.186Z", + "namespace": "pd3", "statCode": "pistol-stryk7-full-mod-unlock", "statName": "Stryk7 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:55:53.186Z", "updatedAt": "2023-11-02T10:22:13.607Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -6808,13 +6808,13 @@ ] }, { + "createdAt": "2022-11-15T14:57:43.537Z", + "namespace": "pd3", "statCode": "pistol-stryk7-headshot-kills", "statName": "Stryk7 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:57:43.537Z", "updatedAt": "2023-11-02T10:22:13.611Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -6823,22 +6823,22 @@ ] }, { + "createdAt": "2023-03-06T14:48:49.184Z", + "namespace": "pd3", "statCode": "pistol-stryk7-hipfire-kills", "statName": "Stryk7 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:48:49.184Z", "updatedAt": "2023-11-02T10:22:13.615Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:15:28.254Z", + "namespace": "pd3", "statCode": "pistol-stryk7-kills", "statName": "Stryk7 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:15:28.254Z", "updatedAt": "2023-11-02T10:22:13.619Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -6846,22 +6846,22 @@ ] }, { + "createdAt": "2023-03-06T15:14:32.126Z", + "namespace": "pd3", "statCode": "pistol-stryk7-longrange-kills", "statName": "Stryk7 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:14:32.126Z", "updatedAt": "2023-11-02T10:22:13.622Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:34:59.279Z", + "namespace": "pd3", "statCode": "pistol-stryk7-mod-equipped", "statName": "Stryk7 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:34:59.279Z", "updatedAt": "2023-11-02T10:22:13.626Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -6870,31 +6870,31 @@ ] }, { + "createdAt": "2023-03-06T14:40:12.094Z", + "namespace": "pd3", "statCode": "pistol-stryk7-noreload-kills", "statName": "Stryk7 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:40:12.094Z", "updatedAt": "2023-11-02T10:22:13.629Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:42:03.720Z", + "namespace": "pd3", "statCode": "pistol-stryk7-specialenemies-kills", "statName": "Stryk7 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:42:03.720Z", "updatedAt": "2023-11-02T10:22:13.633Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:15:08.714Z", + "namespace": "pd3", "statCode": "pistol-stryk7-suppressor-kills", "statName": "Stryk7 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:15:08.714Z", "updatedAt": "2023-11-02T10:22:13.637Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Suppressor", @@ -6903,85 +6903,85 @@ ] }, { + "createdAt": "2023-03-06T15:32:55.588Z", + "namespace": "pd3", "statCode": "pistol-stryk7-twoenemies-kills", "statName": "Stryk7 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:32:55.588Z", "updatedAt": "2023-11-02T10:22:13.640Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:20:17.972Z", + "namespace": "pd3", "statCode": "pistol-stryk7-weapon-level", "statName": "Stryk7 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:20:17.972Z", "updatedAt": "2023-11-02T10:22:13.644Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:08:00.824Z", + "namespace": "pd3", "statCode": "pistol-stryk7-weapon-points", "statName": "Stryk7 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:08:00.824Z", "updatedAt": "2023-11-02T10:22:13.647Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:56:06.653Z", + "namespace": "pd3", "statCode": "primary-full-mod-unlock", "statName": "Primary Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:56:06.653Z", "updatedAt": "2023-11-02T10:22:13.651Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.239Z", + "namespace": "pd3", "statCode": "primary-full-mod-unlock-epic", "statName": "Primary Full Mod Unlock Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.239Z", "updatedAt": "2023-11-02T10:22:13.655Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.928Z", + "namespace": "pd3", "statCode": "primary-full-mod-unlock-playstation", "statName": "Primary Full Unlock PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.928Z", "updatedAt": "2023-11-02T10:22:13.658Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.233Z", + "namespace": "pd3", "statCode": "primary-full-mod-unlock-steam", "statName": "Primary Full Mod Unlock Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.233Z", "updatedAt": "2023-11-02T10:22:13.662Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.496Z", + "namespace": "pd3", "statCode": "primary-full-mod-unlock-xbox", "statName": "Primary Full Mod Unlock XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.496Z", "updatedAt": "2023-11-02T10:22:13.666Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:02:46.620Z", + "namespace": "pd3", "statCode": "revive-crewmate", "statName": "Revive Crewmate", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:02:46.620Z", "updatedAt": "2023-11-02T10:22:13.669Z", "userId": "UserId", + "value": 0.0, "tags": [ "Revive", "Combat", @@ -6989,13 +6989,13 @@ ] }, { + "createdAt": "2022-06-20T12:38:32.281Z", + "namespace": "pd3", "statCode": "revolver-442-headshot-kills", "statName": "Deprecated SW 442-2 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:38:32.281Z", "updatedAt": "2023-11-02T10:22:13.673Z", "userId": "UserId", + "value": 0.0, "tags": [ "SW", "Combat", @@ -7004,13 +7004,13 @@ ] }, { + "createdAt": "2022-06-20T11:52:12.736Z", + "namespace": "pd3", "statCode": "revolver-442-kills", "statName": "Deprecated SW 442-2 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:52:12.736Z", "updatedAt": "2023-11-02T10:22:13.677Z", "userId": "UserId", + "value": 0.0, "tags": [ "SW", "Combat", @@ -7018,58 +7018,58 @@ ] }, { + "createdAt": "2022-06-27T07:18:10.749Z", + "namespace": "pd3", "statCode": "revolver-442-weapon-level", "statName": "SW 442-2 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:18:10.749Z", "updatedAt": "2023-11-02T10:22:13.680Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:17:36.255Z", + "namespace": "pd3", "statCode": "revolver-442-weapon-points", "statName": "SW 442-2 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:17:36.255Z", "updatedAt": "2023-11-02T10:22:13.684Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:16:41.137Z", + "namespace": "pd3", "statCode": "revolver-bison-ads-kills", "statName": "Bison Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:16:41.137Z", "updatedAt": "2023-11-02T10:22:13.687Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:03:00.305Z", + "namespace": "pd3", "statCode": "revolver-bison-armored-headshot-kills", "statName": "Bison Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:03:00.305Z", "updatedAt": "2023-11-02T10:22:13.691Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:10:45.393Z", + "namespace": "pd3", "statCode": "revolver-bison-four-mods-equipped", "statName": "Bison Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:10:45.393Z", "updatedAt": "2023-11-02T10:22:13.695Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T09:00:51.148Z", + "namespace": "pd3", "statCode": "revolver-bison-full-mod-unlock", "statName": "Bison Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T09:00:51.148Z", "updatedAt": "2023-11-02T10:22:13.698Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -7078,13 +7078,13 @@ ] }, { + "createdAt": "2022-11-15T15:04:26.593Z", + "namespace": "pd3", "statCode": "revolver-bison-headshot-kills", "statName": "Bison Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:04:26.593Z", "updatedAt": "2023-11-02T10:22:13.702Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Bison", @@ -7093,22 +7093,22 @@ ] }, { + "createdAt": "2023-03-06T14:50:36.240Z", + "namespace": "pd3", "statCode": "revolver-bison-hipfire-kills", "statName": "Bison Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:50:36.240Z", "updatedAt": "2023-11-02T10:22:13.705Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:20:42.165Z", + "namespace": "pd3", "statCode": "revolver-bison-kills", "statName": "Bison Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:20:42.165Z", "updatedAt": "2023-11-02T10:22:13.709Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Bison", @@ -7116,22 +7116,22 @@ ] }, { + "createdAt": "2023-03-06T15:15:49.704Z", + "namespace": "pd3", "statCode": "revolver-bison-longrange-kills", "statName": "Bison Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:15:49.704Z", "updatedAt": "2023-11-02T10:22:13.712Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:38:02.358Z", + "namespace": "pd3", "statCode": "revolver-bison-mod-equipped", "statName": "Bison Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:38:02.358Z", "updatedAt": "2023-11-02T10:22:13.716Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -7140,13 +7140,13 @@ ] }, { + "createdAt": "2023-01-13T18:19:44.807Z", + "namespace": "pd3", "statCode": "revolver-bison-noreload-kills", "statName": "Bison No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:19:44.807Z", "updatedAt": "2023-11-02T10:22:13.719Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Reload", @@ -7156,58 +7156,58 @@ ] }, { + "createdAt": "2023-03-06T15:42:56.757Z", + "namespace": "pd3", "statCode": "revolver-bison-specialenemies-kills", "statName": "Bison Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:42:56.757Z", "updatedAt": "2023-11-02T10:22:13.723Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:23:57.163Z", + "namespace": "pd3", "statCode": "revolver-bison-suppressor-kills", "statName": "Bison Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:23:57.163Z", "updatedAt": "2023-11-02T10:22:13.726Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:34:00.840Z", + "namespace": "pd3", "statCode": "revolver-bison-twoenemies-kills", "statName": "Bison Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:34:00.840Z", "updatedAt": "2023-11-02T10:22:13.730Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:22:22.418Z", + "namespace": "pd3", "statCode": "revolver-bison-weapon-level", "statName": "Bison Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:22:22.418Z", "updatedAt": "2023-11-02T10:22:13.734Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:10:24.061Z", + "namespace": "pd3", "statCode": "revolver-bison-weapon-points", "statName": "Bison Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:10:24.061Z", "updatedAt": "2023-11-02T10:22:13.738Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T18:20:31.477Z", + "namespace": "pd3", "statCode": "revolver-castigo44-ads-kills", "statName": "Castigo44 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T18:20:31.477Z", "updatedAt": "2023-11-02T10:22:13.742Z", "userId": "UserId", + "value": 0.0, "tags": [ "ADS", "Castigo44", @@ -7216,31 +7216,31 @@ ] }, { + "createdAt": "2023-03-06T15:03:20.446Z", + "namespace": "pd3", "statCode": "revolver-castigo44-armored-headshot-kills", "statName": "Castigo44 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:03:20.446Z", "updatedAt": "2023-11-02T10:22:13.746Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:11:29.792Z", + "namespace": "pd3", "statCode": "revolver-castigo44-four-mods-equipped", "statName": "Castigo44 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:11:29.792Z", "updatedAt": "2023-11-02T10:22:13.750Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T09:01:30.812Z", + "namespace": "pd3", "statCode": "revolver-castigo44-full-mod-unlock", "statName": "Castigo44 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T09:01:30.812Z", "updatedAt": "2023-11-02T10:22:13.754Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Castigo44", @@ -7249,13 +7249,13 @@ ] }, { + "createdAt": "2022-11-15T15:05:19.318Z", + "namespace": "pd3", "statCode": "revolver-castigo44-headshot-kills", "statName": "Castigo44 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T15:05:19.318Z", "updatedAt": "2023-11-02T10:22:13.757Z", "userId": "UserId", + "value": 0.0, "tags": [ "Castigo44", "Combat", @@ -7264,22 +7264,22 @@ ] }, { + "createdAt": "2023-03-06T14:51:10.423Z", + "namespace": "pd3", "statCode": "revolver-castigo44-hipfire-kills", "statName": "Castigo44 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:51:10.423Z", "updatedAt": "2023-11-02T10:22:13.761Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:23:43.469Z", + "namespace": "pd3", "statCode": "revolver-castigo44-kills", "statName": "Castigo44 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:23:43.469Z", "updatedAt": "2023-11-02T10:22:13.765Z", "userId": "UserId", + "value": 0.0, "tags": [ "Castigo44", "Combat", @@ -7287,22 +7287,22 @@ ] }, { + "createdAt": "2023-03-06T15:16:05.928Z", + "namespace": "pd3", "statCode": "revolver-castigo44-longrange-kills", "statName": "Castigo44 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:16:05.928Z", "updatedAt": "2023-11-02T10:22:13.768Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:38:42.607Z", + "namespace": "pd3", "statCode": "revolver-castigo44-mod-equipped", "statName": "Castigo44 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:38:42.607Z", "updatedAt": "2023-11-02T10:22:13.772Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -7311,58 +7311,58 @@ ] }, { + "createdAt": "2023-03-06T14:42:52.931Z", + "namespace": "pd3", "statCode": "revolver-castigo44-noreload-kills", "statName": "Castigo44 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:42:52.931Z", "updatedAt": "2023-11-02T10:22:13.775Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:43:16.950Z", + "namespace": "pd3", "statCode": "revolver-castigo44-specialenemies-kills", "statName": "Castigo44 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:43:16.950Z", "updatedAt": "2023-11-02T10:22:13.779Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:34:15.329Z", + "namespace": "pd3", "statCode": "revolver-castigo44-twoenemies-kills", "statName": "Castigo44 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:34:15.329Z", "updatedAt": "2023-11-02T10:22:13.783Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:23:00.329Z", + "namespace": "pd3", "statCode": "revolver-castigo44-weapon-level", "statName": "Castigo44 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:23:00.329Z", "updatedAt": "2023-11-02T10:22:13.787Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:10:56.557Z", + "namespace": "pd3", "statCode": "revolver-castigo44-weapon-points", "statName": "Castigo44 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:10:56.557Z", "updatedAt": "2023-11-02T10:22:13.790Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:39:34.305Z", + "namespace": "pd3", "statCode": "revolver-m29-headshot-kills", "statName": "Deprecated Smith and Wesson M29 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:39:34.305Z", "updatedAt": "2023-11-02T10:22:13.794Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Smith", @@ -7372,13 +7372,13 @@ ] }, { + "createdAt": "2022-06-20T11:53:35.690Z", + "namespace": "pd3", "statCode": "revolver-m29-kills", "statName": "Deprecated Smith and Wesson M29 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:53:35.690Z", "updatedAt": "2023-11-02T10:22:13.798Z", "userId": "UserId", + "value": 0.0, "tags": [ "M29", "Combat", @@ -7388,31 +7388,31 @@ ] }, { + "createdAt": "2022-06-27T07:21:07.846Z", + "namespace": "pd3", "statCode": "revolver-m29-weapon-level", "statName": "Smith and Wesson M29 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:21:07.846Z", "updatedAt": "2023-11-02T10:22:13.802Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:19:34.544Z", + "namespace": "pd3", "statCode": "revolver-m29-weapon-points", "statName": "Smith and Wesson M29 Weapon points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:19:34.544Z", "updatedAt": "2023-11-02T10:22:13.806Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:05:42.995Z", + "namespace": "pd3", "statCode": "riot-shield-break-glass", "statName": "Riot Shield Break Glass", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:05:42.995Z", "updatedAt": "2023-11-02T10:22:13.810Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Break", @@ -7420,13 +7420,13 @@ ] }, { + "createdAt": "2023-01-13T17:01:26.558Z", + "namespace": "pd3", "statCode": "save-taser-crewmate", "statName": "Save Taser Crewmate", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:01:26.558Z", "updatedAt": "2023-11-02T10:22:13.814Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Crewmate", @@ -7435,31 +7435,31 @@ ] }, { + "createdAt": "2021-11-11T11:48:41.696Z", + "namespace": "pd3", "statCode": "savior-progression-code", "statName": "Savior Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-11T11:48:41.696Z", "updatedAt": "2023-11-02T10:22:13.818Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-11T11:49:15.496Z", + "namespace": "pd3", "statCode": "savior-research-code", "statName": "Savior Research Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-11T11:49:15.496Z", "updatedAt": "2023-11-02T10:22:13.822Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T15:11:10.768Z", + "namespace": "pd3", "statCode": "sentry-turret-kills", "statName": "Kill Sentry Turret", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T15:11:10.768Z", "updatedAt": "2023-11-02T10:22:13.825Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Sentry", @@ -7467,13 +7467,13 @@ ] }, { + "createdAt": "2022-06-16T12:45:01.343Z", + "namespace": "pd3", "statCode": "sharkebank-max-payout", "statName": "LEGACY Sharke Bank Max Payout", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:45:01.343Z", "updatedAt": "2023-11-02T10:22:13.829Z", "userId": "UserId", + "value": 0.0, "tags": [ "Bank", "Max", @@ -7483,13 +7483,13 @@ ] }, { + "createdAt": "2022-06-16T12:46:00.952Z", + "namespace": "pd3", "statCode": "sharkebank-no-downs", "statName": "LEGACY Sharke Bank No Downs", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T12:46:00.952Z", "updatedAt": "2023-11-02T10:22:13.833Z", "userId": "UserId", + "value": 0.0, "tags": [ "No", "Down", @@ -7499,31 +7499,31 @@ ] }, { + "createdAt": "2022-09-17T08:12:25.250Z", + "namespace": "pd3", "statCode": "sharpshooter-progression-code", "statName": "Sharpshooter Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:12:25.250Z", "updatedAt": "2023-11-02T10:22:13.837Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:11:58.351Z", + "namespace": "pd3", "statCode": "sharpshooter-research-code", "statName": "Sharpshooter Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:11:58.351Z", "updatedAt": "2023-11-02T10:22:13.840Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T14:38:12.397Z", + "namespace": "pd3", "statCode": "shield-kills", "statName": "Shield Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:38:12.397Z", "updatedAt": "2023-11-02T10:22:13.844Z", "userId": "UserId", + "value": 0.0, "tags": [ "Shield", "Combat", @@ -7531,13 +7531,13 @@ ] }, { + "createdAt": "2022-06-20T12:26:44.668Z", + "namespace": "pd3", "statCode": "shotgun-db12-headshot-kills", "statName": "Deprecated Double Barrel Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:26:44.668Z", "updatedAt": "2023-11-02T10:22:13.848Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Barrel", @@ -7547,13 +7547,13 @@ ] }, { + "createdAt": "2022-06-20T11:35:34.844Z", + "namespace": "pd3", "statCode": "shotgun-db12-kills", "statName": "Deprecated Double Barrel Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:35:34.844Z", "updatedAt": "2023-11-02T10:22:13.853Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Barrel", @@ -7562,58 +7562,58 @@ ] }, { + "createdAt": "2022-06-27T07:27:39.664Z", + "namespace": "pd3", "statCode": "shotgun-db12-weapon-level", "statName": "Double Barrel Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:27:39.664Z", "updatedAt": "2023-11-02T10:22:13.862Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:26:11.187Z", + "namespace": "pd3", "statCode": "shotgun-db12-weapon-points", "statName": "Double Barrel Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:26:11.187Z", "updatedAt": "2023-11-02T10:22:13.865Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:13:13.118Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-ads-kills", "statName": "Mosconi12c Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:13:13.118Z", "updatedAt": "2023-11-02T10:22:13.869Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:00:05.072Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-armored-headshot-kills", "statName": "Mosconi12C Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:00:05.072Z", "updatedAt": "2023-11-02T10:22:13.873Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:08:04.515Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-four-mods-equipped", "statName": "Mosconi12C Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:08:04.515Z", "updatedAt": "2023-11-02T10:22:13.877Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:52:03.302Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-full-mod-unlock", "statName": "Mosconi12C Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:52:03.302Z", "updatedAt": "2023-11-02T10:22:13.880Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Mosconi12C", @@ -7622,13 +7622,13 @@ ] }, { + "createdAt": "2022-11-15T14:53:48.516Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-headshot-kills", "statName": "Mosconi12C Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:53:48.516Z", "updatedAt": "2023-11-02T10:22:13.884Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mosconi12C", "Combat", @@ -7637,13 +7637,13 @@ ] }, { + "createdAt": "2023-01-23T08:54:05.468Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-hipfire-kills", "statName": "Mosconi12C Hip Fire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T08:54:05.468Z", "updatedAt": "2023-11-02T10:22:13.889Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mosconi12C", "Combat", @@ -7652,13 +7652,13 @@ ] }, { + "createdAt": "2022-11-15T14:10:51.841Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-kills", "statName": "Mosconi12C Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:10:51.841Z", "updatedAt": "2023-11-02T10:22:13.892Z", "userId": "UserId", + "value": 0.0, "tags": [ "Mosconi12C", "Combat", @@ -7666,22 +7666,22 @@ ] }, { + "createdAt": "2023-03-06T15:13:51.079Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-longrange-kills", "statName": "Mosconi12C Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:13:51.079Z", "updatedAt": "2023-11-02T10:22:13.896Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:32:01.071Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-mod-equipped", "statName": "Mosconi12C Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:32:01.071Z", "updatedAt": "2023-11-02T10:22:13.900Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -7690,67 +7690,67 @@ ] }, { + "createdAt": "2023-03-06T14:37:03.693Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-noreload-kills", "statName": "Mosconi12C No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:37:03.693Z", "updatedAt": "2023-11-02T10:22:13.904Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:41:05.568Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-specialenemies-kills", "statName": "Mosconi12C Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:41:05.568Z", "updatedAt": "2023-11-02T10:22:13.908Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:22:57.721Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-suppressor-kills", "statName": "Mosconi12C Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:22:57.721Z", "updatedAt": "2023-11-02T10:22:13.912Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:31:57.616Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-twoenemies-kills", "statName": "Mosconi12C Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:31:57.616Z", "updatedAt": "2023-11-02T10:22:13.916Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:18:39.640Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-weapon-level", "statName": "Mosconi12C Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:18:39.640Z", "updatedAt": "2023-11-02T10:22:13.920Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:05:41.111Z", + "namespace": "pd3", "statCode": "shotgun-mosconi12c-weapon-points", "statName": "Mosconi12C Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:05:41.111Z", "updatedAt": "2023-11-02T10:22:13.923Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:25:49.044Z", + "namespace": "pd3", "statCode": "shotgun-r870-headshot-kills", "statName": "Deprecated Remington R870 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:25:49.044Z", "updatedAt": "2023-11-02T10:22:13.927Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "R870", @@ -7760,13 +7760,13 @@ ] }, { + "createdAt": "2022-06-20T11:34:36.921Z", + "namespace": "pd3", "statCode": "shotgun-r870-kills", "statName": "Deprecated Remington R870 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:34:36.921Z", "updatedAt": "2023-11-02T10:22:13.931Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "R870", @@ -7775,31 +7775,31 @@ ] }, { + "createdAt": "2022-06-27T07:29:25.799Z", + "namespace": "pd3", "statCode": "shotgun-r870-weapon-level", "statName": "Remington R870 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:29:25.799Z", "updatedAt": "2023-11-02T10:22:13.935Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:28:39.112Z", + "namespace": "pd3", "statCode": "shotgun-r870-weapon-points", "statName": "Remington R870 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:28:39.112Z", "updatedAt": "2023-11-02T10:22:13.938Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:56:12.072Z", + "namespace": "pd3", "statCode": "shotgun-r880-ads-kills", "statName": "R880 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:56:12.072Z", "updatedAt": "2023-11-02T10:22:13.942Z", "userId": "UserId", + "value": 0.0, "tags": [ "ADS", "Combat", @@ -7808,31 +7808,31 @@ ] }, { + "createdAt": "2023-03-06T14:59:42.329Z", + "namespace": "pd3", "statCode": "shotgun-r880-armored-headshot-kills", "statName": "R880 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:59:42.329Z", "updatedAt": "2023-11-02T10:22:13.946Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:07:42.216Z", + "namespace": "pd3", "statCode": "shotgun-r880-four-mods-equipped", "statName": "R880 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:07:42.216Z", "updatedAt": "2023-11-02T10:22:13.950Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:51:20.015Z", + "namespace": "pd3", "statCode": "shotgun-r880-full-mod-unlock", "statName": "R880 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:51:20.015Z", "updatedAt": "2023-11-02T10:22:13.953Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -7841,13 +7841,13 @@ ] }, { + "createdAt": "2022-11-15T14:52:19.919Z", + "namespace": "pd3", "statCode": "shotgun-r880-headshot-kills", "statName": "R880 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:52:19.919Z", "updatedAt": "2023-11-02T10:22:13.957Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "R880", @@ -7856,22 +7856,22 @@ ] }, { + "createdAt": "2023-03-06T14:47:38.027Z", + "namespace": "pd3", "statCode": "shotgun-r880-hipfire-kills", "statName": "R880 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:47:38.027Z", "updatedAt": "2023-11-02T10:22:13.961Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:07:20.413Z", + "namespace": "pd3", "statCode": "shotgun-r880-kills", "statName": "R880 Kills", + "updatedAt": "2023-11-02T10:22:13.964Z", + "userId": "UserId", "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:07:20.413Z", - "updatedAt": "2023-11-02T10:22:13.964Z", - "userId": "UserId", "tags": [ "Combat", "R880", @@ -7879,22 +7879,22 @@ ] }, { + "createdAt": "2023-03-06T15:13:34.924Z", + "namespace": "pd3", "statCode": "shotgun-r880-longrange-kills", "statName": "R880 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:13:34.924Z", "updatedAt": "2023-11-02T10:22:13.968Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:31:17.044Z", + "namespace": "pd3", "statCode": "shotgun-r880-mod-equipped", "statName": "R880 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:31:17.044Z", "updatedAt": "2023-11-02T10:22:13.972Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -7903,76 +7903,76 @@ ] }, { + "createdAt": "2023-03-06T14:36:02.698Z", + "namespace": "pd3", "statCode": "shotgun-r880-noreload-kills", "statName": "R880 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:36:02.698Z", "updatedAt": "2023-11-02T10:22:13.975Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:40:46.298Z", + "namespace": "pd3", "statCode": "shotgun-r880-specialenemies-kills", "statName": "R880 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:40:46.298Z", "updatedAt": "2023-11-02T10:22:13.979Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:22:35.615Z", + "namespace": "pd3", "statCode": "shotgun-r880-suppressor-kills", "statName": "R880 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:22:35.615Z", "updatedAt": "2023-11-02T10:22:13.983Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:31:40.711Z", + "namespace": "pd3", "statCode": "shotgun-r880-twoenemies-kills", "statName": "R880 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:31:40.711Z", "updatedAt": "2023-11-02T10:22:13.986Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:17:52.159Z", + "namespace": "pd3", "statCode": "shotgun-r880-weapon-level", "statName": "R880 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:17:52.159Z", "updatedAt": "2023-11-02T10:22:13.990Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:04:11.067Z", + "namespace": "pd3", "statCode": "shotgun-r880-weapon-points", "statName": "R880 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:04:11.067Z", "updatedAt": "2023-11-02T10:22:13.994Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-09T12:23:34.949Z", + "namespace": "pd3", "statCode": "sk8782a375876c491887a58410cf4e820e", "statName": "Medic skill", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-09T12:23:34.949Z", "updatedAt": "2023-11-02T10:22:13.997Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:58:26.001Z", + "namespace": "pd3", "statCode": "slide-distance", "statName": "Slide Distance", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:58:26.001Z", "updatedAt": "2023-11-02T10:22:14.003Z", "userId": "UserId", + "value": 0.0, "tags": [ "Slide", "Combat", @@ -7980,13 +7980,13 @@ ] }, { + "createdAt": "2023-01-13T17:26:10.118Z", + "namespace": "pd3", "statCode": "slide-headshot-kills", "statName": "Slide Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:26:10.118Z", "updatedAt": "2023-11-02T10:22:14.006Z", "userId": "UserId", + "value": 0.0, "tags": [ "Slide", "Combat", @@ -7995,13 +7995,13 @@ ] }, { + "createdAt": "2023-01-13T14:59:37.643Z", + "namespace": "pd3", "statCode": "slide-kills", "statName": "Slide Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:59:37.643Z", "updatedAt": "2023-11-02T10:22:14.011Z", "userId": "UserId", + "value": 0.0, "tags": [ "Slide", "Combat", @@ -8009,40 +8009,40 @@ ] }, { + "createdAt": "2023-01-23T09:12:04.175Z", + "namespace": "pd3", "statCode": "smg-commando-ads-kills", "statName": "Commando Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:12:04.175Z", "updatedAt": "2023-11-02T10:22:14.014Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T14:59:03.290Z", + "namespace": "pd3", "statCode": "smg-commando-armored-headshot-kills", "statName": "Commando Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:59:03.290Z", "updatedAt": "2023-11-02T10:22:14.018Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:06:26.398Z", + "namespace": "pd3", "statCode": "smg-commando-four-mods-equipped", "statName": "Commando Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:06:26.398Z", "updatedAt": "2023-11-02T10:22:14.022Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:48:56.646Z", + "namespace": "pd3", "statCode": "smg-commando-full-mod-unlock", "statName": "Commando Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:48:56.646Z", "updatedAt": "2023-11-02T10:22:14.025Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Commando", @@ -8051,13 +8051,13 @@ ] }, { + "createdAt": "2022-11-15T14:47:55.320Z", + "namespace": "pd3", "statCode": "smg-commando-headshot-kills", "statName": "Commando Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:47:55.320Z", "updatedAt": "2023-11-02T10:22:14.029Z", "userId": "UserId", + "value": 0.0, "tags": [ "Commando", "Combat", @@ -8066,13 +8066,13 @@ ] }, { + "createdAt": "2023-01-13T17:52:02.468Z", + "namespace": "pd3", "statCode": "smg-commando-hipfire-kills", "statName": "Commando Hip Fire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:52:02.468Z", "updatedAt": "2023-11-02T10:22:14.033Z", "userId": "UserId", + "value": 0.0, "tags": [ "Commando", "Combat", @@ -8081,13 +8081,13 @@ ] }, { + "createdAt": "2022-11-15T14:01:00.948Z", + "namespace": "pd3", "statCode": "smg-commando-kills", "statName": "Commando Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:01:00.948Z", "updatedAt": "2023-11-02T10:22:14.036Z", "userId": "UserId", + "value": 0.0, "tags": [ "Commando", "Combat", @@ -8095,22 +8095,22 @@ ] }, { + "createdAt": "2023-03-06T15:12:19.450Z", + "namespace": "pd3", "statCode": "smg-commando-longrange-kills", "statName": "Commando Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:12:19.450Z", "updatedAt": "2023-11-02T10:22:14.040Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:28:39.920Z", + "namespace": "pd3", "statCode": "smg-commando-mod-equipped", "statName": "Commando Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:28:39.920Z", "updatedAt": "2023-11-02T10:22:14.044Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -8119,76 +8119,76 @@ ] }, { + "createdAt": "2023-03-06T14:34:17.707Z", + "namespace": "pd3", "statCode": "smg-commando-noreload-kills", "statName": "Commando No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:34:17.707Z", "updatedAt": "2023-11-02T10:22:14.047Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:39:50.509Z", + "namespace": "pd3", "statCode": "smg-commando-specialenemies-kills", "statName": "Commando Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:39:50.509Z", "updatedAt": "2023-11-02T10:22:14.051Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:21:30.258Z", + "namespace": "pd3", "statCode": "smg-commando-suppressor-kills", "statName": "Commando Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:21:30.258Z", "updatedAt": "2023-11-02T10:22:14.055Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:30:50.787Z", + "namespace": "pd3", "statCode": "smg-commando-twoenemies-kills", "statName": "Commando Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:30:50.787Z", "updatedAt": "2023-11-02T10:22:14.058Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:15:35.839Z", + "namespace": "pd3", "statCode": "smg-commando-weapon-level", "statName": "Commando Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:15:35.839Z", "updatedAt": "2023-11-02T10:22:14.062Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:02:05.347Z", + "namespace": "pd3", "statCode": "smg-commando-weapon-points", "statName": "Commando Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:02:05.347Z", "updatedAt": "2023-11-02T10:22:14.066Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-23T09:12:35.885Z", + "namespace": "pd3", "statCode": "smg-compact7-ads-kills", "statName": "Compact7 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-23T09:12:35.885Z", "updatedAt": "2023-11-02T10:22:14.069Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:55:21.193Z", + "namespace": "pd3", "statCode": "smg-compact7-armored-headshot-kills", "statName": "Compact7 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:55:21.193Z", "updatedAt": "2023-11-02T10:22:14.073Z", "userId": "UserId", + "value": 0.0, "tags": [ "Armor", "Combat", @@ -8198,22 +8198,22 @@ ] }, { + "createdAt": "2023-02-08T16:07:14.538Z", + "namespace": "pd3", "statCode": "smg-compact7-four-mods-equipped", "statName": "Compact7 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:07:14.538Z", "updatedAt": "2023-11-02T10:22:14.076Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:50:26.081Z", + "namespace": "pd3", "statCode": "smg-compact7-full-mod-unlock", "statName": "Compact7 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:50:26.081Z", "updatedAt": "2023-11-02T10:22:14.080Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Unlock", @@ -8222,13 +8222,13 @@ ] }, { + "createdAt": "2022-11-15T14:50:45.143Z", + "namespace": "pd3", "statCode": "smg-compact7-headshot-kills", "statName": "Compact7 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:50:45.143Z", "updatedAt": "2023-11-02T10:22:14.083Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Headshot", @@ -8237,22 +8237,22 @@ ] }, { + "createdAt": "2023-03-06T14:47:09.181Z", + "namespace": "pd3", "statCode": "smg-compact7-hipfire-kills", "statName": "Compact7 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:47:09.181Z", "updatedAt": "2023-11-02T10:22:14.087Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:06:11.684Z", + "namespace": "pd3", "statCode": "smg-compact7-kills", "statName": "Compact7 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:06:11.684Z", "updatedAt": "2023-11-02T10:22:14.091Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -8260,22 +8260,22 @@ ] }, { + "createdAt": "2023-03-06T15:13:11.887Z", + "namespace": "pd3", "statCode": "smg-compact7-longrange-kills", "statName": "Compact7 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:13:11.887Z", "updatedAt": "2023-11-02T10:22:14.095Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:30:04.628Z", + "namespace": "pd3", "statCode": "smg-compact7-mod-equipped", "statName": "Compact7 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:30:04.628Z", "updatedAt": "2023-11-02T10:22:14.099Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -8284,67 +8284,67 @@ ] }, { + "createdAt": "2023-03-06T14:35:30.372Z", + "namespace": "pd3", "statCode": "smg-compact7-noreload-kills", "statName": "Compact7 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:35:30.372Z", "updatedAt": "2023-11-02T10:22:14.103Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:40:24.355Z", + "namespace": "pd3", "statCode": "smg-compact7-specialenemies-kills", "statName": "Compact7 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:40:24.355Z", "updatedAt": "2023-11-02T10:22:14.107Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:22:14.261Z", + "namespace": "pd3", "statCode": "smg-compact7-suppressor-kills", "statName": "Compact7 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:22:14.261Z", "updatedAt": "2023-11-02T10:22:14.111Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:31:24.040Z", + "namespace": "pd3", "statCode": "smg-compact7-twoenemies-kills", "statName": "Compact7 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:31:24.040Z", "updatedAt": "2023-11-02T10:22:14.115Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:17:23.334Z", + "namespace": "pd3", "statCode": "smg-compact7-weapon-level", "statName": "Compact7 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:17:23.334Z", "updatedAt": "2023-11-02T10:22:14.118Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:03:24.441Z", + "namespace": "pd3", "statCode": "smg-compact7-weapon-points", "statName": "Compact7 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:03:24.441Z", "updatedAt": "2023-11-02T10:22:14.122Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:23:49.799Z", + "namespace": "pd3", "statCode": "smg-mp7-headshot-kills", "statName": "Deprecated HK MP7 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:23:49.799Z", "updatedAt": "2023-11-02T10:22:14.128Z", "userId": "UserId", + "value": 0.0, "tags": [ "MP7", "Combat", @@ -8353,13 +8353,13 @@ ] }, { + "createdAt": "2022-06-20T11:33:34.562Z", + "namespace": "pd3", "statCode": "smg-mp7-kills", "statName": "Deprecated HK MP7 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:33:34.562Z", "updatedAt": "2023-11-02T10:22:14.132Z", "userId": "UserId", + "value": 0.0, "tags": [ "MP7", "Combat", @@ -8367,31 +8367,31 @@ ] }, { + "createdAt": "2022-06-27T07:31:30.321Z", + "namespace": "pd3", "statCode": "smg-mp7-weapon-level", "statName": "HK MP7 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:31:30.321Z", "updatedAt": "2023-11-02T10:22:14.136Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:30:23.119Z", + "namespace": "pd3", "statCode": "smg-mp7-weapon-points", "statName": "HK MP7 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:30:23.119Z", "updatedAt": "2023-11-02T10:22:14.139Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:22:39.442Z", + "namespace": "pd3", "statCode": "smg-mpx-headshot-kills", "statName": "Deprecated SIG MPX Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:22:39.442Z", "updatedAt": "2023-11-02T10:22:14.143Z", "userId": "UserId", + "value": 0.0, "tags": [ "SIG", "Combat", @@ -8400,13 +8400,13 @@ ] }, { + "createdAt": "2022-06-20T11:32:11.402Z", + "namespace": "pd3", "statCode": "smg-mpx-kills", "statName": "Deprecated SIG MPX Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:32:11.402Z", "updatedAt": "2023-11-02T10:22:14.146Z", "userId": "UserId", + "value": 0.0, "tags": [ "MPX", "Combat", @@ -8414,31 +8414,31 @@ ] }, { + "createdAt": "2022-06-27T07:32:59.658Z", + "namespace": "pd3", "statCode": "smg-mpx-weapon-level", "statName": "SIG MPX Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:32:59.658Z", "updatedAt": "2023-11-02T10:22:14.150Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:32:17.626Z", + "namespace": "pd3", "statCode": "smg-mpx-weapon-points", "statName": "SIG MPX Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:32:17.626Z", "updatedAt": "2023-11-02T10:22:14.154Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:54:15.089Z", + "namespace": "pd3", "statCode": "smg-pc9-ads-kills", "statName": "PC9 Aim Down Sights Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:54:15.089Z", "updatedAt": "2023-11-02T10:22:14.158Z", "userId": "UserId", + "value": 0.0, "tags": [ "ADS", "Combat", @@ -8447,31 +8447,31 @@ ] }, { + "createdAt": "2023-03-06T14:59:22.107Z", + "namespace": "pd3", "statCode": "smg-pc9-armored-headshot-kills", "statName": "PC9 Armored Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:59:22.107Z", "updatedAt": "2023-11-02T10:22:14.162Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-08T16:06:50.967Z", + "namespace": "pd3", "statCode": "smg-pc9-four-mods-equipped", "statName": "PC9 Four Mods Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-08T16:06:50.967Z", "updatedAt": "2023-11-02T10:22:14.166Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:49:40.177Z", + "namespace": "pd3", "statCode": "smg-pc9-full-mod-unlock", "statName": "PC9 Full Mod Unlock", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:49:40.177Z", "updatedAt": "2023-11-02T10:22:14.170Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "PC9", @@ -8480,13 +8480,13 @@ ] }, { + "createdAt": "2022-11-15T14:49:06.193Z", + "namespace": "pd3", "statCode": "smg-pc9-headshot-kills", "statName": "PC9 Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:49:06.193Z", "updatedAt": "2023-11-02T10:22:14.174Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "PC9", @@ -8495,22 +8495,22 @@ ] }, { + "createdAt": "2023-03-06T14:46:49.035Z", + "namespace": "pd3", "statCode": "smg-pc9-hipfire-kills", "statName": "PC9 Hipfire Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:46:49.035Z", "updatedAt": "2023-11-02T10:22:14.178Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-15T14:04:04.494Z", + "namespace": "pd3", "statCode": "smg-pc9-kills", "statName": "PC9 Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-15T14:04:04.494Z", "updatedAt": "2023-11-02T10:22:14.182Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "PC9", @@ -8518,22 +8518,22 @@ ] }, { + "createdAt": "2023-03-06T15:12:46.668Z", + "namespace": "pd3", "statCode": "smg-pc9-longrange-kills", "statName": "PC9 Long Range Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:12:46.668Z", "updatedAt": "2023-11-02T10:22:14.185Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-16T08:29:23.296Z", + "namespace": "pd3", "statCode": "smg-pc9-mod-equipped", "statName": "PC9 Mod Equipped", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-16T08:29:23.296Z", "updatedAt": "2023-11-02T10:22:14.189Z", "userId": "UserId", + "value": 0.0, "tags": [ "Meta", "Equip", @@ -8542,67 +8542,67 @@ ] }, { + "createdAt": "2023-03-06T14:34:53.953Z", + "namespace": "pd3", "statCode": "smg-pc9-noreload-kills", "statName": "PC9 No Reload Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T14:34:53.953Z", "updatedAt": "2023-11-02T10:22:14.193Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:40:05.098Z", + "namespace": "pd3", "statCode": "smg-pc9-specialenemies-kills", "statName": "PC9 Special Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:40:05.098Z", "updatedAt": "2023-11-02T10:22:14.197Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:21:53.615Z", + "namespace": "pd3", "statCode": "smg-pc9-suppressor-kills", "statName": "PC9 Suppressor Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:21:53.615Z", "updatedAt": "2023-11-02T10:22:14.200Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-03-06T15:31:06.811Z", + "namespace": "pd3", "statCode": "smg-pc9-twoenemies-kills", "statName": "PC9 Two Enemies Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-03-06T15:31:06.811Z", "updatedAt": "2023-11-02T10:22:14.204Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-11-23T16:16:38.961Z", + "namespace": "pd3", "statCode": "smg-pc9-weapon-level", "statName": "PC9 Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:16:38.961Z", "updatedAt": "2023-11-02T10:22:14.207Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-11-23T16:02:52.876Z", + "namespace": "pd3", "statCode": "smg-pc9-weapon-points", "statName": "PC9 Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-11-23T16:02:52.876Z", "updatedAt": "2023-11-02T10:22:14.211Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-20T12:20:14.732Z", + "namespace": "pd3", "statCode": "smg-uzipro-headshot-kills", "statName": "Deprecated IWI Uzi Pro Headshot Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T12:20:14.732Z", "updatedAt": "2023-11-02T10:22:14.215Z", "userId": "UserId", + "value": 0.0, "tags": [ "Uzi", "Combat", @@ -8611,13 +8611,13 @@ ] }, { + "createdAt": "2022-06-20T11:31:02.057Z", + "namespace": "pd3", "statCode": "smg-uzipro-kills", "statName": "Deprecated IWI Uzi Pro Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-20T11:31:02.057Z", "updatedAt": "2023-11-02T10:22:14.218Z", "userId": "UserId", + "value": 0.0, "tags": [ "Uzi", "Combat", @@ -8625,31 +8625,31 @@ ] }, { + "createdAt": "2022-06-27T07:34:20.060Z", + "namespace": "pd3", "statCode": "smg-uzipro-weapon-level", "statName": "IWI Uzi Pro Weapon Level", - "value": 1.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:34:20.060Z", "updatedAt": "2023-11-02T10:22:14.222Z", - "userId": "UserId" + "userId": "UserId", + "value": 1.0 }, { + "createdAt": "2022-06-27T07:33:48.614Z", + "namespace": "pd3", "statCode": "smg-uzipro-weapon-points", "statName": "IWI Uzi Pro Weapon Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-27T07:33:48.614Z", "updatedAt": "2023-11-02T10:22:14.226Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T17:08:27.687Z", + "namespace": "pd3", "statCode": "smoke-grenade-affected-enemies", "statName": "Smoke Grenade Affected Enemies", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:08:27.687Z", "updatedAt": "2023-11-02T10:22:14.230Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Smoke", @@ -8657,13 +8657,13 @@ ] }, { + "createdAt": "2022-06-16T14:39:04.651Z", + "namespace": "pd3", "statCode": "sniper-kills", "statName": "Sniper Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:39:04.651Z", "updatedAt": "2023-11-02T10:22:14.233Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -8671,125 +8671,125 @@ ] }, { + "createdAt": "2022-09-17T08:13:21.326Z", + "namespace": "pd3", "statCode": "strategist-progression-code", "statName": "Strategist Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:13:21.326Z", "updatedAt": "2023-11-02T10:22:14.237Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:12:53.567Z", + "namespace": "pd3", "statCode": "strategist-research-code", "statName": "Strategist Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:12:53.567Z", "updatedAt": "2023-11-02T10:22:14.241Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:37:34.660Z", + "namespace": "pd3", "statCode": "stun-enemy", "statName": "Stun Enemy", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:37:34.660Z", "updatedAt": "2023-11-02T10:22:14.244Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "Stun" ] }, { + "createdAt": "2022-09-17T08:14:06.202Z", + "namespace": "pd3", "statCode": "tactician-progression-code", "statName": "Tactician Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:14:06.202Z", "updatedAt": "2023-11-02T10:22:14.248Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:13:44.325Z", + "namespace": "pd3", "statCode": "tactician-research-code", "statName": "Tactician Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:13:44.325Z", "updatedAt": "2023-11-02T10:22:14.251Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:14:50.395Z", + "namespace": "pd3", "statCode": "tank-progression-code", "statName": "Tank Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:14:50.395Z", "updatedAt": "2023-11-02T10:22:14.255Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:14:27.443Z", + "namespace": "pd3", "statCode": "tank-research-code", "statName": "Tank Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:14:27.443Z", "updatedAt": "2023-11-02T10:22:14.259Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-02-14T14:47:57.819Z", + "namespace": "pd3", "statCode": "taser-battery-enemy-stuns", "statName": "Taser Battery Enemy Stuns", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-02-14T14:47:57.819Z", "updatedAt": "2023-11-02T10:22:14.263Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.525Z", + "namespace": "pd3", "statCode": "taser-battery-enemy-stuns-epic", "statName": "Taser Battery Enemy Stuns Epic", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.525Z", "updatedAt": "2023-11-02T10:22:14.267Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:20.995Z", + "namespace": "pd3", "statCode": "taser-battery-enemy-stuns-playstation", "statName": "Taser Battery Enemy Stuns PlayStation", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:20.995Z", "updatedAt": "2023-11-02T10:22:14.270Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.394Z", + "namespace": "pd3", "statCode": "taser-battery-enemy-stuns-steam", "statName": "Taser Battery Enemy stuns Steam", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.394Z", "updatedAt": "2023-11-02T10:22:14.274Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-09-05T07:11:21.518Z", + "namespace": "pd3", "statCode": "taser-battery-enemy-stuns-xbox", "statName": "Taser Battery Enemy Stuns XBox", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-09-05T07:11:21.518Z", "updatedAt": "2023-11-02T10:22:14.278Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-16T14:35:55.902Z", + "namespace": "pd3", "statCode": "taser-kills", "statName": "Taser Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-16T14:35:55.902Z", "updatedAt": "2023-11-02T10:22:14.282Z", "userId": "UserId", + "value": 0.0, "tags": [ "Combat", "Kill", @@ -8797,13 +8797,13 @@ ] }, { + "createdAt": "2023-01-13T17:28:50.827Z", + "namespace": "pd3", "statCode": "throwingknife-kills", "statName": "Throwing Knife Kills", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T17:28:50.827Z", "updatedAt": "2023-11-02T10:22:14.286Z", "userId": "UserId", + "value": 0.0, "tags": [ "Knife", "Combat", @@ -8811,263 +8811,443 @@ ] }, { + "createdAt": "2022-09-17T08:15:36.349Z", + "namespace": "pd3", "statCode": "transporter-progression-code", "statName": "Transporter Progression Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:15:36.349Z", "updatedAt": "2023-11-02T10:22:14.290Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-09-17T08:15:15.437Z", + "namespace": "pd3", "statCode": "transporter-research-code", "statName": "Transporter Research Level ID", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-09-17T08:15:15.437Z", "updatedAt": "2023-11-02T10:22:14.294Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2023-01-13T14:38:16.034Z", + "namespace": "pd3", "statCode": "use-ecm", "statName": "Use ECM", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:38:16.034Z", "updatedAt": "2023-11-02T10:22:14.298Z", "userId": "UserId", + "value": 0.0, "tags": [ "Heist", "ECM" ] }, { + "createdAt": "2023-01-13T14:28:44.630Z", + "namespace": "pd3", "statCode": "use-microcamera", "statName": "Use Micro Cameras", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2023-01-13T14:28:44.630Z", "updatedAt": "2023-11-02T10:22:14.302Z", "userId": "UserId", + "value": 0.0, "tags": [ "Micro", "Heist" ] }, { + "createdAt": "2022-05-05T13:54:37.388Z", + "namespace": "pd3", "statCode": "weapon-level-608e2ed558594f4097694d8c8abedf8b", "statName": "LEGACY Pistol P226 Weapon progression level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-05T13:54:37.388Z", "updatedAt": "2023-11-02T10:22:14.306Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-18T15:08:36.326Z", + "namespace": "pd3", "statCode": "weapon-level-64126b1908e34b3ba57c6aea20c9757b", "statName": "LEGACY Revolver SW29 Weapon Progression Level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-18T15:08:36.326Z", "updatedAt": "2023-11-02T10:22:14.309Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:18:15.297Z", + "namespace": "pd3", "statCode": "weapon-level-assaultrifle-m4a1", "statName": "LEGACY Weapon Level Assult Rifle M4A1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:18:15.297Z", "updatedAt": "2023-11-02T10:22:14.313Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-03T07:23:57.103Z", + "namespace": "pd3", "statCode": "weapon-level-bd59f1eb7e2e4ee398923418bfe26b0c", "statName": "LEGACY Marksman R700 weapon progression level", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-03T07:23:57.103Z", "updatedAt": "2023-11-02T10:22:14.317Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:16:00.812Z", + "namespace": "pd3", "statCode": "weapon-level-m32a1-mgl", "statName": "LEGACY Weapon Level M32A1 MGL", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:16:00.812Z", "updatedAt": "2023-11-02T10:22:14.321Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T11:00:26.488Z", + "namespace": "pd3", "statCode": "weapon-level-marksman-r700", "statName": "LEGACY Weapon level Marksman R700", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T11:00:26.488Z", "updatedAt": "2023-11-02T10:22:14.324Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T05:57:18.261Z", + "namespace": "pd3", "statCode": "weapon-level-pistol-p226", "statName": "LEGACY Weapon Level Pistol P226", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T05:57:18.261Z", "updatedAt": "2023-11-02T10:22:14.328Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T11:01:45.007Z", + "namespace": "pd3", "statCode": "weapon-level-revolver-sw29", "statName": "LEGACY Weapon Level Revolver SW29", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T11:01:45.007Z", "updatedAt": "2023-11-02T10:22:14.332Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:13:50.915Z", + "namespace": "pd3", "statCode": "weapon-level-shotgun-r870", "statName": "Weapon level Shotgun R870", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:13:50.915Z", "updatedAt": "2023-11-02T10:22:14.336Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T06:43:45.687Z", + "namespace": "pd3", "statCode": "weapon-level-smg-mp7", "statName": "Weapon Level SMG MP7", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T06:43:45.687Z", "updatedAt": "2023-11-02T10:22:14.340Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T06:05:13.281Z", + "namespace": "pd3", "statCode": "weapon-level-smg-uzipro", "statName": "Weapon Level SMG UZIPRO", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T06:05:13.281Z", "updatedAt": "2023-11-02T10:22:14.344Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-05T13:53:42.081Z", + "namespace": "pd3", "statCode": "weapon-points-608e2ed558594f4097694d8c8abedf8b", "statName": "Pistol P226 weapon progression points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-05T13:53:42.081Z", "updatedAt": "2023-11-02T10:22:14.348Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-18T15:09:52.219Z", + "namespace": "pd3", "statCode": "weapon-points-64126b1908e34b3ba57c6aea20c9757b", "statName": "Revolver 29 Weapon Progression Points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-18T15:09:52.219Z", "updatedAt": "2023-11-02T10:22:14.352Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:17:45.051Z", + "namespace": "pd3", "statCode": "weapon-points-assaultrifle-m4a1", "statName": "Weapon Points Assault Riffle M4A1", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:17:45.051Z", "updatedAt": "2023-11-02T10:22:14.356Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-03T07:22:12.233Z", + "namespace": "pd3", "statCode": "weapon-points-bd59f1eb7e2e4ee398923418bfe26b0c", "statName": "Marksman R700 weapon progression points", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-03T07:22:12.233Z", "updatedAt": "2023-11-02T10:22:14.360Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:15:27.610Z", + "namespace": "pd3", "statCode": "weapon-points-m32a1-mgl", "statName": "Weapon points M32A1 MGL", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:15:27.610Z", "updatedAt": "2023-11-02T10:22:14.364Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T10:59:54.323Z", + "namespace": "pd3", "statCode": "weapon-points-marksman-r700", "statName": "Weapon points for Marksman R700", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T10:59:54.323Z", "updatedAt": "2023-11-02T10:22:14.367Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:14:35.264Z", + "namespace": "pd3", "statCode": "weapon-points-pistol-p226", "statName": "Weapon Points Pistol P226", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:14:35.264Z", "updatedAt": "2023-11-02T10:22:14.371Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T11:01:11.018Z", + "namespace": "pd3", "statCode": "weapon-points-revolver-sw29", "statName": "Weapon Points Revolver SW29", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T11:01:11.018Z", "updatedAt": "2023-11-02T10:22:14.375Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:13:22.321Z", + "namespace": "pd3", "statCode": "weapon-points-shotgun-r870", "statName": "Weapon points Shotgun R870", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:13:22.321Z", "updatedAt": "2023-11-02T10:22:14.379Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-05-23T12:16:44.529Z", + "namespace": "pd3", "statCode": "weapon-points-smg-mp7", "statName": "Weapon points SMG MP7", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-05-23T12:16:44.529Z", "updatedAt": "2023-11-02T10:22:14.382Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2022-06-13T06:04:15.449Z", + "namespace": "pd3", "statCode": "weapon-points-smg-uzipro", "statName": "Weapon Points SMG UZIRPO", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2022-06-13T06:04:15.449Z", "updatedAt": "2023-11-02T10:22:14.386Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-02T08:30:02.224Z", + "namespace": "pd3", "statCode": "weaponprogression23cdde1e5cb540a6af317678a824e", "statName": "Weapon progression Shotgun R870", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-02T08:30:02.224Z", "updatedAt": "2023-11-02T10:22:14.390Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 }, { + "createdAt": "2021-11-03T10:49:51.929Z", + "namespace": "pd3", "statCode": "wp23cdde1e5cb540a6af317678a824ed49", "statName": "Weapon Progression Shotgun R870", - "value": 0.0, - "namespace": "pd3", - "createdAt": "2021-11-03T10:49:51.929Z", "updatedAt": "2023-11-02T10:22:14.393Z", - "userId": "UserId" + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:23:27.034Z", + "namespace": "pd3", + "statCode": "ammo-pickup", + "statName": "Ammo Pickup", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:38:38.241Z", + "namespace": "pd3", + "statCode": "completed-heists", + "statName": "Completed Heists", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:55:30.867Z", + "namespace": "pd3", + "statCode": "completed-heists-instant-loot-taken", + "statName": "Completed Heists Instant Loot", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:38:38.212Z", + "namespace": "pd3", + "statCode": "completed-heists-no-custody", + "statName": "Completed Heists No Custody", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:38:38.228Z", + "namespace": "pd3", + "statCode": "completed-heists-secured-bags", + "statName": "Completed Heists Secure Bags", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:38:38.221Z", + "namespace": "pd3", + "statCode": "completed-heists-survive-3-assault", + "statName": "Completed Heists 3 assaults", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:34:37.026Z", + "namespace": "pd3", + "statCode": "enemy-kills-overkill-weapon", + "statName": "OVK Weapon Kills", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:24:06.996Z", + "namespace": "pd3", + "statCode": "enemy-kills-silenced-weapon", + "statName": "Enemy Kills Silenced Weapon", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-17T12:47:14.419Z", + "namespace": "pd3", + "statCode": "fortitude-research-code", + "statName": "Fortitude research code", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:20:57.057Z", + "namespace": "pd3", + "statCode": "gain-speed", + "statName": "Gain Rush buff", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:23:37.026Z", + "namespace": "pd3", + "statCode": "hack-cameras", + "statName": "Hack Cameras", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:21:16.999Z", + "namespace": "pd3", + "statCode": "mark-enemy", + "statName": "Mark Enemies", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-17T12:06:25.973Z", + "namespace": "pd3", + "statCode": "mark-enemy-camera", + "statName": "Mark Enemies Camera", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:38:39.639Z", + "namespace": "pd3", + "statCode": "scrambler-research-code", + "statName": "Scrambler research code", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:36:37.016Z", + "namespace": "pd3", + "statCode": "secure-bags", + "statName": "Secure Bags", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:36:37.023Z", + "namespace": "pd3", + "statCode": "secure-bags-assault-started", + "statName": "Secure Bags Loud", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:53:25.466Z", + "namespace": "pd3", + "statCode": "secure-bags-no-alarm", + "statName": "Secure Bags Stealth", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:36:37.03Z", + "namespace": "pd3", + "statCode": "secure-money-bags", + "statName": "Secure Bags Money", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-17T12:45:05.991Z", + "namespace": "pd3", + "statCode": "special-enemy-kills", + "statName": "Special Enemy Kills", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 + }, + { + "createdAt": "2024-09-13T19:24:06.976Z", + "namespace": "pd3", + "statCode": "zip-tie", + "statName": "Zip-tie Civians", + "updatedAt": "2024-09-28T12:35:02Z", + "userId": "UserId", + "value": 0.0 } ] \ No newline at end of file diff --git a/PayCheckServerLib/Files/TimeBasedPlayerContent.json b/PayCheckServerLib/Files/TimeBasedPlayerContent.json new file mode 100644 index 0000000..893fa00 --- /dev/null +++ b/PayCheckServerLib/Files/TimeBasedPlayerContent.json @@ -0,0 +1,25 @@ +{ + "namespace": "pd3", + "key": "time-based-player-content", + "set_by": "SERVER", + "value": { + "MaskOfTheWeek": { + "MaskOfTheWeekBlockArray": [ + { + "MaskOfTheWeekSkuArray": [ + "pd3_cosmetics_mask_pdstore_13", + "pd3_cosmetics_mask_pdstore_11", + "pd3_cosmetics_mask_pdstore_09", + "pd3_cosmetics_mask_pdstore_10", + "pd3_cosmetics_mask_pdstore_14", + "pd3_cosmetics_mask_pdstore_12" + ], + "StartDate": "2024.09.16-00.00.00", + "StopDate": "2024.11.03-23.59.00" + } + ] + } + }, + "created_at": "2024-04-30T08:45:14.732Z", + "updated_at": "2024-09-16T11:09:55.575Z" +} \ No newline at end of file diff --git a/PayCheckServerLib/Files/UpdatedAtTimes.json b/PayCheckServerLib/Files/UpdatedAtTimes.json index 6148288..4e9c890 100644 --- a/PayCheckServerLib/Files/UpdatedAtTimes.json +++ b/PayCheckServerLib/Files/UpdatedAtTimes.json @@ -1,4 +1,4 @@ { - "Items.json": "2023-12-12T10:44:14.726Z", - "ChallengeRecords.json": "2023-09-21T08:33:09Z" + "Items.json": "2024-06-27T08:28:10.376Z", + "ChallengeRecords.json": "2024-07-03T15:53:12.202Z" } \ No newline at end of file diff --git a/PayCheckServerLib/Helpers/ArgumentHandler.cs b/PayCheckServerLib/Helpers/ArgumentHandler.cs index 690d730..51f9b51 100644 --- a/PayCheckServerLib/Helpers/ArgumentHandler.cs +++ b/PayCheckServerLib/Helpers/ArgumentHandler.cs @@ -11,6 +11,8 @@ public class ArgumentHandler #else public static bool Debug { get; internal set; } = false; #endif + + public static bool DebugAll { get; internal set; } = false; public static bool AskHelp { get; internal set; } = false; public static bool UseBetaFiles { get; internal set; } = false; public static bool ForceUpdate { get; internal set; } = false; @@ -24,6 +26,7 @@ public static void MainArg(string[] args) #else Debug = HasParameter(args, "-debug"); #endif + DebugAll = HasParameter(args, "-debugall"); AskHelp = HasParameter(args, "-help"); UseBetaFiles = HasParameter(args, "-beta"); ForceUpdate = HasParameter(args, "-forceupdate"); diff --git a/PayCheckServerLib/Helpers/SaveFileHandler.cs b/PayCheckServerLib/Helpers/SaveFileHandler.cs index ce0d652..c198711 100644 --- a/PayCheckServerLib/Helpers/SaveFileHandler.cs +++ b/PayCheckServerLib/Helpers/SaveFileHandler.cs @@ -48,7 +48,8 @@ public enum SaveType progressionsavegame, PlatformBackendSettingsData, statitems, - currency + currency, + challenges }; } } diff --git a/PayCheckServerLib/Jsons/ChallengeCloudSaveRecord.cs b/PayCheckServerLib/Jsons/ChallengeCloudSaveRecord.cs new file mode 100644 index 0000000..7b9783a --- /dev/null +++ b/PayCheckServerLib/Jsons/ChallengeCloudSaveRecord.cs @@ -0,0 +1,45 @@ +using Newtonsoft.Json; +using PayCheckServerLib.Jsons.Basic; + +namespace PayCheckServerLib.Jsons +{ + public class ChallengeCloudSaveRecord_RSP : TopLevel + { + [JsonProperty("user_id")] + public string UserId { get; set; } + + [JsonProperty("is_public")] + public bool IsPublic { get; set; } + } + + public class ChallengeCloudSaveRecord + { + public int CurrentVersion { get; set; } = 23; + public progression_save_challenges ProgressionSaveChallenges { get; set; } = new(); + public class progression_save_challenges + { + public _dailyChallengeBlockMap dailyChallengeBlockMap { get; set; } = new(); + public class _dailyChallengeBlockMap + { + public List challengeArray { get; set; } = new(); + } + + public string dailyChallengePullDate { get; set; } = "2024.09.17-11.32.37"; + public bool fetchedFromAPI { get; set; } = true; + public bool rerollAvailable { get; set; } = false; + public List savedChallenges { get; set; } = new(); + } + } + + public class ChallenegeID_Completed + { + public string challengeId { get; set; } + public bool challengeCompleted { get; set; } + } + + public class Challenege_NewStart : ChallenegeID_Completed + { + public int creationObjectiveStartStatValue { get; set; } + } + +} diff --git a/PayCheckServerLib/Jsons/EdgeGapBeacons.cs b/PayCheckServerLib/Jsons/EdgeGapBeacons.cs new file mode 100644 index 0000000..a9e86f9 --- /dev/null +++ b/PayCheckServerLib/Jsons/EdgeGapBeacons.cs @@ -0,0 +1,16 @@ +namespace PayCheckServerLib.Jsons; + +public class EdgeGapBeacons +{ + public List servers = []; + + public class Beacon + { + public string ip { get; set; } = "127.0.0.1"; + public string last_update { get; set; } + public int port { get; set; } = 8888; + public string region { get; set; } = "sydney"; + public string status { get; set; } = "ACTIVE"; + } + +} diff --git a/PayCheckServerLib/PayCheckServerLib.csproj b/PayCheckServerLib/PayCheckServerLib.csproj index 959bd3a..a893947 100644 --- a/PayCheckServerLib/PayCheckServerLib.csproj +++ b/PayCheckServerLib/PayCheckServerLib.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 enable enable https://github.com/SlejmUr/PayCheck3 @@ -36,8 +36,8 @@ - - + + diff --git a/PayCheckServerLib/Responses/BasicResponse.cs b/PayCheckServerLib/Responses/BasicResponse.cs index 00559e3..ff87a47 100644 --- a/PayCheckServerLib/Responses/BasicResponse.cs +++ b/PayCheckServerLib/Responses/BasicResponse.cs @@ -6,140 +6,136 @@ using PayCheckServerLib.Helpers; using PayCheckServerLib.Jsons; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class BasicResponse { - public class BasicResponse + [HTTP("GET", "/basic/v1/public/namespaces/{namespace}/profiles/public?userIds={userId}")] + public static bool GetUserProfile(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/basic/v1/public/namespaces/{namespace}/profiles/public?userIds={userId}")] - public static bool GetUserProfile(HttpRequest _, ServerStruct serverStruct) - { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - - var resp = new Profile.ProfileResp() - { - UserId = serverStruct.Parameters["userId"], - Namespace = serverStruct.Parameters["namespace"], - PublicId = "AAAAAAAA" - }; - - response.SetBody(JsonConvert.SerializeObject(resp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } - [HTTP("POST", "/basic/v1/public/namespaces/{namespace}/users/me/profiles")] - public static bool PostCurrentUserProfile(HttpRequest _, ServerStruct serverStruct) - { - // take no action - return GetCurrentUserProfile(_, serverStruct); - } - [HTTP("GET", "/basic/v1/public/namespaces/{namespace}/users/me/profiles")] - public static bool GetCurrentUserProfile(HttpRequest _, ServerStruct serverStruct) + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + + var resp = new Profile.ProfileResp() { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); + UserId = serverStruct.Parameters["userId"], + Namespace = serverStruct.Parameters["namespace"], + PublicId = "AAAAAAAA" + }; + + response.SetBody(JsonConvert.SerializeObject(resp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("POST", "/basic/v1/public/namespaces/{namespace}/users/me/profiles")] + public static bool PostCurrentUserProfile(HttpRequest _, ServerStruct serverStruct) => GetCurrentUserProfile(_, serverStruct); + + [HTTP("GET", "/basic/v1/public/namespaces/{namespace}/users/me/profiles")] + public static bool GetCurrentUserProfile(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); - var resp = new Profile.ProfileResp() - { - UserId = TokenHelper.ReadToken(serverStruct.Headers["authorization"].Split(" ")[1]).UserId, + var resp = new Profile.ProfileResp() + { + UserId = TokenHelper.ReadToken(serverStruct.Headers["authorization"].Split(" ")[1]).UserId, Namespace = serverStruct.Parameters["namespace"], PublicId = "AAAAAAAA" - }; + }; - response.SetBody(JsonConvert.SerializeObject(resp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + response.SetBody(JsonConvert.SerializeObject(resp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("HEAD", "/generate_204")] - public static bool Generate204(HttpRequest _, ServerStruct serverStruct) - { - serverStruct.Response.MakeOkResponse(204); - serverStruct.SendResponse(); - return true; - } + [HTTP("HEAD", "/generate_204")] + public static bool Generate204(HttpRequest _, ServerStruct serverStruct) + { + serverStruct.Response.MakeOkResponse(204); + serverStruct.SendResponse(); + return true; + } [HTTP("GET", "/qosm/public/namespaces/pd3/qos?status=ACTIVE")] - public static bool GetActiveQOS(HttpRequest _, ServerStruct serverStruct) + public static bool GetActiveQOS(HttpRequest _, ServerStruct serverStruct) => QOSM_Public_QOS(_, serverStruct); + + [HTTP("GET", "/qosm/public/qos")] + public static bool QOSM_Public_QOS(HttpRequest _, ServerStruct serverStruct) { - return QOSM_Public_QOS(_, serverStruct); - } - [HTTP("GET", "/qosm/public/qos")] - public static bool QOSM_Public_QOS(HttpRequest _, ServerStruct serverStruct) + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + var rsp = new JsonServers() { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - var rsp = new JsonServers() - { - Servers = new() - }; - foreach (var server in ConfigHelper.ServerConfig.DS_Servers) - { - rsp.Servers.Add(new() - { - Alias = server.Alias, - Status = server.Status, - Ip = server.Ip, - LastUpdate = "2023-08-06T10:00:00.000000000Z", - Port = server.Port, - Region = server.Region - }); - } - - response.SetBody(JsonConvert.SerializeObject(rsp, Formatting.Indented)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } - - [HTTP("GET", "/basic/v1/public/misc/time")] - public static bool Time(HttpRequest _, ServerStruct serverStruct) + Servers = new() + }; + foreach (var server in ConfigHelper.ServerConfig.DS_Servers) { - if (serverStruct.Headers.ContainsKey("cookie")) + rsp.Servers.Add(new() { - var tokens = TokenHelper.ReadFromHeader(serverStruct.Headers); - Debugger.PrintDebug($"{tokens.AccessToken.UserId}({tokens.AccessToken.Name}) Is still in the server!"); - } - - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - var rsp = new Time() - { - CurrentTime = DateTime.UtcNow.ToString("o") - }; - response.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + Alias = server.Alias, + Status = server.Status, + Ip = server.Ip, + LastUpdate = "2023-08-06T10:00:00.000000000Z", + Port = server.Port, + Region = server.Region + }); } + response.SetBody(JsonConvert.SerializeObject(rsp, Formatting.Indented)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - - [HTTP("GET", "/lobby/v1/messages")] - public static bool LobbyMessages(HttpRequest _, ServerStruct serverStruct) + [HTTP("GET", "/basic/v1/public/misc/time")] + public static bool Time(HttpRequest _, ServerStruct serverStruct) + { + if (serverStruct.Headers.ContainsKey("cookie")) { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetBody(File.ReadAllBytes("Files/messages.json")); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + var tokens = TokenHelper.ReadFromHeader(serverStruct.Headers); + Debugger.PrintDebug($"{tokens.AccessToken.UserId}({tokens.AccessToken.Name}) Is still in the server!"); } - [HTTP("GET", "/iam/v3/location/country")] - public static bool Country(HttpRequest _, ServerStruct serverStruct) + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + var rsp = new Time() { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetBody(File.ReadAllBytes("Files/Country.json")); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + CurrentTime = DateTime.UtcNow.ToString("o") + }; + response.SetBody(JsonConvert.SerializeObject(rsp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + + + [HTTP("GET", "/lobby/v1/messages")] + public static bool LobbyMessages(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetBody(File.ReadAllBytes("Files/messages.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + + [HTTP("GET", "/iam/v3/location/country")] + public static bool Country(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetBody(File.ReadAllBytes("Files/Country.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Challenge.cs b/PayCheckServerLib/Responses/Challenge.cs index 1534589..d80fbd6 100644 --- a/PayCheckServerLib/Responses/Challenge.cs +++ b/PayCheckServerLib/Responses/Challenge.cs @@ -7,41 +7,41 @@ using PayCheckServerLib.Jsons; using PayCheckServerLib.Jsons.Basic; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Challenge { - public class Challenge + [HTTP("GET", "/challenge/v1/public/namespaces/{namespace}/users/{userId}/eligibility")] + public static bool ChallengeEligibility(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/challenge/v1/public/namespaces/{namespace}/users/{userId}/eligibility")] - public static bool ChallengeEligibility(HttpRequest _, ServerStruct serverStruct) - { - ResponseCreator creator = new(); - creator.SetBody("{\n \"isComply\": true\n}"); - serverStruct.Response = creator.GetResponse(); - serverStruct.SendResponse(); - return true; - } + ResponseCreator creator = new(); + creator.SetBody("{\n \"isComply\": true\n}"); + serverStruct.Response = creator.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/challenge/v1/public/namespaces/{namespace}/users/me/records?limit={limit}&offset={offset}")] - public static bool ChallengeRecordsSplit(HttpRequest _, ServerStruct serverStruct) + [HTTP("GET", "/challenge/v1/public/namespaces/{namespace}/users/me/records?limit={limit}&offset={offset}")] + public static bool ChallengeRecordsSplit(HttpRequest _, ServerStruct serverStruct) + { + return false; + var offset = int.Parse(serverStruct.Parameters["offset"]); + var limit = int.Parse(serverStruct.Parameters["limit"]); + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + ResponseCreator creator = new(); + var challenges = JsonConvert.DeserializeObject>(File.ReadAllText("Files/ChallengeRecords.json")) ?? throw new Exception("ChallengeRecords is null!"); + challenges.Data.Skip(offset).Take(limit); + foreach (var item in challenges.Data) { - var offset = int.Parse(serverStruct.Parameters["offset"]); - var limit = int.Parse(serverStruct.Parameters["limit"]); - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - ResponseCreator creator = new(); - var challenges = JsonConvert.DeserializeObject>(File.ReadAllText("Files/ChallengeRecords.json")) ?? throw new Exception("ChallengeRecords is null!"); - challenges.Data.Skip(offset).Take(limit); - foreach (var item in challenges.Data) - { - item.UserId = token.UserId; - item.RecordId = token.UserId; - item.UpdatedAt = TimeHelper.GetOTime(); - } - - creator.SetBody(JsonConvert.SerializeObject(challenges)); - serverStruct.Response = creator.GetResponse(); - serverStruct.SendResponse(); - return true; + item.UserId = token.UserId; + item.RecordId = token.UserId; + item.UpdatedAt = TimeHelper.GetOTime(); } + + creator.SetBody(JsonConvert.SerializeObject(challenges)); + serverStruct.Response = creator.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/CloudSave.cs b/PayCheckServerLib/Responses/CloudSave.cs index 8cfa8c5..77fbcee 100644 --- a/PayCheckServerLib/Responses/CloudSave.cs +++ b/PayCheckServerLib/Responses/CloudSave.cs @@ -14,34 +14,58 @@ public class CloudSave public static bool TimeBasedPlayerContent(HttpRequest _, ServerStruct serverStruct) { var response = new ResponseCreator(); - response.SetBody( - JsonConvert.SerializeObject(JsonConvert.DeserializeObject(File.ReadAllText("Files/TimeBasedPlayerContent.json")))); + response.SetBody(File.ReadAllText("Files/TimeBasedPlayerContent.json")); serverStruct.Response = response.GetResponse(); serverStruct.SendResponse(); return true; } + public static bool FeatureToggle(HttpRequest _, ServerStruct serverStruct) { var response = new ResponseCreator(); - response.SetBody( - JsonConvert.SerializeObject(JsonConvert.DeserializeObject(File.ReadAllText("Files/FeatureToggle.json")))); + response.SetBody(File.ReadAllText("Files/FeatureToggle.json")); serverStruct.Response = response.GetResponse(); serverStruct.SendResponse(); return true; } - public static bool ClientConfiguration(HttpRequest _, ServerStruct serverStruct) { var response = new ResponseCreator(); - response.SetBody( - JsonConvert.SerializeObject(JsonConvert.DeserializeObject(File.ReadAllText("Files/ClientConfiguration.json")))); + response.SetBody(File.ReadAllText("Files/ClientConfiguration.json")); serverStruct.Response = response.GetResponse(); serverStruct.SendResponse(); return true; } - [HTTP("GET", "/cloudsave/v1/namespaces/{namespace}/records/{recordtype}")] + public static bool ChallengeDailies(HttpRequest _, ServerStruct serverStruct) + { + var response = new ResponseCreator(); + response.SetBody(File.ReadAllText("Files/ChallengeDailies.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + public static bool BackEndProxyConfig(HttpRequest _, ServerStruct serverStruct) + { + var response = new ResponseCreator(); + response.SetBody(File.ReadAllText("Files/BackendProxyConfig.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + public static bool MatchMaking(HttpRequest _, ServerStruct serverStruct) + { + var response = new ResponseCreator(); + response.SetBody(File.ReadAllText("Files/BackendProxyConfig.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("GET", "/cloudsave/v1/namespaces/{namespace}/records/{recordtype}")] public static bool MainRecordsSplitter(HttpRequest request, ServerStruct serverStruct) { if (serverStruct.Parameters["recordtype"].Contains("weapon-translation-table-")) @@ -68,12 +92,22 @@ public static bool MainRecordsSplitter(HttpRequest request, ServerStruct serverS return InfamyTranslationTable(request, serverStruct); case "time-based-player-content": return TimeBasedPlayerContent(request, serverStruct); - case "client-configuration": - return ClientConfiguration(request, serverStruct); - case "feature-toggle": - return FeatureToggle(request, serverStruct); - } - Debugger.PrintError(String.Format("Unknown cloudsave item: {0}", serverStruct.Parameters["recordtype"])); + case "client-configuration": + return ClientConfiguration(request, serverStruct); + case "feature-toggle": + return FeatureToggle(request, serverStruct); + case "challenge-dailies": + return ChallengeDailies(request, serverStruct); + case "edgegap_beacons": + return EdgeGapBeacons(request, serverStruct); + case "backend-proxy-config": + return BackEndProxyConfig(request, serverStruct); + case "matchmaking": + return MatchMaking(request, serverStruct); + case "challenges": + return Records_Challenges(request, serverStruct); + } + Debugger.PrintError(string.Format("Unknown cloudsave item: {0}", serverStruct.Parameters["recordtype"])); return false; } @@ -125,6 +159,36 @@ public static bool NewsFeed(HttpRequest _, ServerStruct serverStruct) return true; } + public static bool EdgeGapBeacons(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new(); + string time = TimeHelper.GetZTime(); + TopLevel edgegap_beacons = new() + { + CreatedAt = "2024-07-02T12:00:49.27Z", + UpdatedAt = time, + Key = "edgegap_beacons", + Namespace = serverStruct.Parameters["namespace"], + SetBy = "SERVER", + Value = new() + { + servers = new() + { + new() + { + last_update = time, + } + + } + } + }; + response.SetBody(JsonConvert.SerializeObject(edgegap_beacons)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + public static bool InfamyTranslationTable(HttpRequest _, ServerStruct serverStruct) { ResponseCreator response = new(); @@ -154,22 +218,6 @@ public static bool InfamyTranslationTable(HttpRequest _, ServerStruct serverStru public static bool challengerecommendations(HttpRequest _, ServerStruct serverStruct) { ResponseCreator response = new(); - //InfamyTranslationTable.Basic; - /* - TopLevel table = new() - { - CreatedAt = "2023-06-27T12:18:00.00Z", - UpdatedAt = "2023-06-27T12:18:00.00Z", - Key = "challenge-recommendations", - Namespace = serverStruct.Parameters["namespace"], - SetBy = "SERVER", - Value = new() - { - BlockArray = new() - { - } - } - };*/ var table = JsonConvert.DeserializeObject>(File.ReadAllText("Files/ChallengeRecommendations.json")) ?? throw new Exception("ChallengeRecommendations is null!"); response.SetBody(JsonConvert.SerializeObject(table)); serverStruct.Response = response.GetResponse(); @@ -425,5 +473,72 @@ public static bool ProgressionsavegamePOST(HttpRequest request, ServerStruct ser serverStruct.SendResponse(); return true; } + + [HTTP("GET", "/cloudsave/v1/namespaces/{namespace}/users/{userId}/records/challenges")] + public static bool GETChallengesRecord(HttpRequest _, ServerStruct serverStruct) + { + var userID = serverStruct.Parameters["userId"]; + ChallengeCloudSaveRecord_RSP topLevel = new() + { + CreatedAt = TimeHelper.GetZTime(), + Key = "challenges", + Namespace = serverStruct.Parameters["namespace"], + SetBy = "CLIENT", + UpdatedAt = TimeHelper.GetZTime(), + IsPublic = false, + UserId = userID, + Value = new() + }; + + if (SaveFileHandler.IsUserExist(userID, serverStruct.Parameters["namespace"], SaveFileHandler.SaveType.challenges)) + { + topLevel.Value = JsonConvert.DeserializeObject(SaveFileHandler.ReadUserSTR(userID, serverStruct.Parameters["namespace"], SaveFileHandler.SaveType.challenges)); + } + + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(topLevel)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("POST", "/cloudsave/v1/namespaces/{namespace}/users/{userId}/records/challenges")] + public static bool POSTChallengesRecord(HttpRequest req, ServerStruct serverStruct) + { + var userID = serverStruct.Parameters["userId"]; + SaveFileHandler.SaveUser(userID, serverStruct.Parameters["namespace"], req.BodyBytes, SaveFileHandler.SaveType.challenges); + ChallengeCloudSaveRecord_RSP topLevel = new() + { + CreatedAt = TimeHelper.GetZTime(), + Key = "challenges", + Namespace = serverStruct.Parameters["namespace"], + SetBy = "CLIENT", + UpdatedAt = TimeHelper.GetZTime(), + IsPublic = false, + UserId = userID, + Value = new() + }; + + if (SaveFileHandler.IsUserExist(userID, serverStruct.Parameters["namespace"], SaveFileHandler.SaveType.challenges)) + { + topLevel.Value = JsonConvert.DeserializeObject(SaveFileHandler.ReadUserSTR(userID, serverStruct.Parameters["namespace"], SaveFileHandler.SaveType.challenges)); + } + + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(topLevel)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("GET", "/cloudsave/v1/namespaces/pd3/records/challenges")] + public static bool Records_Challenges(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new(); + response.SetBody(File.ReadAllText("Files/ChallengeRecords.json")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } } } diff --git a/PayCheckServerLib/Responses/Currency.cs b/PayCheckServerLib/Responses/Currency.cs index 3021fc7..e8f28d4 100644 --- a/PayCheckServerLib/Responses/Currency.cs +++ b/PayCheckServerLib/Responses/Currency.cs @@ -6,57 +6,68 @@ using PayCheckServerLib.Helpers; using PayCheckServerLib.Jsons; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Currency { - public class Currency + [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currency}")] + public static bool GetUserCurrency(HttpRequest request, ServerStruct serverStruct) { - [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/wallets/{currency}")] - public static bool GetUserCurrency(HttpRequest request, ServerStruct serverStruct) + var userID = serverStruct.Parameters["userId"]; + var currencyType = serverStruct.Parameters["currency"]; + var nspace = serverStruct.Parameters["namespace"]; + var currencySymbol = currencyType == "CRED" ? "CREDITS" : currencyType; + // return fake data for now + Debugger.PrintDebug(String.Format("{0}_{1}_{2}", nspace, userID, currencyType)); + ResponseCreator response = new ResponseCreator(); + int balance = 0; + if (ConfigHelper.ServerConfig.InDevFeatures.GiveMeMoney > 0) + balance = ConfigHelper.ServerConfig.InDevFeatures.GiveMeMoney; + CurrencyJson currencyReponse = new() { - var userID = serverStruct.Parameters["userId"]; - var currencyType = serverStruct.Parameters["currency"]; - var nspace = serverStruct.Parameters["namespace"]; - var currencySymbol = currencyType == "CRED" ? "CREDITS" : currencyType; - // return fake data for now - Debugger.PrintDebug(String.Format("{0}_{1}_{2}", nspace, userID, currencyType)); - ResponseCreator response = new ResponseCreator(); - int balance = 0; - if (ConfigHelper.ServerConfig.InDevFeatures.GiveMeMoney > 0) - balance = ConfigHelper.ServerConfig.InDevFeatures.GiveMeMoney; - CurrencyJson currencyReponse = new() + Balance = balance, + CurrencyCode = currencyType, + CurrencySymbol = currencySymbol, + Id = String.Format("{0}_{1}_{2}", nspace, userID, currencyType), + Namespace = nspace, + Status = "ACTIVE", + UserId = userID, + WalletInfos = new() { - Balance = balance, - CurrencyCode = currencyType, - CurrencySymbol = currencySymbol, - Id = String.Format("{0}_{1}_{2}", nspace, userID, currencyType), - Namespace = nspace, - Status = "ACTIVE", - UserId = userID, - WalletInfos = new() + new() { - new() - { - Balance = balance, - BalanceOrigin = "System", - CreatedAt = "2023-08-05T03:23:16.598Z", - CurrencyCode = currencyType, - CurrencySymbol = currencySymbol, - Id = "8ab9cfab89c2807f0189c3b882f659c6", - Namespace = nspace, - Status = "ACTIVE", - TimeLimitedBalances = new(), - TotalPermanentBalance = balance, - TotalTimeLimitedBalance = 0, - UpdatedAt = "2023-08-05T03:23:16.612Z", - UserId = userID - } - }, - WalletStatus = "ACTIVE" - }; - response.SetBody(JsonConvert.SerializeObject(currencyReponse)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + Balance = balance, + BalanceOrigin = "System", + CreatedAt = "2023-08-05T03:23:16.598Z", + CurrencyCode = currencyType, + CurrencySymbol = currencySymbol, + Id = "8ab9cfab89c2807f0189c3b882f659c6", + Namespace = nspace, + Status = "ACTIVE", + TimeLimitedBalances = new(), + TotalPermanentBalance = balance, + TotalTimeLimitedBalance = 0, + UpdatedAt = "2023-08-05T03:23:16.612Z", + UserId = userID + } + }, + WalletStatus = "ACTIVE" + }; + switch (currencyType) + { + case "CASH": + currencyReponse.WalletInfos[0].Id = "8ab9a2588ab8676b018ab892a08804be"; + break; + case "GOLD": + currencyReponse.WalletInfos[0].Id = "8ab9b52b8abb77f5018abbafe969046d"; + break; + default: + break; } + + response.SetBody(JsonConvert.SerializeObject(currencyReponse)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Custom.cs b/PayCheckServerLib/Responses/Custom.cs index c94ee96..9e6a152 100644 --- a/PayCheckServerLib/Responses/Custom.cs +++ b/PayCheckServerLib/Responses/Custom.cs @@ -4,23 +4,22 @@ using NetCoreServer; using PayCheckServerLib.Helpers; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Custom { - public class Custom + [HTTP("POST", "/register?username={username}&platformId={pid}&platformType={ptype}&nspace={nspace}")] + public static bool RegisterUser(HttpRequest _, ServerStruct serverStruct) { - [HTTP("POST", "/register?username={username}&platformId={pid}&platformType={ptype}&nspace={nspace}")] - public static bool RegisterUser(HttpRequest _, ServerStruct serverStruct) - { - var username = serverStruct.Parameters["username"]; - var platformId = serverStruct.Parameters["pid"]; - var platformType = serverStruct.Parameters["ptype"]; - var platform = (TokenHelper.TokenPlatform)uint.Parse(platformType); - var nspace = serverStruct.Parameters["nspace"]; + var username = serverStruct.Parameters["username"]; + var platformId = serverStruct.Parameters["pid"]; + var platformType = serverStruct.Parameters["ptype"]; + var platform = (TokenHelper.TokenPlatform)uint.Parse(platformType); + var nspace = serverStruct.Parameters["nspace"]; - UserController.RegisterUser(platformId, platform, username, nspace); - serverStruct.Response.MakeOkResponse(); - serverStruct.SendResponse(); - return true; - } + UserController.RegisterUser(platformId, platform, username, nspace); + serverStruct.Response.MakeOkResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/DLCs.cs b/PayCheckServerLib/Responses/DLCs.cs index 9c29257..3264966 100644 --- a/PayCheckServerLib/Responses/DLCs.cs +++ b/PayCheckServerLib/Responses/DLCs.cs @@ -5,63 +5,61 @@ using Newtonsoft.Json; using PayCheckServerLib.Jsons.Basic; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class DLCs { - public class DLCs + public class PutDLC { - public class PutDLC - { - public string steamId { get; set; } - public string appId { get; set; } - } + public string steamId { get; set; } + public string appId { get; set; } + } - public partial class DLC_Value - { - [JsonProperty("data")] - public Dictionary Data { get; set; } + public partial class DLC_Value + { + [JsonProperty("data")] + public Dictionary Data { get; set; } - [JsonProperty("dlcType")] - public string DlcType { get; set; } - } + [JsonProperty("dlcType")] + public string DlcType { get; set; } + } - [HTTP("PUT", "/platform/public/namespaces/{namespace}/users/{userid}/dlc/steam/sync")] - public static bool PUT_DLC_SteamSync(HttpRequest _, ServerStruct serverStruct) - { - //var body = JsonConvert.DeserializeObject(request.Body); - ResponseCreator response = new ResponseCreator(204); - response.SetHeader("Content-Type", "application/json"); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); ; - return true; - } + [HTTP("PUT", "/platform/public/namespaces/{namespace}/users/{userid}/dlc/steam/sync")] + public static bool PUT_DLC_SteamSync(HttpRequest _, ServerStruct serverStruct) + { + //var body = JsonConvert.DeserializeObject(request.Body); + ResponseCreator response = new ResponseCreator(204); + response.SetHeader("Content-Type", "application/json"); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/cloudsave/v1/namespaces/{namespace}/records/dlc-entitlements")] - public static bool GETdlcentitlements(HttpRequest _, ServerStruct serverStruct) + [HTTP("GET", "/cloudsave/v1/namespaces/{namespace}/records/dlc-entitlements")] + public static bool GETdlcentitlements(HttpRequest _, ServerStruct serverStruct) + { + TopLevel dlc = new() { - TopLevel dlc = new() + SetBy = "SERVER", + CreatedAt = "2023-09-25T12:01:02.096Z", + Key = "dlc-entitlements", + Namespace = serverStruct.Parameters["namespace"], + UpdatedAt = "2023-09-25T12:01:02.096Z", + Value = new() { - SetBy = "SERVER", - CreatedAt = "2023-09-25T12:01:02.096Z", - Key = "dlc-entitlements", - Namespace = serverStruct.Parameters["namespace"], - UpdatedAt = "2023-09-25T12:01:02.096Z", - Value = new() - { - Data = new(), - DlcType = "STEAM" - } - }; - var data = JsonConvert.DeserializeObject>(File.ReadAllText("Files/DLC_Entiltements.json")); - dlc.Value.Data = data; - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetBody(JsonConvert.SerializeObject(dlc)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + Data = new(), + DlcType = "PSN" // WHY NOT REQUEST YOUR OWN DLC TYPE STARBREEZE ?? + } + }; + dlc.Value.Data = JsonConvert.DeserializeObject>(File.ReadAllText("Files/DLC_Entiltements.json"))!; + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetBody(JsonConvert.SerializeObject(dlc)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Entitlements.cs b/PayCheckServerLib/Responses/Entitlements.cs index 7a0e29d..b1065c4 100644 --- a/PayCheckServerLib/Responses/Entitlements.cs +++ b/PayCheckServerLib/Responses/Entitlements.cs @@ -3,87 +3,79 @@ using ModdableWebServer.Helper; using NetCoreServer; using Newtonsoft.Json; +using PayCheckServerLib.Helpers; using PayCheckServerLib.Jsons; using PayCheckServerLib.Jsons.Basic; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Entitlements { - public class Entitlements + [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/entitlements?limit={limit}")] + public static bool GetUserEntitlements(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/entitlements?limit={limit}")] - public static bool GetUserEntitlements(HttpRequest _, ServerStruct serverStruct) + try { - try + var time = TimeHelper.GetZTime(); + var responsecreator = new ResponseCreator(); + var entitlements = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Entitlements.json")) ?? throw new Exception("Entitlements is null!"); + var newentitlements = new List(); + foreach (var entitlement in entitlements.Data) { - var responsecreator = new ResponseCreator(); - var entitlements = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Entitlements.json")) ?? throw new Exception("Entitlements is null!"); - var newentitlements = new List(); - foreach (var entitlement in entitlements.Data) - { - entitlement.UserId = serverStruct.Parameters["userId"]; - newentitlements.Add(entitlement); - } - DataPaging payload = new() - { - Data = newentitlements, - Paging = new() - { - First = "", - Last = "", - Next = "", - Previous = "", - } - }; - responsecreator.SetBody(JsonConvert.SerializeObject(payload)); - serverStruct.Response = responsecreator.GetResponse(); - serverStruct.SendResponse(); - return true; + entitlement.UserId = serverStruct.Parameters["userId"]; + entitlement.UpdatedAt = time; + newentitlements.Add(entitlement); } - catch (Exception ex) + DataPaging payload = new() { - Debugger.PrintError(ex.ToString()); - } - return false; + Data = newentitlements, + Paging = new() + }; + responsecreator.SetBody(JsonConvert.SerializeObject(payload)); + serverStruct.Response = responsecreator.GetResponse(); + serverStruct.SendResponse(); + return true; } + catch (Exception ex) + { + Debugger.PrintError(ex.ToString()); + } + return false; + } - [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/entitlements?itemId={itemid}&limit={limit}")] - public static bool GetUserEntitlementsByItemId(HttpRequest _, ServerStruct serverStruct) + [HTTP("GET", "/platform/public/namespaces/{namespace}/users/{userId}/entitlements?itemId={itemid}&limit={limit}")] + public static bool GetUserEntitlementsByItemId(HttpRequest _, ServerStruct serverStruct) + { + try { - try + var time = TimeHelper.GetZTime(); + var responsecreator = new ResponseCreator(); + var entitlements = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Entitlements.json")) ?? throw new Exception("Entitlements is null!"); + var newentitlements = new List(); + foreach (var entitlement in entitlements.Data) { - var responsecreator = new ResponseCreator(); - var entitlements = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Entitlements.json")) ?? throw new Exception("Entitlements is null!"); - var newentitlements = new List(); - foreach (var entitlement in entitlements.Data) + if (entitlement.ItemId == serverStruct.Parameters["itemid"]) { - if (entitlement.ItemId == serverStruct.Parameters["itemid"]) - { - entitlement.UserId = serverStruct.Parameters["userId"]; - newentitlements.Add(entitlement); - } - + entitlement.UserId = serverStruct.Parameters["userId"]; + entitlement.UpdatedAt = time; + newentitlements.Add(entitlement); } - DataPaging payload = new() - { - Data = newentitlements, - Paging = new() - { - First = "", - Last = "", - Next = "", - Previous = "", - } - }; - responsecreator.SetBody(JsonConvert.SerializeObject(payload)); - serverStruct.Response = responsecreator.GetResponse(); - serverStruct.SendResponse(); - return true; + } - catch (Exception ex) + DataPaging payload = new() { - Debugger.PrintError(ex.ToString()); - } - return false; + Data = newentitlements, + Paging = new() + }; + responsecreator.SetBody(JsonConvert.SerializeObject(payload)); + serverStruct.Response = responsecreator.GetResponse(); + serverStruct.SendResponse(); + return true; + } + catch (Exception ex) + { + Debugger.PrintError(ex.ToString()); } + return false; } } diff --git a/PayCheckServerLib/Responses/Friends.cs b/PayCheckServerLib/Responses/Friends.cs index a7a0222..cc5c00b 100644 --- a/PayCheckServerLib/Responses/Friends.cs +++ b/PayCheckServerLib/Responses/Friends.cs @@ -6,76 +6,72 @@ using PayCheckServerLib.Helpers; using PayCheckServerLib.Jsons; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Friends { - public class Friends + [HTTP("GET", "/friends/namespaces/{namespace}/me/platforms")] + public static bool MePlatforms(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/friends/namespaces/{namespace}/me/platforms")] - public static bool MePlatforms(HttpRequest _, ServerStruct serverStruct) + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var MainUser = UserController.GetUser(token.UserId, token.Namespace) ?? throw new Exception("MainUser is null!"); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + FriendsPlatfrom friends = new FriendsPlatfrom() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var MainUser = UserController.GetUser(token.UserId, token.Namespace) ?? throw new Exception("MainUser is null!"); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - FriendsPlatfrom friends = new FriendsPlatfrom() - { - Data = MainUser.Friends - }; - response.SetBody(JsonConvert.SerializeObject(friends)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + Data = MainUser.Friends + }; + response.SetBody(JsonConvert.SerializeObject(friends)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } [HTTP("GET", "/friends/namespaces/pd3/me/platforms?limit=50&offset=0")] - public static bool MePlatformsLimitOffset(HttpRequest _, ServerStruct serverStruct) + public static bool MePlatformsLimitOffset(HttpRequest _, ServerStruct serverStruct) => MePlatforms(_, serverStruct); + + [HTTP("POST", "/friends/namespaces/{namespace}/users/{userId}/add/bulk")] + public static bool FriendAddBulk(HttpRequest request, ServerStruct serverStruct) { - return MePlatforms(_, serverStruct); - } + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var MainUser = UserController.GetUser(token.UserId, token.Namespace) ?? throw new Exception("MainUser is null!"); + var friends = JsonConvert.DeserializeObject(request.Body)!.FriendIds; - [HTTP("POST", "/friends/namespaces/{namespace}/users/{userId}/add/bulk")] - public static bool FriendAddBulk(HttpRequest request, ServerStruct serverStruct) + // Add func to UserC. for adding and checking friends infomation. + foreach (var item in friends) { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var MainUser = UserController.GetUser(token.UserId, token.Namespace) ?? throw new Exception("MainUser is null!"); - var friends = JsonConvert.DeserializeObject(request.Body)!.FriendIds; - - // Add func to UserC. for adding and checking friends infomation. - foreach (var item in friends) + var user = UserController.GetUser(item, token.Namespace); + if (user == null) { - var user = UserController.GetUser(item, token.Namespace); - if (user == null) - { - Debugger.PrintWarn($"UserId {item} not found in users!"); - continue; - } + Debugger.PrintWarn($"UserId {item} not found in users!"); + continue; + } - FriendsPlatfrom.FriendsPlatfromData data = new() - { - AvatarUrl = user.UserData.AvatarUrl, - DisplayName = user.UserData.DisplayName, - UserId = user.UserData.UserId, - Username = user.UserData.DisplayName, - PlatformInfos = new() - }; + FriendsPlatfrom.FriendsPlatfromData data = new() + { + AvatarUrl = user.UserData.AvatarUrl, + DisplayName = user.UserData.DisplayName, + UserId = user.UserData.UserId, + Username = user.UserData.DisplayName, + PlatformInfos = new() + }; - foreach (var pids in user.UserData.PlatformUserIds) + foreach (var pids in user.UserData.PlatformUserIds) + { + data.PlatformInfos.Add(new() { - data.PlatformInfos.Add(new() - { - PlatformDisplayName = user.UserData.DisplayName, - PlatformName = pids.Key, - PlatformUserId = pids.Value - }); - } - MainUser.Friends.Add(data); + PlatformDisplayName = user.UserData.DisplayName, + PlatformName = pids.Key, + PlatformUserId = pids.Value + }); } - - serverStruct.Response = new ResponseCreator(204).GetResponse(); - serverStruct.SendResponse(); - return true; + MainUser.Friends.Add(data); } + + serverStruct.Response = new ResponseCreator(204).GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/GameSessions.cs b/PayCheckServerLib/Responses/GameSessions.cs index d0f15f4..5ec22e3 100644 --- a/PayCheckServerLib/Responses/GameSessions.cs +++ b/PayCheckServerLib/Responses/GameSessions.cs @@ -7,194 +7,193 @@ using ModdableWebServer.Attributes; using ModdableWebServer.Helper; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class GameSessions { - public class GameSessions + [HTTP("GET", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}")] + public static bool GETGameSessions(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}")] - public static bool GETGameSessions(HttpRequest _, ServerStruct serverStruct) + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + var gs = GSController.GetGameSession(serverStruct.Parameters["sessionid"], serverStruct.Parameters["namespace"]); + response.SetBody(JsonConvert.SerializeObject(gs)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + if (GSController.MatchFoundSent.Contains(token.UserId)) + return true; + + //SEND OnMatchFound on WSS + OnMatchFound onMatchFound = new() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - var gs = GSController.GetGameSession(serverStruct.Parameters["sessionid"], serverStruct.Parameters["namespace"]); - response.SetBody(JsonConvert.SerializeObject(gs)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - if (GSController.MatchFoundSent.Contains(token.UserId)) - return true; - - //SEND OnMatchFound on WSS - OnMatchFound onMatchFound = new() - { - CreatedAt = gs.CreatedAt, - ID = gs.Id, - MatchPool = gs.MatchPool, - Namespace = gs.Namespace, - Teams = new(), - Tickets = new() - }; - foreach (var team in gs.Teams) + CreatedAt = gs.CreatedAt, + ID = gs.Id, + MatchPool = gs.MatchPool, + Namespace = gs.Namespace, + Teams = new(), + Tickets = new() + }; + foreach (var team in gs.Teams) + { + foreach (var uid in team.UserIDs) { - foreach (var uid in team.UserIDs) + onMatchFound.Tickets.Add(new() { - onMatchFound.Tickets.Add(new() - { - TicketID = GSController.Tickets[uid] - }); - } - onMatchFound.Teams.Add(new() - { - UserIDs = team.UserIDs, + TicketID = GSController.Tickets[uid] }); } - - Dictionary kv = new() + onMatchFound.Teams.Add(new() { - { "type", "messageSessionNotif" }, - { "id", UserIdHelper.CreateNewID() }, - { "from", "system" }, - { "to", token.UserId }, - { "topic", "OnMatchFound" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onMatchFound)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, - }; - LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); - GSController.MatchFoundSent.Add(token.UserId); - Debugger.PrintDebug("MatchFoundSent!"); - return true; + UserIDs = team.UserIDs, + }); } - [HTTP("PATCH", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}")] - public static bool PATCHGameSessions(HttpRequest _, ServerStruct serverStruct) + Dictionary kv = new() { - Debugger.PrintDebug("PATCH! gamesessions"); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - //response.SetBody(JsonConvert.SerializeObject(gamesessions)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); + { "type", "messageSessionNotif" }, + { "id", UserIdHelper.CreateNewID() }, + { "from", "system" }, + { "to", token.UserId }, + { "topic", "OnMatchFound" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onMatchFound)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, + }; + LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); + GSController.MatchFoundSent.Add(token.UserId); + Debugger.PrintDebug("MatchFoundSent!"); + return true; + } - //OnDSStatusChanged + [HTTP("PATCH", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}")] + public static bool PATCHGameSessions(HttpRequest _, ServerStruct serverStruct) + { + Debugger.PrintDebug("PATCH! gamesessions"); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + //response.SetBody(JsonConvert.SerializeObject(gamesessions)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); - return true; - } + //OnDSStatusChanged + + return true; + } - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}/join")] - public static bool JoinToGameSessions(HttpRequest _, ServerStruct serverStruct) + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}/join")] + public static bool JoinToGameSessions(HttpRequest _, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var gs = GSController.JoinSession(serverStruct.Parameters["sessionid"], token.UserId, serverStruct.Parameters["namespace"]); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetBody(JsonConvert.SerializeObject(gs)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + //Send OnSessionMembersChanged, OnSessionJoined + + OnSessionJoined onSessionJoined = new() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var gs = GSController.JoinSession(serverStruct.Parameters["sessionid"], token.UserId, serverStruct.Parameters["namespace"]); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetBody(JsonConvert.SerializeObject(gs)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - //Send OnSessionMembersChanged, OnSessionJoined - - OnSessionJoined onSessionJoined = new() - { - SessionID = gs.Id, - TextChat = false, - Members = gs.Members - }; - Dictionary kv = new() - { - { "type", "messageSessionNotif" }, - { "topic", "OnSessionJoined" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onSessionJoined)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, - }; - LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); + SessionID = gs.Id, + TextChat = false, + Members = gs.Members + }; + Dictionary kv = new() + { + { "type", "messageSessionNotif" }, + { "topic", "OnSessionJoined" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onSessionJoined)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, + }; + LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); - OnSessionMembersChanged onSessionMembersChanged = new() + OnSessionMembersChanged onSessionMembersChanged = new() + { + JoinerID = token.UserId, + SessionID = gs.Id, + LeaderID = token.UserId, + TextChat = false, + Members = new(), + Teams = gs.Teams, + Session = new() { - JoinerID = token.UserId, - SessionID = gs.Id, - LeaderID = token.UserId, - TextChat = false, + DSInformation = gs.DSInformation, + Attributes = gs.Attributes, + BackfillTicketID = gs.BackfillTicketID, + Code = gs.Code, + Configuration = JsonConvert.DeserializeObject>(File.ReadAllText("Files/Lobby_pveheist_DS.json")), + ConfigurationName = gs.MatchPool, + CreatedAt = gs.CreatedAt, + CreatedBy = gs.CreatedBy, + GameMode = gs.MatchPool, + ID = gs.Id, + IsFull = gs.IsFull, + LeaderID = gs.LeaderID, + MatchPool = gs.MatchPool, Members = new(), + Namespace = gs.Namespace, Teams = gs.Teams, - Session = new() - { - DSInformation = gs.DSInformation, - Attributes = gs.Attributes, - BackfillTicketID = gs.BackfillTicketID, - Code = gs.Code, - Configuration = JsonConvert.DeserializeObject>(File.ReadAllText("Files/Lobby_pveheist_DS.json")), - ConfigurationName = gs.MatchPool, - CreatedAt = gs.CreatedAt, - CreatedBy = gs.CreatedBy, - GameMode = gs.MatchPool, - ID = gs.Id, - IsFull = gs.IsFull, - LeaderID = gs.LeaderID, - MatchPool = gs.MatchPool, - Members = new(), - Namespace = gs.Namespace, - Teams = gs.Teams, - UpdatedAt = gs.UpdatedAt, - Version = gs.Version - } - }; - foreach (var member in gs.Members) - { - onSessionMembersChanged.Members.Add(new() - { - ID = member.Id, - Status = member.Status, - StatusV2 = member.StatusV2, - PlatformID = member.PlatformId, - PlatformUserID = member.PlatformUserId, - UpdatedAt = member.UpdatedAt - }); - onSessionMembersChanged.Session.Members.Add(new() - { - ID = member.Id, - Status = member.Status, - StatusV2 = member.StatusV2, - PlatformID = member.PlatformId, - PlatformUserID = member.PlatformUserId, - UpdatedAt = member.UpdatedAt - }); + UpdatedAt = gs.UpdatedAt, + Version = gs.Version } - kv = new() + }; + foreach (var member in gs.Members) + { + onSessionMembersChanged.Members.Add(new() { - { "type", "messageSessionNotif" }, - { "topic", "OnSessionMembersChanged" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onSessionMembersChanged)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, - }; - - //OnMemeberChanged to full team? - LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); - return true; + ID = member.Id, + Status = member.Status, + StatusV2 = member.StatusV2, + PlatformID = member.PlatformId, + PlatformUserID = member.PlatformUserId, + UpdatedAt = member.UpdatedAt + }); + onSessionMembersChanged.Session.Members.Add(new() + { + ID = member.Id, + Status = member.Status, + StatusV2 = member.StatusV2, + PlatformID = member.PlatformId, + PlatformUserID = member.PlatformUserId, + UpdatedAt = member.UpdatedAt + }); } - - [HTTP("DELETE", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}/leave")] - public static bool LeaveGameSessions(HttpRequest _, ServerStruct serverStruct) + kv = new() { - return false; - } + { "type", "messageSessionNotif" }, + { "topic", "OnSessionMembersChanged" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onSessionMembersChanged)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") }, + }; - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/gamesession")] - public static bool CreateGameSession(HttpRequest _, ServerStruct serverStruct) - { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var GSRequest = JsonConvert.DeserializeObject(_.Body); + //OnMemeberChanged to full team? + LobbyControl.SendToLobby(kv, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); + return true; + } + + [HTTP("DELETE", "/session/v1/public/namespaces/{namespace}/gamesessions/{sessionid}/leave")] + public static bool LeaveGameSessions(HttpRequest _, ServerStruct serverStruct) + { + return false; + } + + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/gamesession")] + public static bool CreateGameSession(HttpRequest _, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var GSRequest = JsonConvert.DeserializeObject(_.Body); - var rsp = GSController.MakeP2P(GSRequest,serverStruct, token); + var rsp = GSController.MakeP2P(GSRequest,serverStruct, token); - ResponseCreator response = new(201); - response.SetHeader("Content-Type", "application/json"); - response.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + ResponseCreator response = new(201); + response.SetHeader("Content-Type", "application/json"); + response.SetBody(JsonConvert.SerializeObject(rsp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/IAM.cs b/PayCheckServerLib/Responses/IAM.cs index e546be2..73d9ea0 100644 --- a/PayCheckServerLib/Responses/IAM.cs +++ b/PayCheckServerLib/Responses/IAM.cs @@ -8,491 +8,490 @@ using ModdableWebServer.Attributes; using ModdableWebServer.Helper; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class IAM { - public class IAM + // args here represent any argument + [HTTP("POST", "/iam/v3/oauth/platforms/steam/token?{args}")] + public static bool SteamToken(HttpRequest request, ServerStruct serverStruct) { - [HTTP("POST", "/iam/v3/oauth/platforms/steam/token")] - public static bool SteamTokenNoParam(HttpRequest request, ServerStruct serverStruct) { return SteamToken(request, serverStruct); } - [HTTP("POST", "/iam/v3/oauth/platforms/steam/token?createHeadless=false")] - public static bool SteamToken(HttpRequest request, ServerStruct serverStruct) + ResponseCreator response = new(); + if (ConfigHelper.ServerConfig.InDevFeatures.UsePWInsteadSteamToken) { - ResponseCreator response = new(); - if (ConfigHelper.ServerConfig.InDevFeatures.UsePWInsteadSteamToken) - { - - /* - return status code 401 with - { - "clientId": "uuidv4", - "error": "platform_not_linked", - "linkingToken": "uuidv4", - "platformId": "steam" - } - to get game to allow email + password auth - */ - response.SetBody(JsonConvert.SerializeObject(new IAM_SteamError())); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } - Debugger.PrintDebug(request.Body); - var splitted = request.Body.Split("&"); - Dictionary bodyTokens = new(); - foreach (var item in splitted) - { - var it = item.Split("="); - bodyTokens.Add(it[0], it[1]); - } - var platform_token = bodyTokens["platform_token"]; - if (platform_token.Contains("pd3")) - platform_token = platform_token.Replace("pd3%3A",""); - - var sai = UserIdHelper.getsai(platform_token); - Debugger.PrintInfo(sai); - if (!(sai == "1272080" || sai == "2478210")) - { - Debugger.PrintError("Auth is incorrect!"); - return true; - } - var steamId = UserIdHelper.GetSteamIDFromAUTH(platform_token); - Debugger.PrintInfo("User with SteamID try to log in: " + steamId); - - var (access_token, refresh_token) = UserController.LoginUser(steamId, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"]); - - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); /* - response.SetHeader("cache-control", "no-cache, no-store, max-age=0, must-revalidate"); - response.SetHeader("expires", "Fri, 01 Jan 1990 00:00:00 GMT"); - response.SetHeader("pragma", "no-cache");*/ - response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - LoginToken LoginToken = new() - { - AccessToken = access_token.ToBase64(), - Scope = "account commerce social publishing analytics", - Bans = new() { }, - DisplayName = access_token.Name, - ExpiresIn = 360000, - IsComply = true, - Jflgs = 1, - Namespace = serverStruct.Headers["namespace"], - NamespaceRoles = new() - { - new NamespaceRole() - { - Namespace = "*", - RoleId = "2251438839e948d783ec0e5281daf05" - } - - }, - Permissions = new() { }, - PlatformId = "steam", - PlatformUserId = access_token.PlatformId, - RefreshExpiresIn = 8400000, - RefreshToken = refresh_token.ToBase64(), - Roles = new() { "2251438839e948d783ec0e5281daf05" }, - TokenType = "Bearer", - UserId = access_token.UserId - }; - response.SetBody(JsonConvert.SerializeObject(LoginToken)); + return status code 401 with + { + "clientId": "uuidv4", + "error": "platform_not_linked", + "linkingToken": "uuidv4", + "platformId": "steam" + } + to get game to allow email + password auth + */ + response.New(401); + response.SetBody(JsonConvert.SerializeObject(new IAM_SteamError())); serverStruct.Response = response.GetResponse(); serverStruct.SendResponse(); return true; } - - [HTTP("POST", "/iam/v3/oauth/platforms/device/token")] - public static bool DeviceToken(HttpRequest request, ServerStruct serverStruct) + Debugger.PrintDebug(request.Body); + var splitted = request.Body.Split("&"); + Dictionary bodyTokens = new(); + foreach (var item in splitted) { - var deviceid = request.Body.Split('=')[1]; - Debugger.PrintDebug(deviceid); - var (access_token, refresh_token) = UserController.LoginUser(deviceid, TokenHelper.TokenPlatform.Device, serverStruct.Headers["namespace"]); - - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - LoginToken token = new() - { - AccessToken = access_token.ToBase64(), - Scope = "account commerce social publishing analytics", - Bans = new() { }, - DisplayName = access_token.Name, - ExpiresIn = 360000, - IsComply = true, - Jflgs = 4, - Namespace = serverStruct.Headers["namespace"], - NamespaceRoles = new() - { - new NamespaceRole() - { - Namespace = "*", - RoleId = "2251438839e948d783ec0e5281daf05" - } - }, - Permissions = new() { }, - PlatformId = "device", - PlatformUserId = deviceid, - RefreshExpiresIn = 86400, - RefreshToken = refresh_token.ToBase64(), - Roles = new() { "2251438839e948d783ec0e5281daf05" }, - TokenType = "Bearer", - UserId = access_token.UserId - }; - response.SetBody(JsonConvert.SerializeObject(token)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + var it = item.Split("="); + bodyTokens.Add(it[0], it[1]); } + var platform_token = bodyTokens["platform_token"]; + if (platform_token.Contains("pd3")) + platform_token = platform_token.Replace("pd3%3A",""); - [HTTP("POST", "/iam/v3/oauth/platforms/live/token")] - public static bool LiveToken(HttpRequest request, ServerStruct serverStruct) + var sai = UserIdHelper.getsai(platform_token); + Debugger.PrintInfo(sai); + if (!(sai == "1272080" || sai == "2478210")) { - var splitted = request.Body.Split("&"); - Dictionary bodyTokens = new(); - foreach (var item in splitted) - { - var it = item.Split("="); - bodyTokens.Add(it[0], it[1]); - } - - var platform_token = bodyTokens["platform_token"]; - Debugger.PrintDebug(platform_token); - platform_token = platform_token.Replace("XBL3.0%20x%3D", ""); - platform_token = platform_token.Split(";")[0]; - var (access_token, refresh_token) = UserController.LoginUser(platform_token, TokenHelper.TokenPlatform.Live, serverStruct.Headers["namespace"]); - - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - LoginToken token = new() - { - AccessToken = access_token.ToBase64(), - Scope = "account commerce social publishing analytics", - Bans = new() { }, - DisplayName = access_token.Name, - ExpiresIn = 360000, - IsComply = true, - Jflgs = 4, - Namespace = serverStruct.Headers["namespace"], - NamespaceRoles = new() - { - new NamespaceRole() - { - Namespace = "*", - RoleId = "2251438839e948d783ec0e5281daf05" - } - }, - Permissions = new() { }, - PlatformId = "live", - PlatformUserId = "", //todo, how the fuck you got the userid from jwt - RefreshExpiresIn = 86400, - RefreshToken = refresh_token.ToBase64(), - Roles = new() { "2251438839e948d783ec0e5281daf05" }, - TokenType = "Bearer", - UserId = access_token.UserId - }; - response.SetBody(JsonConvert.SerializeObject(token)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); + Debugger.PrintError("Auth is incorrect!"); return true; } - - // Logging in with email + password, also links steam to nebula account on official servers - [HTTP("POST", "/iam/v3/authenticateWithLink")] - public static bool AuthenticateWithLink(HttpRequest request, ServerStruct serverStruct) + var steamId = UserIdHelper.GetSteamIDFromAUTH(platform_token); + Debugger.PrintInfo("User with SteamID try to log in: " + steamId); + + var (access_token, refresh_token) = UserController.LoginUser(steamId, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"]); + + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + /* + response.SetHeader("cache-control", "no-cache, no-store, max-age=0, must-revalidate"); + response.SetHeader("expires", "Fri, 01 Jan 1990 00:00:00 GMT"); + response.SetHeader("pragma", "no-cache");*/ + response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + LoginToken LoginToken = new() { - var param = HttpUtility.ParseQueryString(request.Body); - // either username or email entered - var username = param["username"]; - // plain text - var password = param["password"]; - var linking_token = param["linkingToken"]; - var client_id = param["client_id"]; - - // request does not have a device id, client_id will do for now - var (access_token, refresh_token) = UserController.LoginUser(client_id!, TokenHelper.TokenPlatform.Device, serverStruct.Headers["namespace"]); - - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); - LoginToken token = new() + AccessToken = access_token.ToBase64(), + Scope = "account commerce social publishing analytics", + Bans = new() { }, + DisplayName = access_token.Name, + ExpiresIn = 360000, + IsComply = true, + Jflgs = 1, + Namespace = serverStruct.Headers["namespace"], + NamespaceRoles = new() { - AccessToken = access_token.ToBase64(), - Scope = "account commerce social publishing analytics", - Bans = new() { }, - DisplayName = access_token.Name, - ExpiresIn = 360000, - IsComply = true, - // Jflgs is 1 for this request - Jflgs = 1, - Namespace = "pd3", - NamespaceRoles = new() + new NamespaceRole() { - new NamespaceRole() - { - Namespace = "*", - RoleId = "2251438839e948d783ec0e5281daf05" - } - }, - Permissions = new() { }, - PlatformId = "", - PlatformUserId = "", - RefreshExpiresIn = 86400, - RefreshToken = refresh_token.ToBase64(), - Roles = new() { "2251438839e948d783ec0e5281daf05" }, - TokenType = "Bearer", - UserId = access_token.UserId - }; - response.SetBody(JsonConvert.SerializeObject(token)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + Namespace = "*", + RoleId = "2251438839e948d783ec0e5281daf05" + } + }, + Permissions = new() { }, + PlatformId = "steam", + PlatformUserId = access_token.PlatformId, + RefreshExpiresIn = 8400000, + RefreshToken = refresh_token.ToBase64(), + Roles = new() { "2251438839e948d783ec0e5281daf05" }, + TokenType = "Bearer", + UserId = access_token.UserId + }; + response.SetBody(JsonConvert.SerializeObject(LoginToken)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/iam/v3/public/users/me")] - public static bool UsersMe(HttpRequest _, ServerStruct serverStruct) + [HTTP("POST", "/iam/v3/oauth/platforms/device/token")] + public static bool DeviceToken(HttpRequest request, ServerStruct serverStruct) + { + var deviceid = request.Body.Split('=')[1]; + Debugger.PrintDebug(deviceid); + var (access_token, refresh_token) = UserController.LoginUser(deviceid, TokenHelper.TokenPlatform.Device, serverStruct.Headers["namespace"]); + + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + LoginToken token = new() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - Me me = new() + AccessToken = access_token.ToBase64(), + Scope = "account commerce social publishing analytics", + Bans = new() { }, + DisplayName = access_token.Name, + ExpiresIn = 360000, + IsComply = true, + Jflgs = 4, + Namespace = serverStruct.Headers["namespace"], + NamespaceRoles = new() { - AvatarUrl = new("https://nebula.starbreeze.com/static/media/903924fd9d443f43e7b121d085062fbdd2064f25_full.e7d46514.jpg"), - DeletionStatus = false, - Bans = new(), - Country = "HU", - DisplayName = token.Name, - EmailAddress = $"{token.Name}@pd3_emu.com", - EmailVerified = true, - Enabled = true, - Namespace = serverStruct.Headers["namespace"], - OldEmailAddress = $"{token.Name}@pd3_emu.com", - PhoneVerified = true, - Permissions = new(), - UserId = token.UserId, - UserName = token.Name, - NamespaceRoles = new() + new NamespaceRole() { - new NamespaceRole() - { - Namespace = "*", - RoleId = "2251438839e948d783ec0e5281daf05" - } - }, - Roles = new() { "2251438839e948d783ec0e5281daf05" } - }; - response.SetBody(JsonConvert.SerializeObject(me)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + Namespace = "*", + RoleId = "2251438839e948d783ec0e5281daf05" + } + }, + Permissions = new() { }, + PlatformId = "device", + PlatformUserId = deviceid, + RefreshExpiresIn = 86400, + RefreshToken = refresh_token.ToBase64(), + Roles = new() { "2251438839e948d783ec0e5281daf05" }, + TokenType = "Bearer", + UserId = access_token.UserId + }; + response.SetBody(JsonConvert.SerializeObject(token)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + + [HTTP("POST", "/iam/v3/oauth/platforms/live/token")] + public static bool LiveToken(HttpRequest request, ServerStruct serverStruct) + { + var splitted = request.Body.Split("&"); + Dictionary bodyTokens = new(); + foreach (var item in splitted) + { + var it = item.Split("="); + bodyTokens.Add(it[0], it[1]); } - [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/users/bulk/basic")] - public static bool BulkBasic(HttpRequest request, ServerStruct serverStruct) + var platform_token = bodyTokens["platform_token"]; + Debugger.PrintDebug(platform_token); + platform_token = platform_token.Replace("XBL3.0%20x%3D", ""); + platform_token = platform_token.Split(";")[0]; + var (access_token, refresh_token) = UserController.LoginUser(platform_token, TokenHelper.TokenPlatform.Live, serverStruct.Headers["namespace"]); + + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + LoginToken token = new() { - var req = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("BulkBasic is null!"); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - UserBulk bulk = new() + AccessToken = access_token.ToBase64(), + Scope = "account commerce social publishing analytics", + Bans = new() { }, + DisplayName = access_token.Name, + ExpiresIn = 360000, + IsComply = true, + Jflgs = 4, + Namespace = serverStruct.Headers["namespace"], + NamespaceRoles = new() { - Data = new() + new NamespaceRole() { + Namespace = "*", + RoleId = "2251438839e948d783ec0e5281daf05" } - }; + }, + Permissions = new() { }, + PlatformId = "live", + PlatformUserId = "", //todo, how the fuck you got the userid from jwt + RefreshExpiresIn = 86400, + RefreshToken = refresh_token.ToBase64(), + Roles = new() { "2251438839e948d783ec0e5281daf05" }, + TokenType = "Bearer", + UserId = access_token.UserId + }; + response.SetBody(JsonConvert.SerializeObject(token)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - foreach (var item in req.UserIds) + // Logging in with email + password, also links steam to nebula account on official servers + [HTTP("POST", "/iam/v3/authenticateWithLink")] + public static bool AuthenticateWithLink(HttpRequest request, ServerStruct serverStruct) + { + var param = HttpUtility.ParseQueryString(request.Body); + // either username or email entered + var username = param["username"]; + // plain text + var password = param["password"]; + var linking_token = param["linkingToken"]; + var client_id = param["client_id"]; + + // request does not have a device id, client_id will do for now + var (access_token, refresh_token) = UserController.LoginUser(client_id!, TokenHelper.TokenPlatform.Device, serverStruct.Headers["namespace"]); + + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + response.SetHeader("Set-Cookie", "refresh_token=" + refresh_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + response.SetHeader("Set-Cookie", "access_token=" + access_token.ToBase64() + "; Path=/; HttpOnly; Secure; SameSite=None"); + LoginToken token = new() + { + AccessToken = access_token.ToBase64(), + Scope = "account commerce social publishing analytics", + Bans = new() { }, + DisplayName = access_token.Name, + ExpiresIn = 360000, + IsComply = true, + // Jflgs is 1 for this request + Jflgs = 1, + Namespace = "pd3", + NamespaceRoles = new() { - // using UserController here to populate BulkData - var user = UserController.GetUser(item); - if (user == null) + new NamespaceRole() { - Debugger.PrintWarn($"User ({item}) not exist in UserController!"); + Namespace = "*", + RoleId = "2251438839e948d783ec0e5281daf05" } - else + }, + Permissions = new() { }, + PlatformId = "", + PlatformUserId = "", + RefreshExpiresIn = 86400, + RefreshToken = refresh_token.ToBase64(), + Roles = new() { "2251438839e948d783ec0e5281daf05" }, + TokenType = "Bearer", + UserId = access_token.UserId + }; + response.SetBody(JsonConvert.SerializeObject(token)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + + [HTTP("GET", "/iam/v3/public/users/me")] + public static bool UsersMe(HttpRequest _, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + Me me = new() + { + AvatarUrl = new("https://nebula.starbreeze.com/static/media/903924fd9d443f43e7b121d085062fbdd2064f25_full.e7d46514.jpg"), + DeletionStatus = false, + Bans = new(), + Country = "HU", + DisplayName = token.Name, + EmailAddress = $"{token.Name}@pd3_emu.com", + EmailVerified = true, + Enabled = true, + Namespace = serverStruct.Headers["namespace"], + OldEmailAddress = $"{token.Name}@pd3_emu.com", + PhoneVerified = true, + Permissions = new(), + UserId = token.UserId, + UserName = token.Name, + NamespaceRoles = new() + { + new NamespaceRole() { - if (user.Namespace == serverStruct.Headers["namespace"]) - bulk.Data.Add(user.UserData); + Namespace = "*", + RoleId = "2251438839e948d783ec0e5281daf05" } + }, + Roles = new() { "2251438839e948d783ec0e5281daf05" } + }; + response.SetBody(JsonConvert.SerializeObject(me)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/users/bulk/basic")] + public static bool BulkBasic(HttpRequest request, ServerStruct serverStruct) + { + var req = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("BulkBasic is null!"); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + UserBulk bulk = new() + { + Data = new() + { } + }; - response.SetBody(JsonConvert.SerializeObject(bulk)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + foreach (var item in req.UserIds) + { + // using UserController here to populate BulkData + var user = UserController.GetUser(item); + if (user == null) + { + Debugger.PrintWarn($"User ({item}) not exist in UserController!"); + } + else + { + if (user.Namespace == serverStruct.Headers["namespace"]) + bulk.Data.Add(user.UserData); + } } - [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/users/bulk/platforms")] - public static bool BulkPlatforms(HttpRequest request, ServerStruct serverStruct) + response.SetBody(JsonConvert.SerializeObject(bulk)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/users/bulk/platforms")] + public static bool BulkPlatforms(HttpRequest request, ServerStruct serverStruct) + { + var req = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("BulkPlatforms is null!"); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + UserBulk bulk = new() { - var req = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("BulkPlatforms is null!"); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - UserBulk bulk = new() + Data = new() { - Data = new() - { - } - }; + } + }; - foreach (var item in req.UserIds) + foreach (var item in req.UserIds) + { + // using UserController here to populate BulkData + var user = UserController.GetUser(item); + if (user == null) { - // using UserController here to populate BulkData - var user = UserController.GetUser(item); - if (user == null) - { - Debugger.PrintWarn($"User ({item}) not exist in UserController!"); - } - else - { - if (user.Namespace == serverStruct.Headers["namespace"]) - bulk.Data.Add(user.UserData); - } + Debugger.PrintWarn($"User ({item}) not exist in UserController!"); + } + else + { + if (user.Namespace == serverStruct.Headers["namespace"]) + bulk.Data.Add(user.UserData); } - - response.SetBody(JsonConvert.SerializeObject(bulk)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; } - [HTTP("GET", "/iam/v3/public/namespaces/{namespace}/users?query={uname}&by=displayName&limit=100&offset=0")] - public static bool UsersQuery(HttpRequest _, ServerStruct serverStruct) + response.SetBody(JsonConvert.SerializeObject(bulk)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + [HTTP("GET", "/iam/v3/public/namespaces/{namespace}/users?query={uname}&by=displayName&limit=100&offset=0")] + public static bool UsersQuery(HttpRequest _, ServerStruct serverStruct) + { + //Idk what is this but works + var username = serverStruct.Parameters["uname"]; + username = username.Split("&")[0].Split("=")[1]; + //magix shit end + Debugger.PrintDebug("UserName to search: " + username); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + DataPaging dataSearch = new() { - //Idk what is this but works - var username = serverStruct.Parameters["uname"]; - username = username.Split("&")[0].Split("=")[1]; - //magix shit end - Debugger.PrintDebug("UserName to search: " + username); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - DataPaging dataSearch = new() + Data = new(), + Paging = new() { - Data = new(), - Paging = new() - { - First = "", - Last = "", - Next = "", - Previous = "" - } - }; + First = "", + Last = "", + Next = "", + Previous = "" + } + }; - foreach (var item in UserController.GetUsers()) + foreach (var item in UserController.GetUsers()) + { + if (item.Namespace != serverStruct.Parameters["namespace"]) + continue; + + if (item.UserData.DisplayName.Contains(username)) { - if (item.Namespace != serverStruct.Parameters["namespace"]) - continue; + Debugger.PrintDebug("User found: " + item.UserData.DisplayName); - if (item.UserData.DisplayName.Contains(username)) + dataSearch.Data.Add(new() { - Debugger.PrintDebug("User found: " + item.UserData.DisplayName); - - dataSearch.Data.Add(new() - { - createdAt = DateTime.UtcNow.ToString("o"), - DisplayName = item.UserData.DisplayName, - Namespace = item.Namespace, - UserId = item.UserData.UserId, - UserName = item.UserData.DisplayName - }); - } + createdAt = DateTime.UtcNow.ToString("o"), + DisplayName = item.UserData.DisplayName, + Namespace = item.Namespace, + UserId = item.UserData.UserId, + UserName = item.UserData.DisplayName + }); } - - response.SetBody(JsonConvert.SerializeObject(dataSearch)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; } - [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/platforms/steam/users?rawPUID=true")] - public static bool GetSteamUsersWithPID(HttpRequest request, ServerStruct serverStruct) - { - var req = JsonConvert.DeserializeObject(request.Body); - ResponseCreator response = new(); - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); + response.SetBody(JsonConvert.SerializeObject(dataSearch)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - SteamUsers steamUsers = new() - { - userIdPlatforms = new() - }; + [HTTP("POST", "/iam/v3/public/namespaces/{namespace}/platforms/steam/users?rawPUID=true")] + public static bool GetSteamUsersWithPID(HttpRequest request, ServerStruct serverStruct) + { + var req = JsonConvert.DeserializeObject(request.Body); + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + SteamUsers steamUsers = new() + { + userIdPlatforms = new() + }; - foreach (var id in req.platformUserIds) + + foreach (var id in req.platformUserIds) + { + //can replace the headers to serverStruct.Parameters["namespace"] and will works too + if (UserController.CheckUser(id, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"])) { - //can replace the headers to serverStruct.Parameters["namespace"] and will works too - if (UserController.CheckUser(id, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"])) + var user = UserController.GetUser(id, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"]); + steamUsers.userIdPlatforms.Add(new() { - var user = UserController.GetUser(id, TokenHelper.TokenPlatform.Steam, serverStruct.Headers["namespace"]); - steamUsers.userIdPlatforms.Add(new() - { - platformId = "steam", - platformUserId = id, - userId = user.UserData.UserId + platformId = "steam", + platformUserId = id, + userId = user.UserData.UserId - }); + }); - } } - - response.SetBody(JsonConvert.SerializeObject(steamUsers)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; } - [HTTP("POST", "/iam/v3/oauth/token")] - public static bool OauthToken(HttpRequest request, ServerStruct serverStruct) - { - var grant_type = request.Body.Split('=')[1]; - Debugger.PrintDebug(grant_type); - //grant_type=client_credentials - //grant_type=password&username=test&password=testj&device_id=ID + response.SetBody(JsonConvert.SerializeObject(steamUsers)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - ResponseCreator response = new(404); - /* - response.SetHeader("Content-Type", "application/json"); - response.SetHeader("Connection", "keep-alive"); - oathToken token = new() - { - AccessToken = "randomtoken", - Scope = "account commerce social publishing analytics", - Bans = new() { }, - DisplayName = "", - ExpiresIn = 3600, - IsComply = true, - Jflgs = 0, - Namespace = serverStruct.Headers["namespace"], - NamespaceRoles = null, - Permissions = new() { }, - PlatformId = "", - PlatformUserId = "", - Roles = null, - TokenType = "Bearer", - UserId = "" - }; - - var ds_perms = JsonConvert.DeserializeObject>(File.ReadAllText("Files/DS_Permissions.json")); - token.Permissions = ds_perms; - response.SetBody(JsonConvert.SerializeObject(token)); - */ - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + [HTTP("POST", "/iam/v3/oauth/token")] + public static bool OauthToken(HttpRequest request, ServerStruct serverStruct) + { + var grant_type = request.Body.Split('=')[1]; + Debugger.PrintDebug(grant_type); + //grant_type=client_credentials + //grant_type=password&username=test&password=testj&device_id=ID + + ResponseCreator response = new(404); + /* + response.SetHeader("Content-Type", "application/json"); + response.SetHeader("Connection", "keep-alive"); + oathToken token = new() + { + AccessToken = "randomtoken", + Scope = "account commerce social publishing analytics", + Bans = new() { }, + DisplayName = "", + ExpiresIn = 3600, + IsComply = true, + Jflgs = 0, + Namespace = serverStruct.Headers["namespace"], + NamespaceRoles = null, + Permissions = new() { }, + PlatformId = "", + PlatformUserId = "", + Roles = null, + TokenType = "Bearer", + UserId = "" + }; + + var ds_perms = JsonConvert.DeserializeObject>(File.ReadAllText("Files/DS_Permissions.json")); + token.Permissions = ds_perms; + response.SetBody(JsonConvert.SerializeObject(token)); + */ + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Items.cs b/PayCheckServerLib/Responses/Items.cs index 6783433..50ded16 100644 --- a/PayCheckServerLib/Responses/Items.cs +++ b/PayCheckServerLib/Responses/Items.cs @@ -6,53 +6,52 @@ using PayCheckServerLib.Jsons; using PayCheckServerLib.Jsons.Basic; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Items { - public class Items + [HTTP("GET", "/platform/public/namespaces/{namespace}/items/byCriteria?limit={limit}&includeSubCategoryItem=false")] + public static bool GetItemsByCriteria(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/platform/public/namespaces/{namespace}/items/byCriteria?limit={limit}&includeSubCategoryItem=false")] - public static bool GetItemsByCriteria(HttpRequest _, ServerStruct serverStruct) + ResponseCreator creator = new(); + var items = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Items.json")); + var timeMrFreeman = DateTime.UtcNow.ToString("o"); + foreach (var item in items.Data) { - ResponseCreator creator = new(); - var items = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Items.json")); - var timeMrFreeman = DateTime.UtcNow.ToString("o"); - foreach (var item in items.Data) - { - item.UpdatedAt = timeMrFreeman; - } - creator.SetBody(JsonConvert.SerializeObject(items)); - serverStruct.Response = creator.GetResponse(); - serverStruct.SendResponse(); - return true; + item.UpdatedAt = timeMrFreeman; } + creator.SetBody(JsonConvert.SerializeObject(items)); + serverStruct.Response = creator.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/platform/public/namespaces/{namespace}/items/byCriteria?tags={tags}&limit={limit}&includeSubCategoryItem=false")] - public static bool GetItemsByCriteriaByTags(HttpRequest _, ServerStruct serverStruct) + [HTTP("GET", "/platform/public/namespaces/{namespace}/items/byCriteria?tags={tags}&limit={limit}&includeSubCategoryItem=false")] + public static bool GetItemsByCriteriaByTags(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator creator = new(); + var items = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Items.json")) ?? throw new Exception("Items is null!"); + var finalitems = new List(); + var timeMrFreeman = DateTime.UtcNow.ToString("o"); + foreach (var item in items.Data) { - ResponseCreator creator = new(); - var items = JsonConvert.DeserializeObject>(File.ReadAllText("./Files/Items.json")) ?? throw new Exception("Items is null!"); - var finalitems = new List(); - var timeMrFreeman = DateTime.UtcNow.ToString("o"); - foreach (var item in items.Data) + item.UpdatedAt = timeMrFreeman; + if (item.Tags != null) { - item.UpdatedAt = timeMrFreeman; - if (item.Tags != null) + if (item.Tags.Contains(serverStruct.Parameters["tags"])) { - if (item.Tags.Contains(serverStruct.Parameters["tags"])) - { - finalitems.Add(item); - } + finalitems.Add(item); } } - DataPaging tosend = new() - { - Data = finalitems, - Paging = { } - }; - creator.SetBody(JsonConvert.SerializeObject(tosend)); - serverStruct.Response = creator.GetResponse(); - serverStruct.SendResponse(); - return true; } + DataPaging tosend = new() + { + Data = finalitems, + Paging = { } + }; + creator.SetBody(JsonConvert.SerializeObject(tosend)); + serverStruct.Response = creator.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/LobbyBlocked.cs b/PayCheckServerLib/Responses/LobbyBlocked.cs index 45109c3..2ed9b8f 100644 --- a/PayCheckServerLib/Responses/LobbyBlocked.cs +++ b/PayCheckServerLib/Responses/LobbyBlocked.cs @@ -3,28 +3,20 @@ using ModdableWebServer.Helper; using NetCoreServer; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class LobbyBlocked { - public class LobbyBlocked + [HTTP("GET", "/lobby/v1/public/player/namespaces/{namespace}/users/me/blocked-by")] + public static bool Blocked(HttpRequest _, ServerStruct serverStruct) { - [HTTP("GET", "/lobby/v1/public/player/namespaces/{namespace}/users/me/blocked-by")] - public static bool Blocked(HttpRequest _, ServerStruct serverStruct) - { - ResponseCreator response = new(); - response.SetBody("{\r\n \"data\": []\r\n}"); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } - - [HTTP("GET", "/lobby/v1/public/player/namespaces/{namespace}/users/me/blocked")] - public static bool BlockedBy(HttpRequest _, ServerStruct serverStruct) - { - ResponseCreator response = new(); - response.SetBody("{\r\n \"data\": []\r\n}"); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + ResponseCreator response = new(); + response.SetBody("{\r\n \"data\": []\r\n}"); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } + + [HTTP("GET", "/lobby/v1/public/player/namespaces/{namespace}/users/me/blocked")] + public static bool BlockedBy(HttpRequest _, ServerStruct serverStruct) => Blocked(_, serverStruct); } diff --git a/PayCheckServerLib/Responses/MatchTickets.cs b/PayCheckServerLib/Responses/MatchTickets.cs index cd734d7..ce35ccc 100644 --- a/PayCheckServerLib/Responses/MatchTickets.cs +++ b/PayCheckServerLib/Responses/MatchTickets.cs @@ -6,88 +6,87 @@ using ModdableWebServer.Attributes; using ModdableWebServer.Helper; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class MatchTickets { - public class MatchTickets + public class TicketReqJson + { + public Dictionary attributes { get; set; } + public Dictionary latencies { get; set; } + public string matchPool { get; set; } + public string sessionId { get; set; } + } + + public class TicketRspJson + { + public string matchTicketID { get; set; } + public int queueTime { get; set; } + } + public class WSS_OnMatchmakingStarted + { + public string TicketID { get; set; } + public string PartyID { get; set; } + public string Namespace { get; set; } + public string CreatedAt { get; set; } + public string MatchPool { get; set; } + } + + [HTTP("POST", "/match2/v1/namespaces/{namespace}/match-tickets")] + public static bool Tickets(HttpRequest request, ServerStruct serverStruct) { - public class TicketReqJson + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var ticket = JsonConvert.DeserializeObject(request.Body); + var ticketId = UserIdHelper.CreateNewID(); + TicketRspJson ticketRsp = new() { - public Dictionary attributes { get; set; } - public Dictionary latencies { get; set; } - public string matchPool { get; set; } - public string sessionId { get; set; } - } + matchTicketID = ticketId, + queueTime = 5 + }; + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(ticketRsp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + Debugger.PrintDebug("OnMatchmakingStarted YEET"); + //Store Both and send into Lobby WSS - public class TicketRspJson + WSS_OnMatchmakingStarted onMatchmakingStarted = new() { - public string matchTicketID { get; set; } - public int queueTime { get; set; } - } - public class WSS_OnMatchmakingStarted + TicketID = ticketId, + PartyID = ticket.sessionId, + CreatedAt = DateTime.UtcNow.ToString("o"), + MatchPool = ticket.matchPool, + Namespace = serverStruct.Headers["namespace"] + }; + Dictionary resp = new() { - public string TicketID { get; set; } - public string PartyID { get; set; } - public string Namespace { get; set; } - public string CreatedAt { get; set; } - public string MatchPool { get; set; } - } + { "type", "messageSessionNotif" }, + { "id", UserIdHelper.CreateNewID() }, + { "from", "system" }, + { "to", token.UserId }, + { "topic", "OnMatchmakingStarted" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onMatchmakingStarted)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } + }; + LobbyControl.SendToLobby(resp, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); + GSController.Make(ticket, serverStruct, serverStruct.Headers["namespace"]); + GSController.Tickets.Add(token.UserId, ticketId); + /* + * Need to check what happens at this stage. + * Do we need to send everyone its token or something? + List ids = new(); + rsp.Members.ForEach(m => ids.Add(m.Id)); - [HTTP("POST", "/match2/v1/namespaces/{namespace}/match-tickets")] - public static bool Tickets(HttpRequest request, ServerStruct serverStruct) + foreach (var id in session.WSSServer().WSUserIds) { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var ticket = JsonConvert.DeserializeObject(request.Body); - var ticketId = UserIdHelper.CreateNewID(); - TicketRspJson ticketRsp = new() - { - matchTicketID = ticketId, - queueTime = 5 - }; - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject(ticketRsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - Debugger.PrintDebug("OnMatchmakingStarted YEET"); - //Store Both and send into Lobby WSS - - WSS_OnMatchmakingStarted onMatchmakingStarted = new() - { - TicketID = ticketId, - PartyID = ticket.sessionId, - CreatedAt = DateTime.UtcNow.ToString("o"), - MatchPool = ticket.matchPool, - Namespace = serverStruct.Headers["namespace"] - }; - Dictionary resp = new() - { - { "type", "messageSessionNotif" }, - { "id", UserIdHelper.CreateNewID() }, - { "from", "system" }, - { "to", token.UserId }, - { "topic", "OnMatchmakingStarted" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(onMatchmakingStarted)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } - }; - LobbyControl.SendToLobby(resp, LobbyControl.GetLobbyUser(token.UserId, token.Namespace)); - GSController.Make(ticket, serverStruct, serverStruct.Headers["namespace"]); - GSController.Tickets.Add(token.UserId, ticketId); - /* - * Need to check what happens at this stage. - * Do we need to send everyone its token or something? - List ids = new(); - rsp.Members.ForEach(m => ids.Add(m.Id)); - - foreach (var id in session.WSSServer().WSUserIds) + if (ids.Contains(id)) { - if (ids.Contains(id)) - { - LobbyControl.SendToLobby(resp, session.GetWSLobby(id)); - } - }*/ + LobbyControl.SendToLobby(resp, session.GetWSLobby(id)); + } + }*/ - return true; - } + return true; } } diff --git a/PayCheckServerLib/Responses/Orders.cs b/PayCheckServerLib/Responses/Orders.cs index bfec7f3..ca62e4a 100644 --- a/PayCheckServerLib/Responses/Orders.cs +++ b/PayCheckServerLib/Responses/Orders.cs @@ -6,100 +6,99 @@ using PayCheckServerLib.Jsons; using PayCheckServerLib.Jsons.Basic; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Orders { - public class Orders + public static string GenOrderNumber() { - public static string GenOrderNumber() + var rand = new Random(); + string ret = ""; + for (int i = 0; i <= 19; i++) { - var rand = new Random(); - string ret = ""; - for (int i = 0; i <= 19; i++) - { - ret += rand.Next(0, 9); - } - return "O" + ret; + ret += rand.Next(0, 9); } + return "O" + ret; + } - public static ItemDefinitionJson? GetItemFromId(string id) + public static ItemDefinitionJson? GetItemFromId(string id) + { + var items = JsonConvert.DeserializeObject>(File.ReadAllText("Files/Items.json"))!.Data; + foreach (var item in items) { - var items = JsonConvert.DeserializeObject>(File.ReadAllText("Files/Items.json"))!.Data; - foreach (var item in items) + if (item.ItemId == id) { - if (item.ItemId == id) - { - item.UpdatedAt = DateTime.UtcNow.AddDays(-10).ToString("o"); - return item; - } + item.UpdatedAt = DateTime.UtcNow.AddDays(-10).ToString("o"); + return item; } - return null; } + return null; + } - [HTTP("POST", "/platform/public/namespaces/{namespace}/users/{userid}/orders")] - public static bool UserOrders(HttpRequest request, ServerStruct serverStruct) - { - //ResponseCreator response = new ResponseCreator(); - //OrdersJsonPayload payload = new() { - // Data = { }, - // Paging = { } - //}; - //response.SetBody(JsonConvert.SerializeObject(payload)); - //session.SendResponse(response.GetResponse()); + [HTTP("POST", "/platform/public/namespaces/{namespace}/users/{userid}/orders")] + public static bool UserOrders(HttpRequest request, ServerStruct serverStruct) + { + //ResponseCreator response = new ResponseCreator(); + //OrdersJsonPayload payload = new() { + // Data = { }, + // Paging = { } + //}; + //response.SetBody(JsonConvert.SerializeObject(payload)); + //session.SendResponse(response.GetResponse()); - var body = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("UserOrders -> body is null!"); - if (!Directory.Exists("Orders")) { Directory.CreateDirectory("Orders"); } - File.WriteAllText($"Orders/{serverStruct.Parameters["namespace"]}_{serverStruct.Parameters["userid"]}_{body.ItemId}", request.Body); + var body = JsonConvert.DeserializeObject(request.Body) ?? throw new Exception("UserOrders -> body is null!"); + if (!Directory.Exists("Orders")) { Directory.CreateDirectory("Orders"); } + File.WriteAllText($"Orders/{serverStruct.Parameters["namespace"]}_{serverStruct.Parameters["userid"]}_{body.ItemId}", request.Body); - ResponseCreator response = new(); - var ordernumber = GenOrderNumber(); - ItemDefinitionJson? item = GetItemFromId(body.ItemId) ?? throw new Exception("GetItemFromId -> Item is null!"); - Order order = new() + ResponseCreator response = new(); + var ordernumber = GenOrderNumber(); + ItemDefinitionJson? item = GetItemFromId(body.ItemId) ?? throw new Exception("GetItemFromId -> Item is null!"); + Order order = new() + { + OrderNo = ordernumber, + Namespace = serverStruct.Parameters["namespace"], + UserId = serverStruct.Parameters["userid"], + ItemId = item.ItemId, + Sandbox = false, + Quantity = body.Quantity, + Price = body.Price, + DiscountedPrice = body.DiscountedPrice, + Tax = 0, + Vat = 0, + SalesTax = 0, + PaymentProviderFee = 0, + PaymentMethodFee = 0, + Currency = new() { - OrderNo = ordernumber, + CurrencyCode = body.CurrencyCode, + CurrencySymbol = body.CurrencyCode, + // CASH = Cash, GOLD = CStacks + CurrencyType = (body.CurrencyCode == "CASH" || body.CurrencyCode == "GOLD") ? "VIRTUAL" : "REAL", Namespace = serverStruct.Parameters["namespace"], - UserId = serverStruct.Parameters["userid"], - ItemId = item.ItemId, - Sandbox = false, - Quantity = body.Quantity, - Price = body.Price, - DiscountedPrice = body.DiscountedPrice, - Tax = 0, - Vat = 0, - SalesTax = 0, - PaymentProviderFee = 0, - PaymentMethodFee = 0, - Currency = new() - { - CurrencyCode = body.CurrencyCode, - CurrencySymbol = body.CurrencyCode, - // CASH = Cash, GOLD = CStacks - CurrencyType = (body.CurrencyCode == "CASH" || body.CurrencyCode == "GOLD") ? "VIRTUAL" : "REAL", - Namespace = serverStruct.Parameters["namespace"], - Decimals = 0 - }, - // will be like this until i can confirm they are the same type ~HW12Dev - ItemSnapshot = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(item))!, - Region = body.Region, - Language = body.Language, - Status = "FULFILLED", - CreatedTime = DateTime.UtcNow.ToString("o"), - ChargedTime = DateTime.UtcNow.AddMilliseconds(100).ToString("o"), - FulfilledTime = DateTime.UtcNow.ToString("o"), - // this should fix buying attachments - ExpireTime = DateTime.UtcNow.AddDays(1).ToString("o"), - PaymentRemainSeconds = 0, - TotalTax = 0, - TotalPrice = body.Price, - SubtotalPrice = body.Price, - CreatedAt = DateTime.UtcNow.ToString("o"), - UpdatedAt = DateTime.UtcNow.ToString("o"), - PaymentOrderNo = "P" + ordernumber, - PaymentProvider = "WALLET" - }; - response.SetBody(JsonConvert.SerializeObject(order)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + Decimals = 0 + }, + // will be like this until i can confirm they are the same type ~HW12Dev + ItemSnapshot = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(item))!, + Region = body.Region, + Language = body.Language, + Status = "FULFILLED", + CreatedTime = DateTime.UtcNow.ToString("o"), + ChargedTime = DateTime.UtcNow.AddMilliseconds(100).ToString("o"), + FulfilledTime = DateTime.UtcNow.ToString("o"), + // this should fix buying attachments + ExpireTime = DateTime.UtcNow.AddDays(1).ToString("o"), + PaymentRemainSeconds = 0, + TotalTax = 0, + TotalPrice = body.Price, + SubtotalPrice = body.Price, + CreatedAt = DateTime.UtcNow.ToString("o"), + UpdatedAt = DateTime.UtcNow.ToString("o"), + PaymentOrderNo = "P" + ordernumber, + PaymentProvider = "WALLET" + }; + response.SetBody(JsonConvert.SerializeObject(order)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Parties.cs b/PayCheckServerLib/Responses/Parties.cs index 1e8f992..cc978a7 100644 --- a/PayCheckServerLib/Responses/Parties.cs +++ b/PayCheckServerLib/Responses/Parties.cs @@ -9,254 +9,253 @@ using ModdableWebServer.Attributes; using ModdableWebServer.Helper; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Parties { - public class Parties + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/party")] + public static bool Party(HttpRequest request, ServerStruct serverStruct) { - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/party")] - public static bool Party(HttpRequest request, ServerStruct serverStruct) - { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var body = JsonConvert.DeserializeObject(request.Body); - var rsp = PartyController.CreateParty(body, token.Namespace); - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var body = JsonConvert.DeserializeObject(request.Body); + var rsp = PartyController.CreateParty(body, token.Namespace); + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(rsp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); - //send notif to user to party created - var wss_sess = LobbyControl.GetLobbyUser(token.UserId, token.Namespace); - OnPartyCreated pld = new() - { - Code = rsp.Code, - CreatedBy = rsp.CreatedBy, - PartyId = rsp.Id, - TextChat = body.TextChat - }; - Dictionary resp = new() - { - { "type", "messageSessionNotif" }, - { "topic", "OnPartyCreated" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(pld)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } - }; + //send notif to user to party created + var wss_sess = LobbyControl.GetLobbyUser(token.UserId, token.Namespace); + OnPartyCreated pld = new() + { + Code = rsp.Code, + CreatedBy = rsp.CreatedBy, + PartyId = rsp.Id, + TextChat = body.TextChat + }; + Dictionary resp = new() + { + { "type", "messageSessionNotif" }, + { "topic", "OnPartyCreated" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(pld)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } + }; - LobbyControl.SendToLobby(resp, wss_sess); + LobbyControl.SendToLobby(resp, wss_sess); - Chats.eventAddedToTopic topic = new() + Chats.eventAddedToTopic topic = new() + { + Jsonrpc = "2.0", + Method = "eventAddedToTopic", + Params = new() { - Jsonrpc = "2.0", - Method = "eventAddedToTopic", - Params = new() - { - Name = "Party-" + rsp.Id, - SenderId = token.UserId, - TopicId = "p." + rsp.Id, - Type = "GROUP", - UserId = token.UserId - } - }; + Name = "Party-" + rsp.Id, + SenderId = token.UserId, + TopicId = "p." + rsp.Id, + Type = "GROUP", + UserId = token.UserId + } + }; - ChatControl.SendToChat(JsonConvert.SerializeObject(topic), ChatControl.GetChatUser(token.UserId, token.Namespace)); + ChatControl.SendToChat(JsonConvert.SerializeObject(topic), ChatControl.GetChatUser(token.UserId, token.Namespace)); - return true; - } + return true; + } - [HTTP("PATCH", "/session/v1/public/namespaces/{namespace}/parties/{partyid}")] - public static bool PATCH_Parties(HttpRequest request, ServerStruct serverStruct) + [HTTP("PATCH", "/session/v1/public/namespaces/{namespace}/parties/{partyid}")] + public static bool PATCH_Parties(HttpRequest request, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var body = JsonConvert.DeserializeObject(request.Body); + PartyPost.Response rsp = PartyController.UpdateParty(serverStruct.Parameters["partyid"], body); + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(rsp, Formatting.Indented)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + OnPartyUpdated pld = new() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var body = JsonConvert.DeserializeObject(request.Body); - PartyPost.Response rsp = PartyController.UpdateParty(serverStruct.Parameters["partyid"], body); - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject(rsp, Formatting.Indented)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - OnPartyUpdated pld = new() + Code = rsp.Code, + CreatedBy = rsp.CreatedBy, + Attributes = rsp.Attributes, + Configuration = new() { - Code = rsp.Code, - CreatedBy = rsp.CreatedBy, - Attributes = rsp.Attributes, - Configuration = new() - { - ClientVersion = rsp.Configuration.ClientVersion, - Joinability = rsp.Configuration.Joinability, - InactiveTimeout = rsp.Configuration.InactiveTimeout, - InviteTimeout = rsp.Configuration.InviteTimeout, - MaxPlayers = rsp.Configuration.MaxPlayers, - MinPlayers = rsp.Configuration.MinPlayers, - Name = rsp.Configuration.Name, - Type = rsp.Configuration.Type, - RequestedRegions = rsp.Configuration.RequestedRegions - }, - ConfigurationName = rsp.Configuration.Name, - CreatedAt = rsp.CreatedAt, - Id = rsp.Id, - IsFull = rsp.IsFull, - LeaderId = rsp.LeaderId, - Members = new(), - Namespace = serverStruct.Parameters["namespace"], - UpdatedAt = rsp.UpdatedAt, - Version = rsp.Version - }; - foreach (var member in rsp.Members) - { - pld.Members.Add(new() - { - ID = member.Id, - Status = member.Status, - StatusV2 = member.StatusV2, - PlatformID = member.PlatformId, - PlatformUserID = member.PlatformUserId, - UpdatedAt = member.UpdatedAt - }); - } - Dictionary resp = new() + ClientVersion = rsp.Configuration.ClientVersion, + Joinability = rsp.Configuration.Joinability, + InactiveTimeout = rsp.Configuration.InactiveTimeout, + InviteTimeout = rsp.Configuration.InviteTimeout, + MaxPlayers = rsp.Configuration.MaxPlayers, + MinPlayers = rsp.Configuration.MinPlayers, + Name = rsp.Configuration.Name, + Type = rsp.Configuration.Type, + RequestedRegions = rsp.Configuration.RequestedRegions + }, + ConfigurationName = rsp.Configuration.Name, + CreatedAt = rsp.CreatedAt, + Id = rsp.Id, + IsFull = rsp.IsFull, + LeaderId = rsp.LeaderId, + Members = new(), + Namespace = serverStruct.Parameters["namespace"], + UpdatedAt = rsp.UpdatedAt, + Version = rsp.Version + }; + foreach (var member in rsp.Members) + { + pld.Members.Add(new() { - { "type", "messageSessionNotif" }, - { "topic", "OnPartyUpdated" }, - { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(pld)) }, - { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } - }; + ID = member.Id, + Status = member.Status, + StatusV2 = member.StatusV2, + PlatformID = member.PlatformId, + PlatformUserID = member.PlatformUserId, + UpdatedAt = member.UpdatedAt + }); + } + Dictionary resp = new() + { + { "type", "messageSessionNotif" }, + { "topic", "OnPartyUpdated" }, + { "payload", LobbyControl.Base64Encode(JsonConvert.SerializeObject(pld)) }, + { "sentAt", DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ssZ") } + }; - List ids = new(); - rsp.Members.ForEach(m => ids.Add(m.Id)); + List ids = new(); + rsp.Members.ForEach(m => ids.Add(m.Id)); - foreach (var id in LobbyControl.LobbyUsers.Keys) - { - var splitted = id.Split("_"); + foreach (var id in LobbyControl.LobbyUsers.Keys) + { + var splitted = id.Split("_"); - if (ids.Contains(splitted[1])) - { - Debugger.PrintDebug(splitted[1]); - LobbyControl.SendToLobby(resp, LobbyControl.GetLobbyUser(splitted[1], token.Namespace)); - } + if (ids.Contains(splitted[1])) + { + Debugger.PrintDebug(splitted[1]); + LobbyControl.SendToLobby(resp, LobbyControl.GetLobbyUser(splitted[1], token.Namespace)); } - - return true; } + return true; + } + - [HTTP("DELETE", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/leave")] - public static bool LeaveParties(HttpRequest request, ServerStruct serverStruct) + [HTTP("DELETE", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/leave")] + public static bool LeaveParties(HttpRequest request, ServerStruct serverStruct) + { + //This response sadly KILLING THE GAME (Even without emu) + // SBZ PLEASE FIX! + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + PartyController.LeftParty(serverStruct.Parameters["partyid"], token.UserId, serverStruct); + var party = PartyController.PartySaves.Where(x => x.Value.Id == serverStruct.Parameters["partyid"]).FirstOrDefault().Value; + if (party == null) { - //This response sadly KILLING THE GAME (Even without emu) - // SBZ PLEASE FIX! - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - PartyController.LeftParty(serverStruct.Parameters["partyid"], token.UserId, serverStruct); - var party = PartyController.PartySaves.Where(x => x.Value.Id == serverStruct.Parameters["partyid"]).FirstOrDefault().Value; - if (party == null) - { - Debugger.PrintError("NO Code???? WHAT THE FUCK"); - throw new Exception("Code is not exist in saved parties????"); - } - Chats.eventAddedToTopic topic = new() - { - Jsonrpc = "2.0", - Method = "eventRemovedFromTopic", - Params = new() - { - Name = "Party-" + party.Id, - SenderId = token.UserId, - TopicId = "p." + party.Id, - Type = "GROUP", - UserId = token.UserId - } - }; - ChatControl.SendToChat(JsonConvert.SerializeObject(topic), ChatControl.GetChatUser(token.UserId, token.Namespace)); - ResponseCreator response = new(204); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + Debugger.PrintError("NO Code???? WHAT THE FUCK"); + throw new Exception("Code is not exist in saved parties????"); } - - - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/join")] - public static bool JoinParties(HttpRequest request, ServerStruct serverStruct) + Chats.eventAddedToTopic topic = new() { - var party = PartyController.PartySaves.Where(x => x.Value.Id == serverStruct.Parameters["partyid"]).FirstOrDefault().Value; - if (party == null) + Jsonrpc = "2.0", + Method = "eventRemovedFromTopic", + Params = new() { - Debugger.PrintError("NO Code???? WHAT THE FUCK"); - throw new Exception("Code is not exist in saved parties????"); + Name = "Party-" + party.Id, + SenderId = token.UserId, + TopicId = "p." + party.Id, + Type = "GROUP", + UserId = token.UserId } - var rsp = PartyController.ParsePartyToRSP(party); - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + }; + ChatControl.SendToChat(JsonConvert.SerializeObject(topic), ChatControl.GetChatUser(token.UserId, token.Namespace)); + ResponseCreator response = new(204); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/reject")] - public static bool RejectParties(HttpRequest request, ServerStruct serverStruct) - { - /* - var body = JsonConvert.DeserializeObject(request.Body); - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject("")); - session.SendResponse(response.GetResponse()); - */ - return false; - } - public class UsersMeJoinCode + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/join")] + public static bool JoinParties(HttpRequest request, ServerStruct serverStruct) + { + var party = PartyController.PartySaves.Where(x => x.Value.Id == serverStruct.Parameters["partyid"]).FirstOrDefault().Value; + if (party == null) { - [JsonProperty("code")] - public string Code { get; set; } + Debugger.PrintError("NO Code???? WHAT THE FUCK"); + throw new Exception("Code is not exist in saved parties????"); } + var rsp = PartyController.ParsePartyToRSP(party); + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject(rsp)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/users/me/join/code")] - public static bool JoinPartyByCode(HttpRequest request, ServerStruct serverStruct) - { + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/users/me/reject")] + public static bool RejectParties(HttpRequest request, ServerStruct serverStruct) + { + /* + var body = JsonConvert.DeserializeObject(request.Body); + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject("")); + session.SendResponse(response.GetResponse()); + */ + return false; + } - var body = JsonConvert.DeserializeObject(request.Body); - if (PartyController.PartySaves.TryGetValue(body.Code, out var saved)) - { - var rsp = PartyController.ParsePartyToRSP(saved); - ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - } - else - { - AttribError error = new() - { - Attributes = new Dictionary() - { - { "id", body.Code }, - { "namespace", serverStruct.Parameters["namespace"] } - }, - ErrorCode = 20041, - ErrorMessage = $"No party with ID [{body.Code}] exists in namespace [{serverStruct.Parameters["namespace"]}]", - Message = $"No party with ID [{body.Code}] exists in namespace [{serverStruct.Parameters["namespace"]}]", - Name = "PartyNotFound" - }; - ResponseCreator response = new(404); - response.SetBody(JsonConvert.SerializeObject(error)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - } + public class UsersMeJoinCode + { + [JsonProperty("code")] + public string Code { get; set; } + } - return true; - } + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/users/me/join/code")] + public static bool JoinPartyByCode(HttpRequest request, ServerStruct serverStruct) + { - [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/invite")] - public static bool InviteOtherPlayer(HttpRequest request, ServerStruct serverStruct) + var body = JsonConvert.DeserializeObject(request.Body); + if (PartyController.PartySaves.TryGetValue(body.Code, out var saved)) { - /* - var body = JsonConvert.DeserializeObject(request.Body); + var rsp = PartyController.ParsePartyToRSP(saved); ResponseCreator response = new(); - response.SetBody(JsonConvert.SerializeObject("")); + response.SetBody(JsonConvert.SerializeObject(rsp)); serverStruct.Response = response.GetResponse(); serverStruct.SendResponse(); - */ - return false; } + else + { + AttribError error = new() + { + Attributes = new Dictionary() + { + { "id", body.Code }, + { "namespace", serverStruct.Parameters["namespace"] } + }, + ErrorCode = 20041, + ErrorMessage = $"No party with ID [{body.Code}] exists in namespace [{serverStruct.Parameters["namespace"]}]", + Message = $"No party with ID [{body.Code}] exists in namespace [{serverStruct.Parameters["namespace"]}]", + Name = "PartyNotFound" + }; + ResponseCreator response = new(404); + response.SetBody(JsonConvert.SerializeObject(error)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + } + + return true; + } + + [HTTP("POST", "/session/v1/public/namespaces/{namespace}/parties/{partyid}/invite")] + public static bool InviteOtherPlayer(HttpRequest request, ServerStruct serverStruct) + { + /* + var body = JsonConvert.DeserializeObject(request.Body); + ResponseCreator response = new(); + response.SetBody(JsonConvert.SerializeObject("")); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + */ + return false; } } diff --git a/PayCheckServerLib/Responses/Session.cs b/PayCheckServerLib/Responses/Session.cs index 311b6b4..b3960f2 100644 --- a/PayCheckServerLib/Responses/Session.cs +++ b/PayCheckServerLib/Responses/Session.cs @@ -9,16 +9,18 @@ namespace PayCheckServerLib.Responses { public class Session { - [HTTP("GET", "/session/v1/public/namespaces/pd3/recent-player?limit=200")] - public static bool GetRecentPlayersLimit(HttpRequest _, ServerStruct serverStruct) - { - ResponseCreator response = new ResponseCreator(); - response.SetHeader("Content-Type", "application/json"); - response.SetBody("{\"data\":[]}"); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + + [HTTP("GET", "/session/v1/public/namespaces/pd3/recent-player?limit=200")] + public static bool GetRecentPlayersLimit(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new ResponseCreator(); + response.SetHeader("Content-Type", "application/json"); + response.SetBody("{\"data\":[]}"); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + [HTTP("GET", "/session/v1/public/namespaces/{namespace}/users/me/attributes")] public static bool GETSessionAttributes(HttpRequest _, ServerStruct serverStruct) { @@ -91,6 +93,29 @@ public static bool SessionsParties(HttpRequest _, ServerStruct serverStruct) } [HTTP("GET", "/session/v1/public/namespaces/{namespace}/users/me/gamesessions")] + public static bool SessionsUsersMeGamesessions(HttpRequest _, ServerStruct serverStruct) + { + ResponseCreator response = new(); + response.SetHeader("Content-Type", "application/json"); + DataPaging gamesessions = new() + { + Paging = new() + { + First = "", + Last = "", + Previous = "", + Next = "" + }, + Data = new() + }; + response.SetBody(JsonConvert.SerializeObject(gamesessions)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } + + + [HTTP("GET", "/session/v1/public/namespaces/{namespace}/gamesessions")] public static bool Sessionsgamesessions(HttpRequest _, ServerStruct serverStruct) { ResponseCreator response = new(); diff --git a/PayCheckServerLib/Responses/Social.cs b/PayCheckServerLib/Responses/Social.cs index 20d9c86..e161712 100644 --- a/PayCheckServerLib/Responses/Social.cs +++ b/PayCheckServerLib/Responses/Social.cs @@ -7,75 +7,72 @@ using ModdableWebServer.Attributes; using ModdableWebServer.Helper; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Social { - public class Social + [HTTP("PUT", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems/value/bulk")] + public static bool PutStatItemsBulk(HttpRequest request, ServerStruct serverStruct) { - [HTTP("PUT", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems/value/bulk")] - public static bool PutStatItemsBulk(HttpRequest request, ServerStruct serverStruct) - { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var statReq = JsonConvert.DeserializeObject>(request.Body); - var rsp = UserStatController.AddStat(statReq, token); - ResponseCreator responsecreator = new ResponseCreator(); - responsecreator.SetBody(JsonConvert.SerializeObject(rsp)); - serverStruct.Response = responsecreator.GetResponse(); - serverStruct.SendResponse(); - return true; - } + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var statReq = JsonConvert.DeserializeObject>(request.Body); + var rsp = UserStatController.AddStat(statReq, token); + ResponseCreator responsecreator = new ResponseCreator(); + responsecreator.SetBody(JsonConvert.SerializeObject(rsp)); + serverStruct.Response = responsecreator.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?limit={limit}&sortBy={sortby}")] - public static bool GetUserStatItemsSort(HttpRequest _, ServerStruct serverStruct) - { - return GetUserStatItems(_, serverStruct); - } - [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?limit={limit}&offset=0")] - public static bool GetUserStatItems(HttpRequest _, ServerStruct serverStruct) - { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); + [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?limit={limit}&sortBy={sortby}")] + public static bool GetUserStatItemsSort(HttpRequest _, ServerStruct serverStruct) => GetUserStatItems(_, serverStruct); - var stat = JsonConvert.DeserializeObject>(SaveFileHandler.ReadUserSTR(token.UserId, token.Namespace, SaveFileHandler.SaveType.statitems)); + [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?limit={limit}&offset=0")] + public static bool GetUserStatItems(HttpRequest _, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); - ResponseCreator response = new ResponseCreator(); - DataPaging responsedata = new() - { - Data = stat, - Paging = { } - }; - response.SetBody(JsonConvert.SerializeObject(responsedata)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; - } + var stat = JsonConvert.DeserializeObject>(SaveFileHandler.ReadUserSTR(token.UserId, token.Namespace, SaveFileHandler.SaveType.statitems)); - [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?statCodes={statcode}&limit=20&offset=0")] - public static bool GetUserStatItemsInfamy(HttpRequest _, ServerStruct serverStruct) + ResponseCreator response = new ResponseCreator(); + DataPaging responsedata = new() { - var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); - var token = TokenHelper.ReadToken(auth); - var statcode = serverStruct.Parameters["statcode"]; - ResponseCreator response = new ResponseCreator(); - DataPaging responsedata = new() - { - Data = new() - { - }, - Paging = { } - }; + Data = stat, + Paging = { } + }; + response.SetBody(JsonConvert.SerializeObject(responsedata)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - var stat = JsonConvert.DeserializeObject>(SaveFileHandler.ReadUserSTR(token.UserId, token.Namespace, SaveFileHandler.SaveType.statitems)); - foreach (var item in stat) + [HTTP("GET", "/social/v1/public/namespaces/{namespace}/users/{userId}/statitems?statCodes={statcode}&limit=20&offset=0")] + public static bool GetUserStatItemsInfamy(HttpRequest _, ServerStruct serverStruct) + { + var auth = serverStruct.Headers["authorization"].Replace("Bearer ", ""); + var token = TokenHelper.ReadToken(auth); + var statcode = serverStruct.Parameters["statcode"]; + ResponseCreator response = new ResponseCreator(); + DataPaging responsedata = new() + { + Data = new() { - if (item.StatCode == statcode) - responsedata.Data.Add(item); - } + }, + Paging = { } + }; - response.SetBody(JsonConvert.SerializeObject(responsedata)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; + var stat = JsonConvert.DeserializeObject>(SaveFileHandler.ReadUserSTR(token.UserId, token.Namespace, SaveFileHandler.SaveType.statitems)); + foreach (var item in stat) + { + if (item.StatCode == statcode) + responsedata.Data.Add(item); } + + response.SetBody(JsonConvert.SerializeObject(responsedata)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/Telemetry.cs b/PayCheckServerLib/Responses/Telemetry.cs index 786a14f..23e23d1 100644 --- a/PayCheckServerLib/Responses/Telemetry.cs +++ b/PayCheckServerLib/Responses/Telemetry.cs @@ -3,25 +3,24 @@ using ModdableWebServer.Helper; using NetCoreServer; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class Telemetry { - public class Telemetry + [HTTP("POST", "/game-telemetry/v1/protected/events")] + public static bool ProtectedEvents(HttpRequest request, ServerStruct serverStruct) { - [HTTP("POST", "/game-telemetry/v1/protected/events")] - public static bool ProtectedEvents(HttpRequest request, ServerStruct serverStruct) + if (!Directory.Exists("Telemetry")) { Directory.CreateDirectory("Telemetry"); } + try + { + File.WriteAllText("Telemetry/" + DateTime.Now.ToString("s").Replace(":", "-") + ".json", request.Body); + } + catch (IOException e) { - if (!Directory.Exists("Telemetry")) { Directory.CreateDirectory("Telemetry"); } - try - { - File.WriteAllText("Telemetry/" + DateTime.Now.ToString("s").Replace(":", "-") + ".json", request.Body); - } - catch (IOException e) - { - Debugger.PrintError(String.Format("Exception occurred while writing telemetry: {0}", e.ToString())); - } - serverStruct.Response.MakeOkResponse(); - serverStruct.SendResponse(); - return true; + Debugger.PrintError(String.Format("Exception occurred while writing telemetry: {0}", e.ToString())); } + serverStruct.Response.MakeOkResponse(); + serverStruct.SendResponse(); + return true; } } diff --git a/PayCheckServerLib/Responses/VersionResponse.cs b/PayCheckServerLib/Responses/VersionResponse.cs index 523dd1a..5288494 100644 --- a/PayCheckServerLib/Responses/VersionResponse.cs +++ b/PayCheckServerLib/Responses/VersionResponse.cs @@ -6,92 +6,91 @@ using PayCheckServerLib.Jsons; using System.Text.RegularExpressions; -namespace PayCheckServerLib.Responses +namespace PayCheckServerLib.Responses; + +public class VersionResponse { - public class VersionResponse + static bool GenericVersionResponse(HttpRequest request, ServerStruct serverStruct) { - static bool GenericVersionResponse(HttpRequest request, ServerStruct serverStruct) - { - ResponseCreator response = new ResponseCreator(); + ResponseCreator response = new ResponseCreator(); - var regex = new Regex(@"\/(.*)\/version"); - Debugger.PrintDebug(request.Url); - MatchCollection matches = regex.Matches(request.Url); - var endpoint = ""; - foreach (Match match in matches) + var regex = new Regex(@"\/(.*)\/version"); + Debugger.PrintDebug(request.Url); + MatchCollection matches = regex.Matches(request.Url); + var endpoint = ""; + foreach (Match match in matches) + { + foreach (Group group in match.Groups) { - foreach (Group group in match.Groups) + if (!group.Value.Contains("/")) { - if (!group.Value.Contains("/")) - { - endpoint = group.Value; - } + endpoint = group.Value; } } - - // data taken from https://nebula.starbreeze.com/agreement/version and https://nebula.starbreeze.com/platform/version - VersionJson version = new() - { - Name = endpoint == "agreement" ? "justice-legal-service" : String.Format("justice-{0}-service", endpoint), - Realm = "prod", - Version = "1.28.0", - GitTag = "1.28.0", - GitHash = "b55c3fcbc9", - GitBranchName = "release-candidate", - BuildDate = "2023-03-13T01:07:41+00:00", - BuildID = "1.28.0", - BuildBy = "Gradle 6.9.1", - BuildOS = "Linux amd64 5.13.0-1021-aws", - BuildJDK = "1.8.0_232 (Eclipse OpenJ9 openj9-0.17.0)", - VersionRolesSeeding = "0.0.3" - }; - - response.SetBody(JsonConvert.SerializeObject(version)); - serverStruct.Response = response.GetResponse(); - serverStruct.SendResponse(); - return true; } - [HTTP("GET", "/iam/version")] - public static bool IamVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + // data taken from https://nebula.starbreeze.com/agreement/version and https://nebula.starbreeze.com/platform/version + VersionJson version = new() + { + Name = endpoint == "agreement" ? "justice-legal-service" : String.Format("justice-{0}-service", endpoint), + Realm = "prod", + Version = "1.28.0", + GitTag = "1.28.0", + GitHash = "b55c3fcbc9", + GitBranchName = "release-candidate", + BuildDate = "2023-03-13T01:07:41+00:00", + BuildID = "1.28.0", + BuildBy = "Gradle 6.9.1", + BuildOS = "Linux amd64 5.13.0-1021-aws", + BuildJDK = "1.8.0_232 (Eclipse OpenJ9 openj9-0.17.0)", + VersionRolesSeeding = "0.0.3" + }; + + response.SetBody(JsonConvert.SerializeObject(version)); + serverStruct.Response = response.GetResponse(); + serverStruct.SendResponse(); + return true; + } - [HTTP("GET", "/agreement/version")] - public static bool AgreementVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/iam/version")] + public static bool IamVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/basic/version")] - public static bool BasicVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/agreement/version")] + public static bool AgreementVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/platform/version")] - public static bool PlatformVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/basic/version")] + public static bool BasicVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/social/version")] - public static bool SocialVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/platform/version")] + public static bool PlatformVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/leaderboard/version")] - public static bool LeaderboardVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/social/version")] + public static bool SocialVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/achievement/version")] - public static bool AchievementVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/leaderboard/version")] + public static bool LeaderboardVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/cloudsave/version")] - public static bool CloudSaveVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/achievement/version")] + public static bool AchievementVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/ugc/version")] - public static bool UGCVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/cloudsave/version")] + public static bool CloudSaveVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/lobby/version")] - public static bool LobbyVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/ugc/version")] + public static bool UGCVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/group/version")] - public static bool GroupVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/lobby/version")] + public static bool LobbyVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/qosm/version")] - public static bool QOSMVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/group/version")] + public static bool GroupVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/dsmcontroller/version")] - public static bool DSMControllerVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + [HTTP("GET", "/qosm/version")] + public static bool QOSMVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - [HTTP("GET", "/game-telemetry/version")] - public static bool GameTelemetryVerion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } - } + [HTTP("GET", "/dsmcontroller/version")] + public static bool DSMControllerVersion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } + + [HTTP("GET", "/game-telemetry/version")] + public static bool GameTelemetryVerion(HttpRequest request, ServerStruct serverStruct) { return GenericVersionResponse(request, serverStruct); } } diff --git a/PayCheckServerLib/ServerManager.cs b/PayCheckServerLib/ServerManager.cs index afd3e1f..1aad12c 100644 --- a/PayCheckServerLib/ServerManager.cs +++ b/PayCheckServerLib/ServerManager.cs @@ -20,7 +20,7 @@ public static void Pre() { Debugger.PrintDebug("GiveMeMoney Cheat Activated"); } - if (ArgumentHandler.Debug) + if (ArgumentHandler.DebugAll) DebugPrinter.PrintToConsole = true; else DebugPrinter.PrintToConsole = false; @@ -42,7 +42,7 @@ public static void Start() { if (ConfigHelper.ServerConfig.Hosting.WSS) { - var context = CertHelper.GetContext( System.Security.Authentication.SslProtocols.Tls12 , "cert.pfx", "cert"); + var context = CertHelper.GetContextNoValidate( System.Security.Authentication.SslProtocols.Tls12 , "cert.pfx", "cert"); server = new(context, ConfigHelper.ServerConfig.Hosting.IP, ConfigHelper.ServerConfig.Hosting.Port); server.ReceivedFailed += ReceivedFailed; server.Started += Server_Started;